afb77cd39b666b5ff3c1d9532152fdd08c1bc813
[gnulib.git] / ChangeLog
1 2009-10-18  Bruno Haible  <bruno@clisp.org>
2
3         Avoid symlink attack in localcharset module.
4         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
5         (O_NOFOLLOW): Define fallback.
6         (get_charset_aliases): Don't open the file if it is a symbolic link.
7         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
8         gl_FCNTL_H.
9         (gl_FCNTL_H): Require it.
10         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
11         * modules/localcharset (Files): Add m4/fcntl_h.m4.
12         Reported by Fergal Glynn <fglynn@veracode.com>.
13
14 2009-10-18  Bruno Haible  <bruno@clisp.org>
15
16         Implement nproc for mingw.
17         * lib/nproc.c: Include <windows.h>
18         (num_processors): On native Windows platforms, try GetSystemInfo.
19
20 2009-10-18  Bruno Haible  <bruno@clisp.org>
21
22         Implement nproc for IRIX.
23         * lib/nproc.c: Include <sys/sysmp.h>.
24         (num_processors): On IRIX systems, try sysmp.
25         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
26
27 2009-10-18  Bruno Haible  <bruno@clisp.org>
28
29         Implement nproc for HP-UX.
30         * lib/nproc.c: Include <sys/pstat.h>
31         (num_processors): On HP-UX systems, try pstat_getdynamic.
32         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
33         pstat_getdynamic.
34
35 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
36             Bruno Haible  <bruno@clisp.org>
37
38         Implement nproc for NetBSD, OpenBSD.
39         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
40         (ARRAY_SIZE): New macro.
41         (num_processors): On BSD systems, try sysctl of HW_NCPU.
42         * m4/nproc.m4: New file.
43         * modules/nproc (Files): Add m4/nproc.m4.
44         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
45         (Makefile.am): Instead, augment lib_SOURCES.
46
47 2009-10-18  Bruno Haible  <bruno@clisp.org>
48
49         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
50         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
51         sys/param.h.
52
53 2009-10-16  Eric Blake  <ebb9@byu.net>
54
55         utimensat: new module
56         * modules/utimensat: New file.
57         * lib/utimensat.c (utimensat): Likewise.
58         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
59         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
60         so we can work around Linux bugs.
61         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
62         * modules/sys_stat (Makefile.am): Substitute them.
63         * lib/sys_stat.in.h (utimensat): Declare it.
64         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
65         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
66         * modules/utimensat-tests: New test.
67         * tests/test-utimensat.c: Likewise.
68
69         utimens: let lutimens work on non-symlinks
70         * lib/utimens.c (lutimens): Fall back to utimens rather than
71         failing with ENOSYS, when file is not a symlink.
72         (utimens): Reduce redirection.
73         * tests/test-lutimens.h (test_lutimens): Update test to cover
74         non-symlinks.
75         * tests/test-utimens.h (test_utimens): Update test to cover
76         symlinks.
77         * tests/test-utimens.c (main): Update caller.
78
79         utimens: cache whether utimensat syscall works
80         * lib/utimens.c (utimensat_works_really): New cache variable.
81         (fdutimens, lutimens): Use it to avoid failing syscall.
82
83         test-stat-time, test-utimens: improve portability
84         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
85         ext4 on alpha, and for cygwin.
86         * tests/test-utimens-common.h: New file.
87         (nap): Factor delays into single function.
88         * tests/test-lutimens.h (test_lutimens): Use new header.
89         * tests/test-futimens.h (test_futimens): Likewise.
90         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
91         timestamps to occur from same machine, as was done previously for
92         test_utimens.
93         * modules/utimens-tests (Files): Ship new file.
94         * modules/futimens-tests (Files): Likewise.
95         Reported in part by Jim Meyering.
96
97         sys_stat: sort replacement declarations
98         * lib/sys_stat.in.h: Sort declarations.
99         * lib/futimens.c (futimens): Fix typo.
100
101 2009-10-15  Jim Meyering  <meyering@redhat.com>
102
103         don't let environment settings perturb build
104         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
105         could cause a configure-time and/or build-time malfunction.
106         Typically, a configure-time function-in-library test is performed
107         via code like this:
108
109           LIB_VAR=
110           AC_SUBST([LIB_VAR])
111           prefix_saved_LIBS=$LIBS
112             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
113                        [test "$ac_cv_search_FUNC" = "none required" ||
114                         LIB_VAR=$ac_cv_search_FUNC])
115           LIBS=$prefix_saved_LIBS
116
117         However, in each of the files affected by this change, the LIB_VAR=
118         initialization was omitted.  Thus, when set in the environment, its
119         value would propagate into generated Makefiles when FUNC is not found
120         in LIB_NAME.
121         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
122         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
123         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
124
125 2009-10-14  Eric Blake  <ebb9@byu.net>
126
127         fchdir: avoid infinite recursion in mingw
128         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
129         recursing.
130
131         test-stat-time: port to mingw
132         * tests/test-stat-time.c (force_unlink): Return a value.
133         (test_ctime) [W32]: Fix compilation error.
134         (nap): Don't call usleep with too large an argument.  Use
135         force_unlink.
136         * doc/pastposix-functions/usleep.texi (usleep): Document the
137         portability issue.
138
139 2009-10-13  Jim Meyering  <meyering@redhat.com>
140
141         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
142         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
143         * modules/pipe-filter-ii: Likewise.
144         * modules/sys_socket-tests: Likewise.
145         * modules/tsearch-tests: Likewise.
146         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
147         (check): Depend on it.
148
149 2009-10-12  Eric Blake  <ebb9@byu.net>
150
151         utimens-tests: port to NFS file systems
152         * tests/test-utimens.h (test_utimens): Refactor utimecmp
153         comparisons to avoid spurious failures from timestamp drift
154         between NFS machines.
155
156 2009-10-12  Eric Blake  <ebb9@byu.net>
157
158         stat-time-tests: minor cleanups
159         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
160         * tests/test-stat-time.c (nap): Separate assignment from call.
161         Suggested by Paolo Bonzini and Bruno Haible.
162
163         sys_stat: guarantee struct timespec
164         * lib/sys_stat.in.h (includes): Always include <time.h>
165         * modules/sys_stat (Depends-on): Add time.
166         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
167         mode_t permission values.
168         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
169         get at subsecond timestamps.
170
171 2009-10-10  Eric Blake  <ebb9@byu.net>
172
173         futimens: new module
174         * modules/futimens: New file.
175         * lib/futimens.c (futimens): Likewise.
176         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
177         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
178         we can work around Linux bugs.
179         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
180         * modules/sys_stat (Makefile.am): Substitute them.
181         * lib/sys_stat.in.h (futimens): Declare it.
182         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
183         * doc/posix-functions/futimens.texi (futimens): Likewise.
184         * modules/futimens-tests: New test.
185         * tests/test-futimens.c: Likewise.
186
187         utimens: introduce fdutimens
188         * lib/utimens.h (fdutimens): New prototype.
189         * lib/utimens.c (gl_futimens): Move guts...
190         (fdutimens): ...to new interface.
191         * tests/test-utimens.c (do_fdutimens): Use it.
192
193         utimens: add UTIME_NOW and UTIME_OMIT support
194         * lib/utimens.c (validate_timespec, update_timespec): New helper
195         functions.
196         (gl_futimens, lutimens): Use them.
197         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
198         stdbool, sys_stat.
199         (Link): Mention resulting library dependency.
200         * modules/utimecmp (Link): Likewise.
201         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
202         (Makefile.am): Pick up library dependency.
203         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
204         definition.
205         * tests/test-sys_stat.c: Test the definitions.
206         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
207         * NEWS: Document library dependency.
208
209         utimecmp: support symlink timestamps
210         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
211         hashing when possible.  Use pathconf when available.
212         (SYSCALL_RESOLUTION): Recognize tighter resolution.
213         * modules/utimecmp (Depends-on): Add lstat.
214
215         utimens: add lutimens interface
216         * lib/utimens.c (lutimens): New function.
217         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
218         * lib/utimens.h (lutimens): Declare new interface.
219         * tests/test-utimens.c (main): Enhance test.
220         * tests/test-lutimens.h (test_lutimens): New file.
221         * modules/utimens-tests (Files): Distribute it.
222         (Depends-on): Add symlink.
223         (configure.ac): Check for usleep.
224
225         utimens: validate futimens usage
226         * lib/utimens.c (gl_futimens): Require valid fd up front, using
227         fewer syscalls on failure later on.  Avoid compiler warning on
228         mingw.
229         * modules/utimens (Depends-on): Add dup2.
230
231         utimens: add test
232         * modules/utimens-tests: New test.
233         * tests/test-utimens.h: New file.
234         * tests/test-futimens.h: Likewise.
235         * tests/test-utimens.c: Likewise.
236
237         doc: mention timestamp portability issues
238         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
239         instead.
240         * doc/posix-functions/utime.texi (utime): Likewise.
241         * doc/posix-functions/utimes.texi (utimes): Likewise.
242         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
243         instead.
244         * doc/posix-functions/futimens.texi (futimens): Mention utimens
245         module.
246         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
247         Mention weakness with symlink timestamps.
248         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
249         to utimensat/futimens instead.
250         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
251
252         test-dup2: enhance test
253         * tests/test-dup2.c (main): Also check AT_FDCWD.
254
255         test-stat-time: avoid more spurious failures
256         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
257         xfs; and avoid race if the two timestamps cross quantization edge.
258
259         relocatable: prefer 'file system' over 'filesystem'
260         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
261         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
262         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
263         * doc/relocatable.texi (Enabling Relocatability): Likewise.
264         * lib/relocatable.c (compute_curr_prefix): Likewise.
265
266 2009-10-10  Jim Meyering  <meyering@redhat.com>
267
268         stat-time-tests: check for the usleep function
269         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
270
271 2009-10-10  Bruno Haible  <bruno@clisp.org>
272
273         * modules/xnanosleep: Put the Link section after the Include section.
274
275 2009-10-09  Eric Blake  <ebb9@byu.net>
276
277         dup2: work around FreeBSD 6.1 bug
278         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
279         * doc/posix-functions/dup2.texi (dup2): Document it.
280         Reported by Nelson H. F. Beebe and Jim Meyering.
281
282         test-stat-time: port to buggy NFS clients
283         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
284         (test_ctime): Also skip test if mtime and ctime are skewed.
285
286         maint: prefer 'file system' over 'filesystem'
287         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
288         * doc/posix-functions/lstat.texi (lstat): Likewise.
289         * lib/file-has-acl.c (file_has_acl): Likewise.
290         * lib/fwriteerror.c [TEST]: Likewise.
291         * tests/test-areadlink.h (test_areadlink): Likewise.
292         * tests/test-areadlinkat-with-size.c (main): Likewise.
293         * tests/test-areadlinkat.c (main): Likewise.
294         * tests/test-canonicalize-lgpl.c (main): Likewise.
295         * tests/test-canonicalize.c (main): Likewise.
296         * tests/test-fstatat.c (main): Likewise.
297         * tests/test-linkat.c (main): Likewise.
298         * tests/test-lstat.h (test_lstat_func): Likewise.
299         * tests/test-mkdir.h (test_mkdir): Likewise.
300         * tests/test-readlink.h (test_readlink): Likewise.
301         * tests/test-remove.c (main): Likewise.
302         * tests/test-rename.h (test_rename): Likewise.
303         * tests/test-renameat.c (main): Likewise.
304         * tests/test-rmdir.h (test_rmdir_func): Likewise.
305         * tests/test-symlink.h (test_symlink): Likewise.
306         * tests/test-symlinkat.c (main): Likewise.
307         * tests/test-unlink.h (test_unlink_func): Likewise.
308         * tests/test-unlinkat.c (main): Likewise.
309
310         maint: make realtime library usage explicit
311         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
312         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
313         * modules/settime (Link): Likewise.
314         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
315
316         test-stat-time: speed up execution
317         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
318         warning on mingw.
319         (nap): New helper function.
320         (prepare_test): Use it to reduce sleep time.
321         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
322         execution.
323         * modules/stat-time-tests (configure.ac): Check for usleep.
324
325 2009-10-09  Jim Meyering  <meyering@redhat.com>
326
327         selinux-h: always use getfilecon wrappers
328         * lib/getfilecon.c: New file.
329         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
330         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
331         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
332         (fgetfilecon): Provide a stub.
333         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
334         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
335         file unconditionally.
336         When <selinux/selinux.h> is found, arrange to use wrappers.
337         * modules/selinux-h (Files): Add getfilecon.c.
338         (Makefile.am): Substitute include-next-related bits
339         into the now-always-generated selinux/selinux.h file.
340         * doc/glibc-functions/lgetfilecon.texi: New file.
341         * doc/glibc-functions/fgetfilecon.texi: New file.
342         * doc/glibc-functions/getfilecon.texi: New file.
343         * doc/glibc-functions/getfilecon-desc.texi: New file.
344         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
345         which to pull in the new files.
346         * MODULES.html.sh (Misc): Add selinux-h.
347
348 2009-10-08  Jim Meyering  <meyering@redhat.com>
349
350         unistd: fix comment typo
351         * lib/unistd.in.h (euidaccess): Fix a comment typo.
352
353 2009-10-08  Eric Blake  <ebb9@byu.net>
354
355         areadlink: use SIZE_MAX consistently
356         * modules/areadlink (Depends-on): Add stdint.
357         * modules/areadlink-with-size (Depends-on): Likewise.
358         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
359         gives NULL; drop sys/types, since unistd gives size_t; and add
360         stdint for SIZE_MAX.
361         (SIZE_MAX): Rely on headers.
362         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
363         and add stdint.
364         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
365         (SIZE_MAX): Likewise.
366         (INITIAL_BUF_SIZE): Turn into enum.
367         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
368
369 2009-10-08  Jim Meyering  <meyering@redhat.com>
370
371         areadlinkat: avoid compilation failure
372         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
373         Fix typo in comment.
374
375 2009-10-07  Eric Blake  <ebb9@byu.net>
376
377         areadlinkat-with-size: new module
378         * modules/areadlinkat-with-size: New module.
379         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
380         * lib/areadlink.h (areadlinkat): Declare it.
381         * MODULES.html.sh (File system functions): Mention it.
382         * modules/areadlinkat-with-size-tests: New test.
383         * tests/test-areadlinkat-with-size.c: New file.
384
385         xreadlinkat: new module
386         * modules/xreadlinkat: New module.
387         * lib/xreadlinkat.c (xreadlinkat): New file.
388         * lib/xreadlink.h (xreadlinkat): Declare it.
389         * MODULES.html.sh (File system functions): Mention it.
390
391         areadlinkat: new module
392         * lib/at-func.c (FUNC_FAIL): New define.
393         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
394         * modules/areadlinkat: New module.
395         * lib/linkat.c (areadlinkat): Move...
396         * lib/areadlinkat.c (areadlinkat): ...to new file.
397         * lib/areadlink.h (areadlinkat): Declare it.
398         * modules/linkat (Depends-on): Add areadlinkat.
399         * MODULES.html.sh (File system functions): Mention it.
400         * modules/areadlinkat-tests: New test.
401         * tests/test-areadlinkat.c: New file.
402
403         areadlink, areadlink-with-size: add tests
404         * modules/areadlink-tests: New test.
405         * modules/areadlink-with-size-tests: Likewise.
406         * tests/test-areadlink.h: New file.
407         * tests/test-areadlink.c: Likewise.
408         * tests/test-areadlink-with-size.c: Likewise.
409
410         maint: minor cleanups
411         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
412         _UNUSED_PARAMETER_ instead.
413         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
414         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
415         * modules/linkat-tests (Files): Distribute test-link.h.
416
417         openat, utimens: whitespace cleanup
418         * lib/openat.c: Prefer space throughout, rather than mix of 8
419         spaces vs. tabs.
420         * lib/at-func.c: Likewise.
421         * lib/utimens.c: Likewise.
422
423         openat: avoid using wrong fd
424         * lib/openat.c (openat_permissive): Reject user's fd if saving the
425         working directory chooses same fd.
426         * lib/at-func.c (AT_FUNC_NAME): Likewise.
427
428         mkdir, mkdirat: fix cygwin 1.5.x bug
429         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
430         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
431         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
432         bug.
433         (gl_PREREQ_MKDIR): Delete unused macro.
434         * modules/mkdir (Files): Track file rename.
435         (configure.ac): Update macro name.
436         * modules/openat (Depends-on): Add mkdir.
437         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
438
439         mkdir, mkdirat: add tests
440         * modules/mkdir-tests: New test.
441         * tests/test-mkdir.h: New file.
442         * tests/test-mkdir.c: Likewise.
443         * tests/test-mkdirat.c: Likewise.
444         * modules/openat-tests (Files): Add new files.
445         (Makefile.am): Run new test.
446
447 2009-10-06  Eric Blake  <ebb9@byu.net>
448
449         doc: tweak *at function documentation
450         * doc/posix-functions/faccessat.texi (faccessat): Mention
451         known issue with replacement.
452         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
453         * doc/posix-functions/linkat.texi (linkat): Likewise.
454         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
455         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
456         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
457         * doc/posix-functions/renameat.texi (renameat): Likewise.
458         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
459
460         openat: fix GNU/Hurd bug in unlinkat
461         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
462         broken.
463         * doc/posix-functions/unlink.texi (unlink): Document this.
464         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
465
466         fdopendir: fix GNU/Hurd bug
467         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
468         allowing non-directory fds.
469         * lib/fdopendir.c (rpl_fdopendir): Work around it.
470         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
471         * modules/dirent (Makefile.am): Substitute it.
472         * lib/dirent.in.h (fdopendir): Declare replacement.
473         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
474         * tests/test-fdopendir.c (main): Test something other than
475         /dev/null, since on Hurd that behaves like a directory.
476
477         test-symlink: port to GNU/Hurd
478         * tests/test-symlink.h (test_symlink): Relax expected errno.
479
480         doc: tweak more cygwin information
481         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
482         now compatible with glibc.
483         * doc/posix-functions/getopt.texi (getopt): Likewise.
484
485         getopt-gnu: add another test
486         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
487         guarantee behavior relied on by m4.
488         * tests/test-getopt.c (main): Use it.
489         * modules/getopt-posix-tests (Depends-on): Add setenv.
490         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
491
492         getopt: fix compilation on darwin
493         * lib/getopt.in.h (includes): Leave breadcrumbs during system
494         include.
495         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
496         Reported by Ludovic Courtès.
497
498 2009-10-06  Bruno Haible  <bruno@clisp.org>
499
500         * modules/size_max (Description): Discourage its use.
501         Reported by Simon Josefsson.
502
503 2009-10-06  Jim Meyering  <meyering@redhat.com>
504
505         linkat: avoid compilation failure
506         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
507
508 2009-10-05  Eric Blake  <ebb9@byu.net>
509
510         linkat: support Linux 2.6.17
511         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
512         linkat on Linux, but allow cache variable override.
513         * lib/linkat.c (rpl_linkat): Define override.
514         * modules/linkat (Depends-on): Add symlinkat.
515         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
516         * modules/unistd (Makefile.am): Substitute it.
517         * lib/unistd.in.h (linkat): Declare replacement.
518         Reported by Pádraig Brady.
519
520         quotearg: port test to systems with C.UTF-8 locale
521         * tests/test-quotearg.c (struct result_strings): Add another
522         member, differentiating between C.ASCII and C.UTF-8 handling.
523         (compare_strings): Add parameter.
524         (main): Adjust all callers.
525
526         getopt: avoid clash with FreeBSD _getopt_internal
527         * lib/getopt.in.h (_getopt_internal): Override the name.
528         * lib/getopt_int.h (includes): Pick up any overrides.
529         Reported by Reuben Thomas.
530
531         hash: allow C89 compilation
532         * lib/hash.c (check_tuning): Move declaration before statement.
533         Reported by Reuben Thomas.
534
535 2009-10-05  Karl Berry  <karl@gnu.org>
536
537         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
538
539 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
540             Bruno Haible  <bruno@clisp.org>
541
542         * lib/uname.c (uname): Use a table-driven algorithm to compute
543         Windows NT versions.
544
545 2009-10-04  Bruno Haible  <bruno@clisp.org>
546
547         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
548         program_invocation_short_name.
549         * modules/progname (configure.ac): Test for presence of
550         program_invocation_short_name.
551         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
552
553 2009-10-04  Bruno Haible  <bruno@clisp.org>
554
555         * lib/progname.c (set_program_name): Fix comment.
556         Reported by Jim Meyering.
557
558 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
559             Bruno Haible  <bruno@clisp.org>
560
561         * lib/uname.c: Include <string.h>.
562         (uname): Do only one call to GetVersionEx in the common case.
563
564 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
565             Bruno Haible  <bruno@clisp.org>
566
567         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
568         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
569         (uname): Add support for Windows CE and various non-x86 CPU types.
570
571 2009-10-03  Bruno Haible  <bruno@clisp.org>
572
573         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
574         invocation to tests/configure.ac.
575         Reported by Ian Beckwith <ianb@erislabs.net>.
576
577 2009-10-02  Eric Blake  <ebb9@byu.net>
578
579         fchdir: avoid compiler warning
580         * lib/fchdir.c (canonicalize_file_name)
581         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
582
583         test-open: support mingw errno values
584         * tests/test-open.h (test_open): Relax test.
585         * tests/test-fopen.h (test_fopen): Likewise.
586         * tests/test-openat-safer.c (main): Likewise.
587
588         open: fix opening directory on mingw
589         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
590
591         test-open: on GNU/Hurd, /dev/null is a directory
592         * tests/test-fopen.h (main): Rename...
593         (test_fopen): ...to this.  Use a guaranteed non-directory when
594         confirming open behavior on trailing slash.
595         * tests/test-openat-safer.c (main): Likewise.
596         * tests/test-open.h (main): Likewise....
597         (test_open): ...to this.
598         * tests/test-fopen.c (main): Adjust caller.
599         * tests/test-fopen-safer.c (main): Likewise.
600         * tests/test-open.c (main): Likewise.
601         * tests/test-fcntl-safer.c (main): Likewise.
602         Reported by Samuel Thibault.
603
604         rename, fchdir: don't ignore chdir failure
605         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
606         * lib/rename.c (rpl_rename) [W32]: Likewise.
607         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
608         an empty destination directory if source cannot be renamed,
609         although there is still possibility for failure.
610         * doc/posix-functions/rename.texi (rename): Document the race.
611         Reported by Jim Meyering.
612
613         maint: cleanup whitespace in recent commits
614         * lib/rename.c (rpl_rename): Remove tabs.
615         * tests/test-link.h (test_link): Likewise.
616         * lib/fchdir.c (get_name): Likewise.
617         Reported by Jim Meyering.
618
619 2009-10-02  Ben Pfaff  <blp@gnu.org>
620
621         relocatable-prog-wrapper: Add missing dependency on
622         double-slash-root.
623         * modules/relocatable-prog-wrapper: Add dependency.
624         Reported by Ian Beckwith <ianb@erislabs.net>.
625
626 2009-10-02  Eric Blake  <ebb9@byu.net>
627
628         renameat: fix Solaris bugs
629         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
630         needed fixing.
631         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
632         * modules/stdio (Makefile.am): Substitute it.
633         * lib/stdio.in.h (renameat): Declare replacement.
634         * lib/renameat.c (rpl_renameat): Implement fix.
635
636         renameat: new module
637         * modules/renameat: New file.
638         * lib/renameat.c (renameat): Likewise.
639         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
640         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
641         * modules/stdio (Makefile.am): Substitute them.
642         * lib/stdio.in.h (renameat): Declare it.
643         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
644         * doc/posix-functions/renameat.texi (renameat): Likewise.
645         * modules/renameat-tests: New test.
646         * tests/test-renameat.c: Likewise.
647
648         rename: fix mingw bugs
649         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
650         directory overwrite bugs.
651
652         rename: fix another cygwin 1.5 bug
653         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
654         checks.
655         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
656         unnecessary cygwin workarounds.  Also work around bug with moving
657         full directory onto an empty one.
658         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
659
660         rename-dest-slash: merge into rename module
661         * modules/rename-dest-slash (Status): Mark obsolete.
662         (Depends-on): Add rename.
663         (Files): Let rename do it all.
664         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
665         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
666         * m4/rename-dest-slash.m4: ...so this file can be deleted.
667         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
668         * lib/rename.c (rpl_rename): Update comments.
669
670         rename: fix cygwin 1.5.x bugs
671         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
672         * lib/rename.c (rpl_rename): Work around them.
673         * modules/rename (Depends-on): Add same-inode.
674
675         rename: fix Solaris 10 bug
676         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
677         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
678         was the only bug.
679
680         rename: fix Solaris 9 bug
681         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
682         on non-directory.  Avoid calling exit.
683         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
684         strdup.
685         * modules/rename-tests (Depends-on): Drop lstat.
686         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
687         (gl_PREREQ_RENAME): Delete unused macro.
688
689         rename-dest-slash: fix NetBSD bug
690         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
691         links.
692         * modules/rename-dest-slash (Depends-on): Add same-inode.
693
694         rename-tests: new test, exposes several platform bugs
695         * modules/rename-tests: New file.
696         * tests/test-rename.h: Likewise.
697         * tests/test-rename.c: Likewise.
698         * doc/posix-functions/rename.texi (rename): Improve documentation,
699         including bugs that will eventually be fixed in gnulib.
700
701 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
702
703         * lib/uname.c: Include <stdlib.h>
704         (uname): Assume version info is available.
705
706 2009-10-02  Jim Meyering  <meyering@redhat.com>
707
708         gnu-web-doc-update: correct --help output
709         * build-aux/gnu-web-doc-update: Make --help output relevant.
710
711         gnu-web-doc-update: add standard options
712         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
713
714         gnu-web-doc-update: New module.
715         Use this script to automatically update the on-line web documentation
716         for your GNU project at http://www.gnu.org/software/$pkg/manual/
717         * modules/gnu-web-doc-update: New file, from coreutils.
718         * build-aux/gnu-web-doc-update: New script.
719
720 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
721
722         link: LoadLibrary is not needed.
723         * lib/link.c: Use GetModuleHandle.
724
725 2009-10-01  Eric Blake  <ebb9@byu.net>
726
727         getopt: bump serial number
728         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
729         change.
730
731         tests: tighten link, rmdir, and remove tests
732         * tests/test-link.h (includes): No need to use <config.h> here.
733         Clean up if directory hard link was created, otherwise test for
734         trailing '.'.
735         * tests/test-linkat.c (main): Simplify.
736         * tests/test-remove.c (main): Enhance test for trailing '.'.
737         * tests/test-rmdir.h (test_rmdir_func): Likewise.
738
739 2009-10-01  Jim Meyering  <meyering@redhat.com>
740
741         maint.mk: requiring "make major" was annoying, for a "minor" release.
742         What is intended is "stable", to contrast with alpha and beta,
743         so require "make stable", not "make major".
744         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
745         (get_tool_versions): Likewise.
746         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
747
748 2009-09-30  Ben Pfaff  <blp@gnu.org>
749
750         Fix broken build of replacement for Windows tmpfile().
751         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
752         flags argument added along with the 'mkostemp' module.
753
754 2009-09-28  Bruno Haible  <bruno@clisp.org>
755
756         Avoid identifier clash with POSIX function 'remove' defined as a macro.
757         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
758         to 'remove_elt'.
759         (gl_list_remove): Update.
760         * lib/gl_list.c (gl_list_remove): Update.
761         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
762         to 'remove_elt'.
763         (gl_oset_remove): Update.
764         * lib/gl_list.c (gl_oset_remove): Update.
765         Reported by Eric Blake.
766
767 2009-09-28  Eric Blake  <ebb9@byu.net>
768
769         doc: mention yet more cygwin 1.7 status
770         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
771         cygwin.
772         * doc/glibc-functions/execvpe.texi (execvpe): New file.
773         * doc/gnulib.texi (Glibc unistd.h): Mention it.
774
775         argp: fix test failure
776         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
777         that are not upper-case.  Pass correct range to tolower.
778
779 2009-09-27  Jim Meyering  <meyering@redhat.com>
780
781         test-yesno: work around sparc-dash here-document infelicity
782         Without this change, the literal \177 byte in a here document
783         would make dash 0.5.5.1-3 access uninitialized memory.
784         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
785         Instead, use a marker, "@", and filter through tr to create the desired
786         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
787
788 2009-09-27  Bruno Haible  <bruno@clisp.org>
789
790         Disable untested support for new flavours of ACLs on AIX.
791         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
792         progress.
793         * lib/set-mode-acl.c (qset_acl): Likewise.
794
795 2008-12-07  Bruno Haible  <bruno@clisp.org>
796
797         Add support for new flavours of ACLs on AIX. (Untested.)
798         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
799         (file_has_acl): Add support for newer AIX.
800         * lib/set-mode-acl.c (qset_acl): Likewise.
801         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
802         Rainer Tammer <tammer@tammer.net>.
803
804 2009-09-26  Eric Blake  <ebb9@byu.net>
805
806         argp: fix compilation of getopt
807         * lib/getopt.in.h (includes): Use different guard than glibc.
808         Reported by Sergey Poznyakoff.
809
810         doc: mention more cygwin 1.7 status
811         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
812         bug.
813         * doc/posix-functions/execl.texi (execl): Likewise.
814         * doc/posix-functions/execle.texi (execle): Likewise.
815         * doc/posix-functions/execlp.texi (execlp): Likewise.
816         * doc/posix-functions/execv.texi (execv): Likewise.
817         * doc/posix-functions/execve.texi (execve): Likewise.
818         * doc/posix-functions/execvp.texi (execvp): Likewise.
819         * doc/glibc-functions/canonicalize_file_name.texi
820         (canonicalize_file_name): Cygwin 1.7 now provides this.
821         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
822         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
823         on AT_SYMLINK_NOFOLLOW.
824
825 2009-09-24  Eric Blake  <ebb9@byu.net>
826
827         test-linkat: make test more robust
828         * tests/test-linkat.c (main): Avoid collision with EEXIST.
829
830         getopt: fix inclusion guards for cygwin
831         * modules/getopt-posix (Depends-on): Add include-next.
832         (Makefile.am): Substitute more items in replacement header.
833         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
834         <getopt.h>.
835         * lib/getopt.in.h (includes): Use split inclusion guard, and
836         prefer <getopt.h> over include <unistd.h> when one is present.
837         (option): Also override name of 'struct option'.
838
839         same-inode: revert prior change; it is not yet ready
840         * NEWS: Undo mention of this change.
841         * lib/same-inode.h (same-inode.h): Undo tri-state change.
842         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
843         * lib/cycle-check.c (cycle_check): Likewise.
844         * lib/same.c (same_name): Likewise.
845         * lib/at-func2.c (at_func2): Likewise.
846
847 2009-09-23  Eric Blake  <ebb9@byu.net>
848
849         linkat: new module
850         * modules/linkat: New file.
851         * lib/at-func2.c (at_func2): Likewise.
852         * lib/linkat.c (linkat): Likewise.
853         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
854         * lib/openat-priv.h (at_func2): Add declaration.
855         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
856         * modules/unistd (Makefile.am): Substitute them.
857         * lib/unistd.in.h (linkat): Declare it.
858         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
859         * doc/posix-functions/linkat.texi (linkat): Likewise.
860         * doc/posix-functions/link.texi (link): Tweak wording.
861         * tests/test-link.c (main): Move guts...
862         * tests/test-link.h (test_link): ...into new file.
863         * modules/linkat-tests: New test.
864         * tests/test-linkat.c: Likewise.
865         * modules/link-tests (Files): Ship new file.
866         (Depends-on): Add stdbool.
867
868         dirname: add library-safe mdir_name
869         * lib/dirname.h (mdir_name): New prototype.
870         * lib/dirname.c (dir_name): Move guts...
871         (mdir_name): ...to new function that avoids xalloc_die.
872
873         fchdir: another mingw fix
874         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
875         * lib/fchdir.c (get_name): New helper method; skips canonicalize
876         on mingw (where it has not yet been ported), and make it optional
877         elsewhere.
878         (_gl_register_fd): Use it.
879
880         same-inode: make SAME_INODE tri-state, to port to mingw
881         * NEWS: Mention this change.
882         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
883         st_ino always being 0.
884         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
885         * lib/cycle-check.c (cycle_check): Likewise.
886         * lib/same.c (same_name): Likewise.
887
888         lstat: avoid mingw compilation error
889         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
890         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
891         lstat ourselves.
892         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
893         was adequate.
894         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
895         the checks for lstat.
896         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
897
898         link: fix test failure on Solaris 9
899         * lib/link.c (rpl_link): Don't assume link will catch bogus
900         trailing slash on source.
901
902         test-symlinkat: enhance test
903         * tests/test-readlink.c (main): Move guts...
904         * tests/test-readlink.h (test_readlink): ...into new file.
905         * tests/test-symlink.c (main): Move guts...
906         * tests/test-symlink.h (test_symlink): ...into new file.
907         * tests/test-symlinkat.c (main): Use new files for further
908         coverage.
909         (do_symlink, do_readlink): New helper functions.
910         * modules/symlink-tests (Files): Ship new file.
911         (Depends-on): Add stdbool.
912         * modules/readlink-tests (Files): Ship new file.
913         (Depends-on): Add stdbool.
914         * modules/symlinkat-tests (Files): Use new files.
915
916 2009-09-23  Eric Blake  <ebb9@byu.net>
917
918         readlink: document portability issue with symlink length
919         * doc/posix-functions/lstat.texi (lstat): Mention that some file
920         systems have bogus st_size on symlinks, and mention the
921         areadlink-with-size module.
922         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
923         * doc/posix-functions/readlink.texi (readlink): Mention the
924         areadlink module, and ERANGE failure.
925         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
926         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
927
928         readlink: fix Solaris 9 bug with trailing slash
929         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
930         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
931         * doc/posix-functions/readlink.texi (readlink): Document this.
932         * modules/readlink-tests: New test.
933         * tests/test-readlink.c: Likewise.
934
935         readlink: fix cygwin 1.5.x bug with return type
936         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
937         * lib/unistd.in.h (readlink): Use ssize_t.
938         * lib/readlink.c (readlink): Likewise.
939         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
940         * modules/unistd (Makefile.am): Substitute it.
941         * lib/unistd.in.h (readlink): Declare replacement.
942         * doc/posix-functions/readlink.texi (readlink): Document this.
943
944         symlink: use throughout gnulib
945         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
946         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
947         symlink is not used.
948         * modules/symlinkat (Depends-on): Add symlink.
949         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
950         * modules/canonicalize-tests (Depends-on): Likewise.
951         * modules/lstat-tests (Depends-on): Likewise.
952         * modules/openat-tests (Depends-on): Likewise.
953         * modules/remove-tests (Depends-on): Likewise.
954         * modules/rmdir-tests (Depends-on): Likewise.
955         * modules/unlink-tests (Depends-on): Likewise.
956         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
957         * tests/test-canonicalize.c (symlink): Likewise.
958         * tests/test-fstatat.c (symlink): Likewise.
959         * tests/test-lstat.c (symlink): Likewise.
960         * tests/test-remove.c (symlink): Likewise.
961         * tests/test-rmdir.c (symlink): Likewise.
962         * tests/test-unlink.c (symlink): Likewise.
963         * tests/test-unlinkat.c (symlink): Likewise.
964
965         symlink: new module, for Solaris 9 bug
966         * modules/symlink: New file.
967         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
968         * lib/symlink.c: Likewise.
969         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
970         * modules/unistd (Makefile.am): Substitute them.
971         * lib/unistd.in.h (symlink): Declare replacement.
972         * MODULES.html.sh (File system functions): Mention it.
973         * doc/posix-functions/symlink.texi (symlink): Likewise.
974         * modules/symlink-tests: New test.
975         * tests/test-symlink.c: Likewise.
976
977 2009-09-23  Bruno Haible  <bruno@clisp.org>
978
979         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
980         when needed.
981         Test case: gnulib-tool --import --with-tests atexit inttypes.
982         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
983
984 2009-09-23  Bruno Haible  <bruno@clisp.org>
985
986         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
987         subcommand, not in a subshell.
988
989 2009-09-22  Eric Blake  <ebb9@byu.net>
990
991         unistd: sort replacement declarations
992         * lib/unistd.in.h: Sort declarations.
993
994         open, openat: minor optimization
995         * lib/open.c (open): If open succeeded, len is non-zero.
996         * lib/openat.c (rpl_openat): Likewise.
997
998         link-follow: ensure correct result
999         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
1000         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
1001         distinguish between possible failures.
1002
1003 2009-09-21  Eric Blake  <ebb9@byu.net>
1004
1005         fts: avoid compiler warning
1006         * lib/fts.c (dirent_inode_sort_may_be_useful)
1007         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
1008
1009 2009-09-19  Bruno Haible  <bruno@clisp.org>
1010
1011         * lib/progreloc.c (canonicalize_file_name): New declaration.
1012
1013 2009-09-19  Eric Blake  <ebb9@byu.net>
1014
1015         link: fix quoting
1016         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
1017
1018         openat: fix openat bugs on Solaris 9
1019         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
1020         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
1021         * modules/openat (Depends-on): Add open.
1022         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
1023         * modules/fcntl-h (Makefile.am): Substitute it.
1024         * lib/fcntl.in.h (openat): Declare replacement.
1025         * doc/posix-functions/openat.texi (openat): Document this.
1026
1027         openat: move fstatat and unlinkat into correct files
1028         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
1029         compiled.
1030         * lib/openat.c (fstatat, unlinkat): Move...
1031         * lib/fstatat.c (fstatat): ...into correct files.
1032         * lib/unlinkat.c (unlinkat): Likewise.
1033
1034         openat: fix unlinkat bugs on Solaris 9
1035         * lib/unlinkat.c (unlinkat): New file.
1036         * modules/openat (Depends-on): Add unlink.
1037         (Files): Distribute it.
1038         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
1039         trailing slash behavior is broken.
1040         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1041         * modules/unistd (Makefile.am): Substitute it.
1042         * lib/unistd.in.h (unlinkat): Declare replacement.
1043         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
1044
1045         openat: fix fstatat bugs on Solaris 9
1046         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
1047         stat.
1048         * doc/posix-functions/fstatat.texi (fstatat): Document this.
1049
1050         test-unlinkat: enhance test, to expose Solaris 9 bug
1051         * tests/test-unlink.c (main): Factor guts...
1052         * tests/test-unlink.h (test_rmdir_func): ...into new file.
1053         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
1054         * tests/test-rmdir.c (main): Adjust caller.
1055         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
1056         (unlinker): New helper function.
1057         (rmdirat): Enhance check.
1058         * modules/rmdir-tests (Depends-on): Add stdbool.
1059         * modules/unlink-tests (Depends-on): Likewise.
1060         (Files): Add test-unlink.h.
1061         * modules/openat-tests (Files): Likewise.
1062         (Depends-on): Add unlinkdir.
1063
1064         test-fstatat: new test, to expose Solaris 9 bugs
1065         * tests/test-stat.c (main): Factor guts...
1066         * tests/test-stat.h (test_stat_func): ...into new file.
1067         * tests/test-lstat.c (main): Factor guts...
1068         * tests/test-lstat.h (test_lstat_func): ...into new file.
1069         * tests/test-fstatat.c: New file.
1070         * modules/stat-tests (Files): Add test-stat.h.
1071         * modules/lstat-tests (Files): Add test-lstat.h.
1072         (Depends-on): Add stdbool.
1073         * modules/openat-tests (Depends-on): Add pathmax.
1074         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
1075         (Makefile.am): Run new test.
1076
1077         remove: new module, for mingw and Solaris 9 bugs
1078         * modules/remove: New file.
1079         * lib/remove.c: Likewise.
1080         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
1081         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
1082         * modules/stdio (Makefile.am): Use them.
1083         * lib/stdio.in.h (remove): Declare replacement.
1084         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
1085         * doc/posix-functions/remove.texi (remove): Likewise.
1086         * modules/remove-tests: New test.
1087         * tests/test-remove.c: Likewise.
1088
1089         unlink: new module, for Solaris 9 bug
1090         * modules/unlink: New file.
1091         * lib/unlink.c: Likewise.
1092         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
1093         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
1094         * modules/unistd (Makefile.am): Use them.
1095         * lib/unistd.in.h (stat): Declare replacement.
1096         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
1097         * doc/posix-functions/unlink.texi (unlink): Likewise.
1098         * modules/unlink-tests: New test.
1099         * tests/test-unlink.c: Likewise.
1100
1101         lstat: fix Solaris 9 bug
1102         * lib/lstat.c (lstat): Also check for trailing slash on
1103         non-symlink, non-directories.  Use stat module to simplify logic.
1104         * doc/posix-functions/lstat.texi (lstat): Document it.
1105         * modules/lstat-tests (Depends-on): Add errno, same-inode.
1106         (configure.ac): Check for symlink.
1107         * tests/test-lstat.c (main): Add more tests.
1108
1109         stat: add as dependency to other modules
1110         * modules/chown (Depends-on): Add stat.
1111         * modules/euidaccess (Depends-on): Likewise.
1112         * modules/fchdir (Depends-on): Likewise.
1113         * modules/isdir (Depends-on): Likewise.
1114         * modules/link (Depends-on): Likewise.
1115         * modules/lstat (Depends-on): Likewise.
1116         * modules/mkdir-p (Depends-on): Likewise.
1117         * modules/modechange (Depends-on): Likewise.
1118         * modules/open (Depends-on): Likewise.
1119         * modules/readlink (Depends-on): Likewise.
1120         * modules/same (Depends-on): Likewise.
1121
1122         stat: fix Solaris 9 bug
1123         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
1124         slash.
1125         * lib/stat.c (rpl_stat): Work around it.
1126         * doc/posix-functions/stat.texi (stat): Update documentation.
1127
1128         stat: new module, for mingw bug
1129         * modules/stat: New file.
1130         * lib/stat.c: Likewise.
1131         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
1132         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
1133         * modules/sys_stat (Makefile.am): Use them.
1134         * lib/sys_stat.in.h (stat): Declare replacement.
1135         * lib/openat.c (fstatat): Deal with lstat and stat being function
1136         macros.
1137         * modules/openat (Depends-on): Add inline.
1138         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
1139         * doc/posix-functions/stat.texi (stat): Likewise.
1140         * modules/stat-tests: New test.
1141         * tests/test-stat.c: Likewise.
1142
1143 2009-09-19  Jim Meyering  <meyering@redhat.com>
1144
1145         syntax-check: detect unnecessary inclusion of canonicalize.h
1146         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
1147
1148 2009-09-19  Eric Blake  <ebb9@byu.net>
1149
1150         canonicalize-lgpl: adjust clients to use correct header
1151         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
1152         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
1153         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
1154         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
1155         * lib/progreloc.c (includes): Likewise.
1156
1157 2009-09-19  Jim Meyering  <meyering@redhat.com>
1158
1159         test-posixtm.c: correct a comment
1160         * tests/test-posixtm.c: Correct first-line comment.
1161         Spotted by Eric Blake.
1162
1163 2009-09-16  Jim Meyering  <meyering@redhat.com>
1164
1165         posixtm-tests: make T const-correct; add a test case
1166         * tests/test-posixtm.c (T): Declare const.
1167         Add a test for -(2^31+1).
1168         Remove useless can-succeed-only-in-2002 test.
1169
1170         posixtm-tests: adjust the sole failing test
1171         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
1172         expected output matches what mktime now produces.  Cross-checked via
1173         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
1174
1175         posixtm: move #ifdef'd tests into a new module
1176         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
1177         * tests/test-posixtm.c: ... this new file.
1178         * modules/posixtm-tests: New module.
1179
1180 2009-09-19  Eric Blake  <ebb9@byu.net>
1181
1182         openat: simplify use of at-func.c
1183         * lib/at-func.c (includes): Include prerequisites here, to
1184         simplify requirements on client files.
1185         * lib/openat-priv.h: Add double-inclusion guard.
1186         * lib/faccessat.c (includes): Simplify.
1187         * lib/fchmodat.c (includes): Likewise.
1188         * lib/fchownat.c (includes): Likewise.
1189         * lib/mkdirat.c (includes): Likewise.
1190         * lib/mkfifoat.c (includes): Likewise.
1191         * lib/symlinkat.c (includes): Likewise.
1192
1193         openat: allow return of fd 0
1194         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
1195         * modules/save-cwd (Depends-on): Replace fcntl-safer with
1196         unistd-safer.
1197         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
1198         <fcntl.h>; this module does not leak fds.
1199         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
1200         must be allowed to return 0, leaving openat_safer to add the
1201         safety.
1202         (openat_permissive): Avoid writing to just-opened fd 2 if
1203         restoring the current directory fails.
1204         * lib/openat-die.c (openat_restore_fail): Add comment.
1205         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
1206         (save_cwd): Guarantee safe fd, but without use of open_safer.
1207         * tests/test-openat.c: New test.
1208         * modules/openat-tests (Files, Makefile.am): Distribute and build
1209         new file.
1210
1211         relocatable-prog-wrapper: fix build
1212         * modules/relocatable-prog-wrapper (Files): Update name of
1213         canonicalize m4 file, broken on 2009-09-17.
1214         Reported by emad hajjar <aleppos@hotmail.com>.
1215
1216 2009-09-19  Bruno Haible  <bruno@clisp.org>
1217
1218         * lib/safe-alloc.h: Use the standard header with GPL copyright.
1219         * lib/safe-alloc.c: Likewise.
1220         Reported by Ian Beckwith <ianb@erislabs.net>.
1221
1222 2009-09-18  Bruno Haible  <bruno@clisp.org>
1223
1224         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
1225         Reported by <erobles@sensacd.com.mx>.
1226
1227 2009-09-17  Eric Blake  <ebb9@byu.net>
1228
1229         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
1230         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
1231         slashes when checking if last component is missing.
1232         * tests/test-canonicalize.c (main): Test this.
1233
1234         canonicalize, canonicalize-lgpl: honor // if distinct from /
1235         * modules/canonicalize (Files): Add double-slash-root.m4.
1236         * modules/canonicalize-lgpl (Files): Likewise.
1237         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
1238         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
1239         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
1240         fallback definition.
1241         (canonicalize_filename_mode): Use it to protect //.
1242         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
1243         (__realpath): Likewise.
1244         * tests/test-canonicalize.c (main): Test this.
1245         * tests/test-canonicalize-lgpl.c (main): Likewise.
1246         * modules/canonicalize-tests (Depends-on): Add same-inode.
1247         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
1248
1249         canonicalize-lgpl: fix glibc bug with trailing slash
1250         * m4/canonicalize-lgpl.m4: Move contents...
1251         * m4/canonicalize.m4: ...here.
1252         (gl_CANONICALIZE_LGPL): Factor realpath check...
1253         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
1254         glibc 2.3.5 bug, fixed 2005-04-27.
1255         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
1256         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
1257         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
1258         * modules/canonicalize-lgpl (Files): Manage file rename.
1259         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
1260         * modules/stdlib (Makefile.am): Substitute witness.
1261         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
1262         is needed.
1263         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
1264         replacement is required.
1265         * lib/canonicalize.c (canonicalize_file_name): Likewise.
1266         * doc/glibc-functions/canonicalize_file_name.texi
1267         (canonicalize_file_name): Document this.
1268         * doc/posix-functions/realpath.texi (realpath): Likewise.
1269
1270         canonicalize-lgpl: reject non-directory with trailing slash
1271         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
1272         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
1273         catches failures in glibc 2.3.5.
1274         * tests/test-canonicalize.c (main): Likewise.
1275
1276         canonicalize-lgpl: use native realpath if it works
1277         * lib/canonicalize-lgpl.c (realpath): Guard with
1278         FUNC_REALPATH_WORKS.
1279         * lib/stdlib.in.h (realpath): Make declaration optional based on
1280         HAVE_REALPATH.
1281         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
1282         native realpath works.
1283         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
1284         * modules/stdlib (Makefile.am): Substitute witness.
1285
1286         canonicalize, canonicalize-lgpl: use <stdlib.h>
1287         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
1288         (Include): Mention <stdlib.h>.
1289         (configure.ac): Mention functions we provide.
1290         * modules/canonicalize (configure.ac): Likewise.
1291         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
1292         realpath if canonicalize_file_name is missing.
1293         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
1294         * modules/stdlib (Makefile.am): Substitute witnesses.
1295         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
1296         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
1297         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
1298         * NEWS: Document this.
1299         * doc/glibc-functions/canonicalize_file_name.texi
1300         (canonicalize_file_name): Likewise.
1301         * doc/posix-functions/realpath.texi (realpath): Likewise.
1302         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
1303
1304         test-canonicalize: consolidate into single C program
1305         * tests/test-canonicalize.sh: Delete; move setup into...
1306         * tests/test-canonicalize.c (main): ...the program, making it
1307         easier to run in debugger.  Add some tests.
1308         * modules/canonicalize-tests (Files): Remove unused file.
1309         (Depends-on): Add progname.
1310         (configure.ac, Makefile.am): Simplify.
1311
1312         test-canonicalize-lgpl: consolidate into single C program
1313         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
1314         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
1315         easier to run in debugger.  Add some tests.
1316         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
1317         (configure.ac, Makefile.am): Simplify.
1318
1319         canonicalize: avoid resolvepath
1320         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
1321         unnecessary checks.
1322         * lib/canonicalize.c (includes): Simplify.
1323         (canonicalize_file_name): Drop resolvepath implementation.
1324         * modules/canonicalize (Depends-on): Drop filenamecat.
1325
1326         canonicalize: don't lose errno
1327         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
1328         over calls to free.
1329
1330         canonicalize: simplify errno handling
1331         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
1332         assignment.
1333
1334         canonicalize, canonicalize-lgpl: update module dependencies
1335         * modules/canonicalize (Depends-on): Add extensions, lstat,
1336         pathmax, stdlib.
1337         (Files): Drop pathmax.h.
1338         (configure.ac): Adjust macro name.
1339         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
1340         lstat, stdlib, sys_stat.
1341         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
1342         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
1343         extensions.
1344         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
1345         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
1346         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
1347         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
1348         declaration, if available.
1349         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
1350         we can rely on the readlink module.
1351         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
1352         (includes): Use <unistd.h> unconditionally.
1353
1354 2009-09-17  Eric Blake  <ebb9@byu.net>
1355
1356         maint: make Include sections of modules consistent
1357         * modules/alloca: Use only header name; no need to list #include.
1358         * modules/alloca-opt: Likewise.
1359         * modules/arpa_inet: Likewise.
1360         * modules/canon-host: Likewise.
1361         * modules/configmake: Likewise.
1362         * modules/dirent: Likewise.
1363         * modules/eealloc: Likewise.
1364         * modules/environ: Likewise.
1365         * modules/fchdir: Likewise.
1366         * modules/fcntl: Likewise.
1367         * modules/fcntl-h: Likewise.
1368         * modules/gethrxtime: Likewise.
1369         * modules/gettime: Likewise.
1370         * modules/ignore-value: Likewise.
1371         * modules/inet_ntop: Likewise.
1372         * modules/inet_pton: Likewise.
1373         * modules/inttypes: Likewise.
1374         * modules/isnand-nolibm: Likewise.
1375         * modules/isnanf-nolibm: Likewise.
1376         * modules/mbchar: Likewise.
1377         * modules/mbfile: Likewise.
1378         * modules/mbiter: Likewise.
1379         * modules/mbuiter: Likewise.
1380         * modules/netdb: Likewise.
1381         * modules/netinet_in: Likewise.
1382         * modules/nproc: Likewise.
1383         * modules/pagealign_alloc: Likewise.
1384         * modules/poll: Likewise.
1385         * modules/printf-frexp: Likewise.
1386         * modules/pthread: Likewise.
1387         * modules/putenv: Likewise.
1388         * modules/random_r: Likewise.
1389         * modules/relocatable-prog: Likewise.
1390         * modules/search: Likewise.
1391         * modules/select: Likewise.
1392         * modules/selinux-h: Likewise.
1393         * modules/settime: Likewise.
1394         * modules/signal: Likewise.
1395         * modules/size_max: Likewise.
1396         * modules/socklen: Likewise.
1397         * modules/ssize_t: Likewise.
1398         * modules/stdarg: Likewise.
1399         * modules/stdbool: Likewise.
1400         * modules/stddef: Likewise.
1401         * modules/stdint: Likewise.
1402         * modules/stdio: Likewise.
1403         * modules/stdlib: Likewise.
1404         * modules/string: Likewise.
1405         * modules/strings: Likewise.
1406         * modules/sys_file: Likewise.
1407         * modules/sys_ioctl: Likewise.
1408         * modules/sys_select: Likewise.
1409         * modules/sys_socket: Likewise.
1410         * modules/sys_stat: Likewise.
1411         * modules/sys_time: Likewise.
1412         * modules/sys_times: Likewise.
1413         * modules/sys_utsname: Likewise.
1414         * modules/sys_wait: Likewise.
1415         * modules/sysexits: Likewise.
1416         * modules/time: Likewise.
1417         * modules/times: Likewise.
1418         * modules/tmpfile: Likewise.
1419         * modules/trim: Likewise.
1420         * modules/unistd: Likewise.
1421         * modules/wchar: Likewise.
1422         * modules/wctype: Likewise.
1423
1424 2009-09-17  Bruno Haible  <bruno@clisp.org>
1425
1426         Make getdate.y compile on QNX and NetBSD 5 / i386.
1427         * m4/getdate.m4 (gl_GETDATE): Conditionally define
1428         TIME_T_FITS_IN_LONG_INT.
1429         * lib/getdate.y (long_time_t): New type.
1430         (relative_time): Change type of 'seconds' field to long_time_t.
1431         (get_date): Update types of local variables. Check against overflow
1432         during conversion from long_time_t to time_t.
1433         Reported by Matt Kraai <kraai@ftbfs.org>
1434         and Hasso Tepper <hasso@netbsd.org>.
1435
1436 2009-09-17  Bruno Haible  <bruno@clisp.org>
1437
1438         * modules/COPYING: Update copyright years.
1439         * modules/README: Likeiwse.
1440         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
1441         Reported by Ian Beckwith <ianb@erislabs.net>.
1442
1443 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
1444
1445         * users.txt: Update references for gnuit package.
1446
1447 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
1448
1449         * m4/getdelim.m4: Fix typo in copyright line.
1450
1451 2009-09-17  Bruno Haible  <bruno@clisp.org>
1452
1453         * lib/atoll.c: Use the standard header with GPL copyright.
1454         * lib/argz.in.h: Likewise.
1455         * lib/glob.c: Likewise.
1456         * lib/glob-libc.h: Likewise.
1457         * lib/random_r.c: Likewise.
1458         * lib/siglist.h: Likewise.
1459         * lib/strsignal.c: Likewise.
1460         Reported by Ian Beckwith <ianb@erislabs.net>.
1461
1462 2009-09-17  Eric Blake  <ebb9@byu.net>
1463
1464         rmdir: ensure correct dependency order
1465         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
1466
1467 2009-09-17  Bruno Haible  <bruno@clisp.org>
1468
1469         Disable assertion that fails on NetBSD 5 / i386.
1470         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
1471         Reported by Sam Steingold <sds@gnu.org>
1472         and Hasso Tepper <hasso@netbsd.org>.
1473
1474 2009-09-16  Eric Blake  <ebb9@byu.net>
1475
1476         unlinkdir: port to mingw
1477         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
1478         on which no one can unlink a directory.
1479
1480         stdlib: sort witness names
1481         * modules/stdlib (Makefile.am): Sort replacements.
1482         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
1483         * lib/stdlib.in.h: Likewise.
1484
1485         parse-duration-tests: avoid link failure
1486         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
1487         LIBINTL.
1488         Reported by Tom G. Christensen.
1489
1490         openat-tests: ensure unlinkat behaves like rmdir
1491         * tests/test-rmdir.c (main): Factor guts...
1492         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
1493         * modules/rmdir-tests (Files): Ship new file.
1494         * modules/openat-tests: New test.
1495         * tests/test-unlinkat.c: Likewise.
1496
1497         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
1498         * modules/rmdir-errno (Status, Notice): Now obsolete.
1499
1500         rmdir: work around cygwin 1.5.x and mingw bugs
1501         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
1502         * lib/rmdir.c (rmdir): Work around it.
1503         * modules/rmdir (Status, Notice): No longer obsolete.
1504         (Files): Add dos.m4.
1505         (Depends-on): Add unistd.
1506         (configure.ac): Set witnesses.
1507         (License): Relax to LGPLv2+.
1508         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
1509         * modules/unistd (Makefile.am): Substitute witnesses.
1510         * lib/unistd.in.h (rmdir): Declare replacement.
1511         * doc/posix-functions/rmdir.texi (rmdir): Document this.
1512         * modules/rmdir-tests: New tests.
1513         * tests/test-rmdir.c: Likewise.
1514
1515 2009-09-15  Eric Blake  <ebb9@byu.net>
1516
1517         fchdir: improve use of replacement functions
1518         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
1519         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
1520         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
1521         REPLACE_CLOSEDIR.
1522         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
1523         * modules/sys_stat (Makefile.am): Substitute correct witness.
1524         * modules/dirent (Makefile.am): Likewise.
1525         * modules/unistd (Makefile.am): Likewise.
1526         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
1527         * lib/unistd.in.h (dup): Likewise.
1528         * lib/sys_stat.in.h (fstat): Likewise.
1529
1530         maint: ignore gnulib-tool temp files
1531         * .gitignore: Ignore files created during gnulib-tool --test.
1532
1533 2009-09-13  Jim Meyering  <meyering@redhat.com>
1534
1535         posixtm: don't reject a time that specify "60" as the number of seconds
1536         * lib/posixtm.c (posixtime): The code to reject invalid dates
1537         would also reject a time specified with the .60 suffix.
1538         But POSIX allows that, in order to accommodate leap seconds.
1539         So don't reject it.
1540         (main): Adjust tests accordingly.
1541         * modules/posixtm (Depends-on): Add stpcpy.
1542
1543 2009-09-11  Jim Meyering  <meyering@redhat.com>
1544
1545         announce-gen: include [$release_type] in emitted Subject:
1546         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
1547         e.g., [stable] in the emitted Subject: line.
1548
1549 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1550
1551         Remove obsolete macros from several modules.
1552         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
1553         obsolete Autoconf macros with their modern counterparts.
1554         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
1555         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
1556         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
1557         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
1558         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
1559         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
1560         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
1561         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
1562         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
1563         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
1564         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
1565         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
1566         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
1567         * m4/sockets.m4 (gl_SOCKETS): Likewise.
1568         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
1569         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
1570         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
1571         * m4/time_r.m4 (gl_TIME_R): Likewise.
1572         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
1573         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
1574         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
1575
1576         Fix copyright header in build-aux scripts.
1577         * build-aux/git-version-gen: Fix copyright header to match GPLv3
1578         recommendation.
1579         * build-aux/ncftpput-ftp: Likewise.
1580         * build-aux/update-copyright: Likewise.
1581
1582 2009-09-09  Eric Blake  <ebb9@byu.net>
1583
1584         test-link: allow Linux choice of errno
1585         * tests/test-link.c (main): Relax test for alternate error.
1586
1587         strndup: fix improper m4 caching
1588         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
1589         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
1590         (gl_PREREQ_STRNDUP): Delete.
1591         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
1592         * modules/string (Makefile.am): Substitute it.
1593         * lib/string.in.h (strndup): Modernize prototype.
1594
1595         getcwd: port to mingw
1596         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
1597         different from the POSIX assumptions made throughout the getcwd
1598         module; fortunately, the mingw getcwd does not need replacement.
1599         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
1600         * modules/getcwd-tests: New test.
1601         * tests/test-getcwd.c: Likewise.
1602
1603         link: fix platform bugs
1604         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
1605         * lib/link.c (link): Work around them.  Fix related mingw bug.
1606         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
1607         * modules/unistd (Makefile.am): Substitute it.
1608         * lib/unistd.in.h (link): Declare replacement.
1609         * doc/posix-functions/link.texi (link): Document this.
1610         * modules/link (Depends-on): Add strdup-posix, sys_stat.
1611
1612         test-link: consolidate into single C program, test more cases
1613         * tests/test-link.sh: Delete.
1614         * tests/test-link.c: Test more error conditions.  Exposes bugs on
1615         at least Cygwin and Solaris.
1616         * modules/link-tests (Files): Remove unused file.
1617         (Depends-on): Add errno, sys_stat.
1618         (Makefile.am): Simplify.
1619
1620 2009-09-08  Bruno Haible  <bruno@clisp.org>
1621
1622         Work around towlower, towupper bug on mingw.
1623         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
1624         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
1625         * doc/posix-functions/towlower.texi: Mention the mingw bug.
1626         * doc/posix-functions/towupper.texi: Likewise.
1627         Reported by Eric Blake.
1628
1629 2009-09-08  Jim Meyering  <meyering@redhat.com>
1630
1631         build: don't try to run autoheader if we don't use it
1632         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
1633         is not used in configure.ac.
1634
1635 2009-09-08  Eric Blake  <ebb9@byu.net>
1636
1637         euidaccess: fix compilation error
1638         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
1639
1640         rawmemchr: relax license
1641         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
1642         okay.
1643         Reported by Jim Meyering.
1644
1645         mkfifoat: new module
1646         * modules/mkfifoat: New file.
1647         * lib/mkfifoat.c: Likewise.
1648         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
1649         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
1650         * modules/sys_stat (Makefile.am): Use them.
1651         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
1652         * MODULES.html.sh (File system functions): Mention module.
1653         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
1654         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
1655         * modules/mkfifoat-tests: New test.
1656         * tests/test-mkfifoat.c: Likewise.
1657
1658         strchrnul: relax license
1659         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
1660         okay.
1661         Reported by Jim Meyering.
1662
1663 2009-09-08  Eric Blake  <ebb9@byu.net>
1664
1665         fstatat: fix compilation on Solaris
1666         * lib/fstatat.c (includes): Add fcntl.h.
1667         Reported by Pádraig Brady.
1668
1669 2009-09-07  Eric Blake  <ebb9@byu.net>
1670
1671         rename: modernize replacement
1672         * modules/rename (Depends-on): Add stdio.
1673         (configure.ac): Declare witness.
1674         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
1675         stdio take care of replacement.
1676         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
1677         * modules/stdio (Makefile.am): Substitute them.
1678         * lib/stdio.in.h (rename): Declare replacement.
1679         * lib/rename.c (includes): Allow cross-compilation to non-windows
1680         machines.
1681         * doc/posix-functions/rename.texi (rename): Improve
1682         documentation.
1683
1684         stdio: sort witness names
1685         * modules/stdio (Makefile.am): Sort replacements.
1686         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
1687         * lib/stdio.in.h: Likewise.
1688
1689         getcwd: minor cleanups
1690         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
1691         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
1692
1693         openat: provide more convenience names
1694         * modules/faccessat (configure.ac): Add C witness.
1695         * lib/unistd.in.h (readlinkat): Fix typo.
1696         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
1697         convenience wrappers.
1698         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
1699         wrappers in syntax checks.
1700
1701 2009-09-06  Eric Blake  <ebb9@byu.net>
1702
1703         doc: fix comments in recent patches
1704         * lib/faccessat.c: Mention correct function.
1705         * lib/fchmodat.c: Likewise.
1706         * lib/fchownat.c: Likewise.
1707         * lib/symlinkat.c: Likewise.
1708         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
1709         constants.
1710
1711         faccessat, symlinkat: continue cleanup of previous patch
1712         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
1713         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
1714         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
1715         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
1716         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
1717         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
1718         set.
1719
1720 2009-09-06  Bruno Haible  <bruno@clisp.org>
1721
1722         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
1723         (fstatat): Declare if GNULIB_FSTATAT is set.
1724         (mkdirat): Declare if GNULIB_MKDIRAT is set.
1725         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
1726         (unlinkat): Declare if GNULIB_UNLINKAT is set.
1727         * modules/fcntl-h (Files): Remove m4/openat.m4.
1728         * modules/sys_stat (Files): Remove m4/openat.m4.
1729         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
1730         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
1731         * modules/unistd (Files): Remove m4/openat.m4.
1732         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
1733         GNULIB_OPENAT.
1734         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
1735         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
1736         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
1737         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
1738         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
1739         gl_OPENAT_DEFAULTS.
1740         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
1741         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
1742         Don't require gl_OPENAT_DEFAULTS.
1743         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
1744         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
1745         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
1746         (gl_OPENAT_DEFAULTS): Remove macro.
1747
1748 2009-09-06  Bruno Haible  <bruno@clisp.org>
1749
1750         * modules/openat (configure.ac): Remove unneeded witness.
1751
1752 2009-09-06  Bruno Haible  <bruno@clisp.org>
1753
1754         Set errno to ENOSYS when a function is entirely unsupported.
1755         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
1756         EOPNOTSUPP.
1757         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
1758         * modules/chown (Depends-on): Remove errno.
1759
1760 2009-09-06  Bruno Haible  <bruno@clisp.org>
1761
1762         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
1763
1764 2009-09-06  Bruno Haible  <bruno@clisp.org>
1765
1766         * lib/sys_stat.in.h: Fix preprocessor command indentation.
1767
1768 2009-09-06  Ben Pfaff  <blp@gnu.org>
1769             Bruno Haible  <bruno@clisp.org>
1770
1771         Work around a glibc bug in strtok_r.
1772         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
1773         Undefine if UNDEFINE_STRTOK_R is set.
1774         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
1775         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
1776         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
1777         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
1778         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
1779         UNDEFINE_STRTOK_R.
1780         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
1781
1782 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
1783
1784         exclude: minor fix
1785         * lib/exclude.c: Include wctype.h
1786
1787 2009-09-06  Akim Demaille  <demaille@gostai.com>
1788
1789         bootstrap: improve error message
1790         * build-aux/bootstrap (find_tool): Upon failure, report the list
1791         of candidates.
1792         Honor the initial value of the envvar.
1793
1794 2009-09-05  Eric Blake  <ebb9@byu.net>
1795
1796         symlinkat: new module
1797         * modules/symlinkat: New file.
1798         * lib/symlinkat.c: Likewise.
1799         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
1800         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
1801         * modules/unistd (Makefile.am): Use them.
1802         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
1803         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
1804         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
1805         * MODULES.html.sh (File system functions): Mention module.
1806         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
1807         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
1808         * modules/symlinkat-tests: New test.
1809         * tests/test-symlinkat.c: Likewise.
1810
1811         test-openat-safer: add more checks
1812         * tests/test-openat-safer.c (main): Check more code paths.
1813
1814 2009-09-05  Jim Meyering  <meyering@redhat.com>
1815
1816         syntax-check: detect unnecessary inclusion of openat.h
1817         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
1818
1819 2009-09-05  Bruno Haible  <bruno@clisp.org>
1820
1821         Support towlower, towupper.
1822         * doc/posix-functions/towlower.texi: Mention module wctype.
1823         * doc/posix-functions/towupper.texi: Likewise.
1824         * lib/wctype.in.h (towlower, towupper): New functions.
1825         * tests/test-wctype.c: Include stdio.h, stdlib.h.
1826         (ASSERT): New macro.
1827         (e): New variable.
1828         (main): Test also towlower, towupper. Test WEOF argument.
1829         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
1830
1831 2009-09-05  Bruno Haible  <bruno@clisp.org>
1832
1833         Fix conversion behaviour when the input is invalid.
1834         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
1835         mark occurring in first pass of indirect conversion.
1836         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
1837         input.
1838         Found by clang's static analyzer.
1839
1840 2009-09-05  Bruno Haible  <bruno@clisp.org>
1841
1842         * tests/test-striconveh.c (main): Test indirect conversion on platforms
1843         where direct conversion is possible.
1844
1845 2009-09-04  Eric Blake  <ebb9@byu.net>
1846
1847         openat: fail with ENOENT on empty name
1848         * lib/openat-proc.c (openat_proc_name): Special-case the empty
1849         buffer.
1850
1851         link-follow: fix logic bug in prior patch
1852         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
1853         reversed sense of yes and no in prior patch.  Avoid confusing
1854         compilation failure with desired semantics.
1855
1856         link-follow: accomodate mingw and cross-compilation
1857         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
1858         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
1859         cross-compilation results to -1, to make linkat easier to
1860         implement when cross-compiling.  Trivially support mingw.
1861         * modules/link-follow (configure.ac): Call new name.
1862         * NEWS: Mention this.
1863
1864 2009-09-03  Eric Blake  <ebb9@byu.net>
1865
1866         faccessat: compile replacement
1867         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
1868         needed.
1869
1870         fts: fix compilation error
1871         * lib/fts.c (includes): Re-add "openat.h", for
1872         openat_needs_fchdir.
1873
1874         faccessat: new module
1875         * modules/faccessat: New file.
1876         * lib/faccessat.c: Likewise.
1877         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
1878         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
1879         * modules/unistd (Makefile.am): Use it.
1880         * lib/unistd.in.h (faccessat): Declare it.
1881         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
1882         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
1883         * MODULES.html.sh (File system functions): Mention it.
1884         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
1885         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
1886
1887         euidaccess: prefer POSIX over non-standard implementation
1888         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
1889         * lib/euidaccess.c (euidaccess): Use it if available.
1890
1891         openat: make template easier to use
1892         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
1893         AT_FUNC_F2 to be undefined.
1894         (VALIDATE_FLAG): New macro; use it to reject bad flags.
1895         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
1896         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
1897         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
1898         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
1899         Likewise.
1900         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
1901         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
1902         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
1903         Likewise.
1904
1905         openat: declare in POSIX headers
1906         * NEWS: Mention this.
1907         * modules/openat (configure.ac): Declare witnesses.
1908         (Depends-on): Add fcntl-h, sys_stat, unistd.
1909         (Include): Mention correct headers.
1910         * modules/fcntl-h (Depends-on): Add link-warning.
1911         (Files): Add openat.m4.
1912         (Makefile.am): Substitute witnesses.
1913         * modules/sys_stat (Files, Makefile.am): Likewise.
1914         * modules/unistd (Files, Makefile.am): Likewise.
1915         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
1916         (gl_OPENAT_DEFAULTS): New macro.
1917         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
1918         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
1919         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
1920         (SYS_STAT_H): Remove unused variable.
1921         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
1922         * lib/fcntl--.h (includes): Remove unneeded header.
1923         * lib/openat-safer.c (includes): Likewise.
1924         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
1925         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
1926         appropriate headers.
1927         (__OPENAT_PREFIX): Delete.
1928         * lib/fcntl.in.h (openat): Provide declaration.
1929         (AT_FDCWD): Fix Solaris bug.
1930         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
1931         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
1932         * lib/fchmodat.c (includes):  Adjust to find declaration.
1933         * lib/fchownat.c (includes): Likewise.
1934         * lib/mkdirat.c (includes): Likewise.
1935         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
1936         still visible.
1937
1938 2009-09-02  Eric Blake  <ebb9@byu.net>
1939
1940         errno: use consistently
1941         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
1942         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
1943         * lib/canonicalize.c (ELOOP): Likewise.
1944         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
1945         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
1946         * lib/lchown.c (EOPNOTSUPP): Likewise.
1947         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
1948         * lib/savewd.c (ESTALE): Likewise.
1949         * lib/settime.c (ENOSYS): Likewise.
1950         * lib/utimens.c (ENOSYS): Likewise.
1951         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
1952         * lib/chdir-safer.c (ELOOP): Likewise.
1953         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
1954         * modules/c-stack (Depends-on): Add errno.
1955         * modules/canonicalize (Depends-on): Likewise.
1956         * modules/chdir-safer (Depends-on): Likewise.
1957         * modules/fdopendir (Depends-on): Likewise.
1958         * modules/inet_ntop (Depends-on): Likewise.
1959         * modules/inet_pton (Depends-on): Likewise.
1960         * modules/lchown (Depends-on): Likewise.
1961         * modules/openat (Depends-on): Likewise.
1962         * modules/savewd (Depends-on): Likewise.
1963         * modules/settime (Depends-on): Likewise.
1964         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
1965
1966         fts: avoid leaking fds
1967         * modules/fts (Depends-on): Add cloexec.
1968         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
1969         flag.
1970
1971         fts: make directory fds more robust
1972         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
1973         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
1974
1975         backupfile, chdir-long, fts, savedir: make safer
1976         * lib/backupfile.c (includes): Use "dirent--.h", since
1977         numbered_backup can write to stderr during readdir.
1978         * lib/savedir.c (includes): Likewise.
1979         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
1980         emulation can write to stderr on failure.
1981         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
1982         * lib/getcwd.c: Document why opendir_safer is unused.
1983         * lib/glob.c: Likewise.
1984         * lib/scandir.c: Likewise.
1985         * lib/openat-proc.c: Likewise, for open_safer.
1986         * modules/backupfile (Depends-on): Add dirent-safer.
1987         * modules/savedir (Depends-on): Likewise.
1988         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
1989         * modules/chdir-long (Depends-on): Add openat-safer.
1990
1991         openat-safer: new module
1992         * modules/openat-safer: New file.
1993         * lib/openat-safer.c: Likewise.
1994         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
1995         * lib/fcntl-safer.h (openat_safer): Declare.
1996         * lib/fcntl--.h (openat): Override.
1997         * MODULES.html.sh (File descriptor based I/O): Mention it.
1998         * lib/openat.h: Add double-inclusion guards.
1999         * lib/openat.c (includes): Only include "fcntl-safer.h", not
2000         "fcntl--.h", so we can implement openat.
2001         * modules/openat-safer-tests: New test.
2002         * tests/test-openat-safer.c: New file.
2003
2004         dirent-safer: new module
2005         * modules/dirent-safer: New file.
2006         * lib/dirent--.h: Likewise.
2007         * lib/dirent-safer.h: Likewise.
2008         * lib/opendir-safer.c: Likewise.
2009         * m4/dirent-safer.m4: Likewise.
2010         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
2011         * modules/dirent-safer-tests: New test.
2012         * tests/test-dirent-safer.c: New file.
2013         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
2014
2015         fdopendir: optimize on mingw
2016         * lib/unistd.in.h (_gl_directory_name): New prototype.
2017         * lib/fchdir.c (_gl_directory_name): Implement it.
2018         (fchdir): Use it to simplify implementation.
2019         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
2020         fchdir, when available, to avoid calling [f]chdir().
2021
2022         fdopendir: split into its own module
2023         * lib/openat.c (fdopendir): Move...
2024         * lib/fdopendir.c: ...into new file.
2025         * modules/fdopendir: New module.
2026         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
2027         * modules/openat (Depends-on): Add fdopendir.
2028         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
2029         fdopendir here.
2030         * modules/savedir (Depends-on): Only need fdopendir, not full
2031         openat.
2032         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
2033         * lib/openat.h (fdopendir): Drop prototype.
2034         * lib/dirent.in.h (fdopendir): Provide prototype.
2035         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
2036         * modules/dirent (Makefile.am): Substitute them.
2037         * MODULES.html.sh (File system functions): Mention it.
2038         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
2039         * modules/fdopendir-tests: New file.
2040         * tests/test-fdopendir.c: Likewise.
2041
2042         fchdir: use more consistent macro convention
2043         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
2044         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
2045         REPLACE_FCHDIR, rather than relying on config.h macros.
2046         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
2047         inside a single make-time REPLACE_FCHDIR block, rather than using
2048         the config.h FCHDIR_REPLACEMENT.
2049         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
2050         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
2051         Manage fstat replacement.
2052         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
2053         REPLACE_FCHDIR.
2054         * modules/sys_stat (Files): Add m4/unistd_h.m4.
2055         (Makefile.am): Substitute REPLACE_FCHDIR.
2056         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
2057         FCHDIR_REPLACEMENT.
2058         * lib/dup-safer.c (dup_safer): Likewise.
2059         * lib/dup2.c (rpl_dup2): Likewise.
2060         * lib/dup3.c (rpl_dup3): Likewise.
2061         * lib/open.c (rpl_open): Likewise.
2062
2063         fchdir: simplify error handling, and support dup3
2064         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
2065         stdbool, malloc-posix, realloc-posix.
2066         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
2067         (ensure_dirs_slot): Return false on allocation failure.
2068         (rpl_dup2): Delete.
2069         (_gl_register_dup): New function.
2070         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
2071         (_gl_register_fd): Close fd on allocation failure.
2072         * lib/fcntl.in.h (_gl_register_fd): Update signature.
2073         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
2074         prototype.
2075         (rpl_dup2_fchdir): Delete prototype.
2076         * lib/open.c (open): Update caller.
2077         * lib/dup2.c (dup2): Track fchdir metadata.
2078         * lib/dup3.c (dup3): Likewise.
2079         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
2080         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
2081
2082 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2083
2084         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
2085         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
2086         don't pass arguments to AC_OUTPUT.
2087
2088 2009-09-02  Bruno Haible  <bruno@clisp.org>
2089
2090         * modules/mkdtemp (License): Relicense under LGPLv2+.
2091         Reported by Paolo Bonzini.
2092
2093 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2094
2095         Replace uses of obsolete autoconf macros in Jim's modules.
2096         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
2097         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
2098         can evoke a warning from autoconf when run with -Wobsolete
2099         enabled.  They were declared obsolete for good reasons (see
2100         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
2101         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
2102         should not continue using the deprecated macros.
2103         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
2104         obsolete Autoconf macros with modern counterparts.
2105         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
2106         * m4/dos.m4 (gl_AC_DOS): Likewise.
2107         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
2108         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
2109         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
2110         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
2111         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
2112         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
2113         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
2114         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
2115         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
2116         Likewise.
2117         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
2118         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
2119         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
2120         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
2121         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
2122         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
2123
2124 2009-09-01  Eric Blake  <ebb9@byu.net>
2125
2126         fchdir: fix off-by-one bug in previous patch
2127         * lib/fchdir.c (rpl_fstat): Use correct bounds.
2128         (_gl_unregister_fd): Delete useless if.
2129
2130 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
2131
2132         maint.mk: sort the list of syntax-check rules
2133         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
2134         easier to get a sense of progress when the rules are run sequentially
2135         and take a long time.
2136
2137 2009-09-01  Simon Josefsson  <simon@josefsson.org>
2138
2139         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
2140         * modules/netinet_in: Likewise.
2141         * modules/sys_file: Likewise.
2142         * modules/sys_ioctl: Likewise.
2143         * modules/sys_select: Likewise.
2144         * modules/sys_socket: Likewise.
2145         * modules/sys_stat: Likewise.
2146         * modules/sys_time: Likewise.
2147         * modules/sys_times: Likewise.
2148         * modules/sys_utsname: Likewise.
2149         * modules/sys_wait: Likewise.
2150
2151 2009-09-01  Jim Meyering  <meyering@redhat.com>
2152
2153         fts: help ensure that return values are not ignored
2154         * lib/fts_.h (__GNUC_PREREQ): Define.
2155         (__attribute_warn_unused_result__): Define.
2156         (fts_children, fts_close, fts_open, fts_read): Declare with
2157         __attribute_warn_unused_result__.
2158
2159         fts: fts_close now fails also when closing a dir file descriptor fails
2160         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
2161         and propagate to caller, along with errno.
2162
2163         announce-gen: correct formatting in --help output
2164         * build-aux/announce-gen (usage): Move the one-line description in
2165         --help output "up", to where it belongs, just after Usage:.
2166
2167 2009-08-31  Eric Blake  <ebb9@byu.net>
2168
2169         fchdir: port to mingw
2170         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
2171         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
2172         opened, then use a substitute.
2173         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
2174         replacement.
2175         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
2176         (_gl_register_fd): No need to check stat if open already filters
2177         all directories.
2178         (fchdir): Fix error condition to match POSIX.
2179         * modules/fchdir (Depends-on): Add sys_stat.
2180         * doc/posix-functions/open.texi (open): Document the limitation.
2181         * modules/fchdir-tests: New file.
2182         * tests/test-fchdir.c: Likewise.
2183
2184         canonicalize: allow cross-testing from cygwin to mingw
2185         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
2186         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
2187         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
2188         Likewise.
2189         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
2190         target does not support symlinks.
2191         * tests/test-canonicalize-lgpl.sh: Likewise.
2192
2193         chown: avoid compilation warning on mingw
2194         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
2195         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
2196         mingw.
2197         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
2198         * modules/chown (Depends-on): Add errno.
2199
2200 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
2201
2202         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
2203         command.
2204
2205 2009-08-31  Jim Meyering  <meyering@redhat.com>
2206
2207         canonicalize: remove useless initialization
2208         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
2209         initialization of local, "end".
2210
2211 2009-08-30  Bruno Haible  <bruno@clisp.org>
2212
2213         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
2214         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
2215         ENOSYS.
2216
2217 2009-08-30  Bruno Haible  <bruno@clisp.org>
2218
2219         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
2220         /usr/xpg4/bin/tr when it exists.
2221         * tests/test-pipe-filter-gi1.sh: Likewise.
2222
2223 2009-08-30  Bruno Haible  <bruno@clisp.org>
2224
2225         Work around deficient /usr/bin/id program on Solaris.
2226         * tests/test-file-has-acl.sh (ID): New variable.
2227         * tests/test-set-mode-acl.sh (ID): Likewise.
2228         * tests/test-copy-acl.sh (ID): Likewise.
2229         * tests/test-copy-file.sh (ID): Likewise.
2230
2231 2009-08-30  Bruno Haible  <bruno@clisp.org>
2232
2233         New module 'xstriconveh'.
2234         * lib/xstriconveh.h: New file.
2235         * lib/xstriconveh.c: New file.
2236         * modules/xstriconveh: New file.
2237
2238 2009-08-30  Bruno Haible  <bruno@clisp.org>
2239
2240         Make it easier to use mem_cd_iconveh.
2241         * lib/striconveh.h (iconveh_t): New type.
2242         (iconveh_open, iconveh_close): New declarations.
2243         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
2244         with a single 'const iconveh_t *' argument.
2245         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
2246         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
2247         with a single 'const iconveh_t *' argument.
2248         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
2249         * tests/test-striconveh.c (main): Update.
2250         * NEWS: Mention the change.
2251
2252 2009-08-30  Bruno Haible  <bruno@clisp.org>
2253
2254         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
2255         problem.
2256
2257 2009-08-30  Bruno Haible  <bruno@clisp.org>
2258
2259         Work around iconv_open problem on Solaris.
2260         * lib/iconv_open-solaris.gperf: New file.
2261         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
2262         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
2263         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
2264         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
2265         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
2266         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
2267
2268 2009-08-29  Jim Meyering  <meyering@redhat.com>
2269
2270         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
2271         * top/maint.mk (cvs-check): Remove target; it was just an alias
2272         to the better-named vc-diff-check.
2273         (maintainer-distcheck): Remove rule.  It was used only from
2274         the (alpha/beta/major) target, and all of its commands but one
2275         were coreutils-specific.
2276         (vc-dist): Remove rule.
2277         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
2278         Run vc-diff-check, not vc-dist.
2279         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
2280
2281 2009-08-27  Bruno Haible  <bruno@clisp.org>
2282
2283         * tests/test-bitrotate.c (main): Remove test that uses a shift count
2284         of 0.
2285
2286 2009-08-27  Bruno Haible  <bruno@clisp.org>
2287
2288         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
2289         compilers.
2290         * doc/func.texi: Document the SunPRO C bug.
2291
2292 2009-08-27  Bruno Haible  <bruno@clisp.org>
2293
2294         Fix link error on Solaris.
2295         * tests/test-parse-duration.c (xstrdup): Remove function.
2296
2297 2009-08-26  Pádraig Brady  <P@draigbrady.com>
2298
2299         ignore-value: handle pointer types, too
2300         * lib/ignore-value.h (__attribute__): Remove definition.
2301         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
2302         of a more concise and more-often effective "(void) i" statement.
2303         (ignore_ptr): New function to suppress warnings from functions that
2304         return pointers, and to make it explicit that one function doesn't
2305         handle all cases.
2306
2307 2009-08-25  Bruno Haible  <bruno@clisp.org>
2308
2309         dup2: work around a Linux bug.
2310         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
2311         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
2312         * doc/posix-functions/dup2.texi: Mention the Linux bug.
2313         Reported by Simon Josefsson.
2314
2315 2009-08-25  Jim Meyering  <meyering@redhat.com>
2316
2317         libguestfs uses gnulib
2318         * users.txt: Add libguestfs.
2319
2320 2009-08-24  Eric Blake  <ebb9@byu.net>
2321
2322         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
2323         * lib/pipe2.c (includes): Add binary-io.h.
2324         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
2325
2326 2009-08-24  Bruno Haible  <bruno@clisp.org>
2327
2328         Tolerate declared but missing accept4 syscall.
2329         * lib/accept4.c (accept4): Invoke original accept4 function first, if
2330         available.
2331         * lib/sys_socket.in.h (accept4): If the function is already present,
2332         override it.
2333         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
2334         * modules/accept4 (Makefile.am): Compile accept4.c always.
2335         Reported by Paolo Bonzini and Eric Blake.
2336
2337 2009-08-23  Bruno Haible  <bruno@clisp.org>
2338
2339         New module 'accept4'.
2340         * lib/sys_socket.in.h (accept4): New declaration.
2341         * lib/accept4.c: New file.
2342         * m4/accept4.m4: New file.
2343         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
2344         GNULIB_ACCEPT4, HAVE_ACCEPT4.
2345         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
2346         HAVE_ACCEPT4.
2347         * modules/accept4: New file.
2348         * doc/glibc-functions/accept4.texi: Mention the new module.
2349
2350 2009-08-24  Jim Meyering  <meyering@redhat.com>
2351
2352         progname: also set global program_invocation_name, when possible
2353         Before this change, a libtool-enabled program that calls glibc's
2354         error function would report the program name as
2355         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
2356         * modules/progname (configure.ac): Check for a declaration of
2357         program_invocation_name.
2358         * lib/progname.c:  Include <errno.h>.
2359         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
2360         Set program_invocation_name.
2361
2362 2009-08-23  Bruno Haible  <bruno@clisp.org>
2363
2364         * lib/dup3.c: Include <string.h>.
2365
2366 2009-08-23  Bruno Haible  <bruno@clisp.org>
2367
2368         * lib/dup3.c (dup3): Test only once whether the system actually exists.
2369         * lib/pipe2.c (pipe2): Likewise.
2370         Suggested by Eric Blake.
2371
2372 2009-08-23  Bruno Haible  <bruno@clisp.org>
2373
2374         Tolerate declared but missing dup3 syscall.
2375         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
2376         * lib/unistd.in.h (dup3): If the function is already present,
2377         override it.
2378         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
2379         * modules/dup3 (Makefile.am): Compile dup3.c always.
2380         Reported by Paolo Bonzini.
2381
2382 2009-08-23  Bruno Haible  <bruno@clisp.org>
2383
2384         Tolerate declared but missing pipe2 syscall.
2385         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
2386         available.
2387         * lib/unistd.in.h (pipe2): If the function is already present,
2388         override it.
2389         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
2390         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
2391         Reported by Paolo Bonzini.
2392
2393 2009-08-23  Bruno Haible  <bruno@clisp.org>
2394
2395         * lib/pipe2.c (pipe2): Move #ifs inside function.
2396
2397 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
2398
2399         quotearg: document limitations of quote_these_too
2400         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
2401         those limitations are created.
2402         * lib/quotearg.h (set_char_quoting): Document that digits and
2403         letters that are special after backslash are not permitted.
2404         (quotearg_char): Cross-reference set_char_quoting documentation.
2405
2406 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
2407
2408         quotearg: implement custom_quoting_style
2409         * lib/quotearg.c: (struct quoting_options): Add left_quote and
2410         right_quote fields.
2411         (set_custom_quoting): New public function.
2412         (quotearg_buffer_restyled): Add left_quote and right_quote
2413         arguments, handle them very much like locale quoting, and update
2414         all uses.
2415         (quotearg_n_custom): New public function.
2416         (quotearg_n_custom_mem): New public function.
2417         (quotearg_custom): New public function.
2418         (quotearg_custom_mem): New public function.
2419         * lib/quotearg.h: Prototype and document new public functions.
2420         (enum quoting_style): For escape_quoting_style and
2421         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
2422         ignored even though they're otherwise like c_quoting_style.
2423         Add custom_quoting_style member and document with comparison to
2424         clocale_quoting_style.
2425         * tests/test-quotearg.c (custom_quotes): New array.
2426         (custom_results): New array.
2427         (main): Extend to test custom quoting.
2428
2429 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
2430
2431         quotearg: fix right quote escaping when it's in quote_these_too
2432         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
2433         quote, be sure to prepend only one backslash.
2434         * tests/test-quotearg.c (use_quote_double_quotes): New function.
2435         (main): Test it.
2436
2437 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
2438
2439         quotearg-tests: test escaping of embedded locale quotes
2440         * tests/test-quotearg.c (struct result_strings): Add member for
2441         new input.
2442         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
2443         (inputs): Add new input.
2444         (results_g): Add expected results.
2445         (flag_results): Likewise.
2446         (locale_results): Likewise.
2447         (compare_strings): Check those.
2448
2449 2009-08-23  Bruno Haible  <bruno@clisp.org>
2450
2451         Tests for module 'dup3'.
2452         * modules/dup3-tests: New file.
2453         * tests/test-dup3.c: New file.
2454
2455         New module 'dup3'.
2456         * lib/unistd.in.h (dup3): New declaration.
2457         * lib/dup3.c: New file.
2458         * m4/dup3.m4: New file.
2459         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
2460         HAVE_DUP3.
2461         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
2462         * modules/dup3: New file.
2463         * doc/glibc-functions/dup3.texi: Mention the new module.
2464
2465 2009-08-23  Bruno Haible  <bruno@clisp.org>
2466
2467         Tweak the dup2 test.
2468         * tests/test-dup2.c (main): Create the test file empty. Verify that an
2469         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
2470         the test file is still empty. Fix argument order of lseek.
2471
2472 2009-08-23  Bruno Haible  <bruno@clisp.org>
2473
2474         Avoid test link errors when the modules getopt-gnu, gettext are used.
2475         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
2476         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
2477
2478 2009-08-23  Bruno Haible  <bruno@clisp.org>
2479
2480         Fix getdtablesize() on mingw.
2481         * lib/getdtablesize.c (getdtablesize): Implement differently.
2482         * lib/unistd.in.h (getdtablesize): Improve comment.
2483
2484 2009-08-23  Bruno Haible  <bruno@clisp.org>
2485
2486         New module 'mkostemp'.
2487         Based on Ulrich Drepper's 2007-08-10 change in glibc.
2488         * lib/stdlib.in.h (mksotemp): New declaration.
2489         * lib/mkostemp.c: New file, from glibc with modifications.
2490         * lib/tempname.h (GT_FILE): Remove outdated comment.
2491         (gen_tempname): Add flags argument.
2492         * lib/tempname.c (__GT_BIGFILE): Remove macro.
2493         (__GT_FILE): Map to 1.
2494         (small_open, large_open): Remove macros.
2495         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
2496         * lib/mkstemp.c (mkstemp): Update.
2497         * lib/mkdtemp.c (mkdtemp): Likewise.
2498         * m4/mkostemp.m4: New file.
2499         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
2500         HAVE_MKOSTEMP.
2501         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
2502         HAVE_MKOSTEMP.
2503         * modules/mkostemp: New file, based on modules/mkstemp.
2504         * doc/glibc-functions/mkostemp.texi: Mention the new module.
2505         * NEWS: Mention the change.
2506
2507 2009-08-23  Bruno Haible  <bruno@clisp.org>
2508
2509         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
2510         Reported by Eric Blake.
2511
2512 2009-08-23  Bruno Haible  <bruno@clisp.org>
2513
2514         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
2515         Reported by Eric Blake.
2516
2517 2009-08-23  Bruno Haible  <bruno@clisp.org>
2518
2519         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
2520         * modules/pipe2 (Depends-on): Likewise.
2521
2522 2009-08-23  Eric Blake  <ebb9@byu.net>
2523
2524         fcntl-h: add O_TTY_INIT support
2525         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
2526         * tests/test-fcntl-h.c (o): Test it.
2527         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
2528
2529         fcntl-h: rename from fcntl, in preparation for fcntl(2)
2530         * modules/fcntl: Move <fcntl.h> header replacement...
2531         * modules/fcntl-h: ...to new name, so as not to collide with
2532         like-named function.
2533         * tests/test-fcntl.c: Rename...
2534         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
2535         * modules/fcntl-tests: Rename...
2536         * modules/fcntl-h-tests: ...to this.  Update test file name.
2537         * modules/chdir-long (Depends-on): Update clients.
2538         * modules/chdir-safer (Depends-on): Likewise.
2539         * modules/fcntl-safer (Depends-on): Likewise.
2540         * modules/fts (Depends-on): Likewise.
2541         * modules/mkancesdirs (Depends-on): Likewise.
2542         * modules/mkdir-p (Depends-on): Likewise.
2543         * modules/open (Depends-on): Likewise.
2544         * modules/savewd (Depends-on): Likewise.
2545         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
2546         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
2547
2548 2009-08-22  Bruno Haible  <bruno@clisp.org>
2549
2550         * modules/binary-io (License): Relicense under LGPL.
2551         * modules/pipe2 (License): Likewise.
2552
2553 2009-08-22  Bruno Haible  <bruno@clisp.org>
2554
2555         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
2556         return value.
2557         * lib/pipe-filter-gi.c (filter_init): Likewise.
2558         Reported by Eric Blake.
2559
2560 2009-08-22  Bruno Haible  <bruno@clisp.org>
2561
2562         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
2563         * modules/pipe (Depends-on): Add pipe2.
2564
2565 2009-08-22  Bruno Haible  <bruno@clisp.org>
2566
2567         Tests for module 'pipe2'.
2568         * modules/pipe2-tests: New file.
2569         * tests/test-pipe2.c: New file.
2570
2571         New module 'pipe2'.
2572         * lib/unistd.in.h (pipe2): New declaration.
2573         * lib/pipe2.c: New file.
2574         * m4/pipe2.m4: New file.
2575         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
2576         HAVE_PIPE2.
2577         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
2578         * modules/pipe2: New file.
2579         * doc/glibc-functions/pipe2.texi: Mention the new module.
2580
2581 2009-08-22  Bruno Haible  <bruno@clisp.org>
2582
2583         Reference some new glibc functions.
2584         * doc/glibc-functions/accept4.texi: New file.
2585         * doc/glibc-functions/dup3.texi: New file.
2586         * doc/glibc-functions/mkostemp.texi: New file.
2587         * doc/glibc-functions/pipe2.texi: New file.
2588         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
2589         (Glibc sys/socket.h): Refer to accept4.
2590         (Glibc unistd.h): Refer to dup3, pipe2.
2591         Reported by Eric Blake.
2592
2593 2009-08-22  Jim Meyering  <meyering@redhat.com>
2594             Bruno Haible  <bruno@clisp.org>
2595
2596         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
2597         This makes it so packages using automake-1.11's silent-rules option
2598         can print e.g., a single "GEN    configmake.h" line, rather than
2599         the 30+ statements that perform the job.  If you want to see the
2600         actual commands, you can still run "make V=1".
2601         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
2602         so that make output is abbreviated when those variables are defined
2603         appropriately.
2604         * modules/argz: Likewise.
2605         * modules/arpa_inet: Likewise.
2606         * modules/byteswap: Likewise.
2607         * modules/configmake: Likewise.
2608         * modules/dirent: Likewise.
2609         * modules/errno: Likewise.
2610         * modules/fcntl: Likewise.
2611         * modules/float: Likewise.
2612         * modules/fnmatch: Likewise.
2613         * modules/getopt-posix: Likewise.
2614         * modules/glob: Likewise.
2615         * modules/iconv_open: Likewise.
2616         * modules/inttypes: Likewise.
2617         * modules/localcharset: Likewise.
2618         * modules/locale: Likewise.
2619         * modules/math: Likewise.
2620         * modules/netdb: Likewise.
2621         * modules/netinet_in: Likewise.
2622         * modules/poll: Likewise.
2623         * modules/posix_spawnp-tests: Likewise.
2624         * modules/sched: Likewise.
2625         * modules/search: Likewise.
2626         * modules/selinux-h: Likewise.
2627         * modules/signal: Likewise.
2628         * modules/spawn: Likewise.
2629         * modules/stdarg: Likewise.
2630         * modules/stdbool: Likewise.
2631         * modules/stddef: Likewise.
2632         * modules/stdint: Likewise.
2633         * modules/stdio: Likewise.
2634         * modules/stdlib: Likewise.
2635         * modules/string: Likewise.
2636         * modules/strings: Likewise.
2637         * modules/sys_file: Likewise.
2638         * modules/sys_ioctl: Likewise.
2639         * modules/sys_select: Likewise.
2640         * modules/sys_socket: Likewise.
2641         * modules/sys_stat: Likewise.
2642         * modules/sys_time: Likewise.
2643         * modules/sys_times: Likewise.
2644         * modules/sys_utsname: Likewise.
2645         * modules/sys_wait: Likewise.
2646         * modules/sysexits: Likewise.
2647         * modules/time: Likewise.
2648         * modules/unistd: Likewise.
2649         * modules/wchar: Likewise.
2650         * modules/wctype: Likewise.
2651
2652 2009-08-22  Jim Meyering  <meyering@redhat.com>
2653
2654         announce-gen: detect write failure
2655         * build-aux/announce-gen: Add Coda at end.
2656         Remove equivalent-but-more-verbose block at top.
2657
2658 2009-08-19  Akim Demaille  <demaille@gostai.com>
2659
2660         bootstrap: --help to stdout.
2661         * bootstrap (usage): Don't send --help to stderr.
2662         Use a here doc instead of a long string.
2663
2664 2009-08-21  Eric Blake  <ebb9@byu.net>
2665
2666         test-popen-safer: split from test-popen
2667         * tests/test-popen.c (main): Move...
2668         * tests/test-popen.h: ...into new file.
2669         * tests/test-popen-safer2.c: New file.
2670         * modules/popen-tests (Files): Add test-popen.h.
2671         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
2672         Suggested by Bruno Haible.
2673
2674         test-fcntl-safer: split from test-open
2675         * tests/test-open.c (main): Move...
2676         * tests/test-open.h: ...into new file.
2677         * tests/test-fcntl-safer.c: New file.
2678         * modules/open-tests (Files): Add test-open.h.
2679         * modules/fcntl-safer-tests: New file.
2680         Suggested by Bruno Haible.
2681
2682         test-fopen-safer: split from test-fopen
2683         * tests/test-fopen.c (main): Move...
2684         * tests/test-fopen.h: ...into new file.
2685         * tests/test-fopen-safer.c: New file.
2686         * modules/fopen-tests (Files): Add test-fopen.h.
2687         * modules/fopen-safer-tests: New file.
2688         Suggested by Bruno Haible.
2689
2690 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
2691
2692         popen-safer: test O_CLOEXEC at run-time.
2693         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
2694
2695 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
2696
2697         fcntl: move more flags to the header
2698         * lib/cloexec.c: Do not define FD_CLOEXEC here.
2699         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
2700         * lib/fcntl.in.h: Do both things here.
2701
2702 2009-08-21  Jim Meyering  <meyering@redhat.com>
2703
2704         consistently remove $@-t before redirecting to it
2705         * modules/argz: Remove $@-t and $@ before redirecting to the former.
2706         * modules/alloca-opt: Likewise.
2707         * modules/byteswap: Likewise.
2708         * modules/fnmatch: Likewise.
2709         * modules/getopt-posix: Likewise.
2710         * modules/glob: Likewise.
2711         * modules/poll: Likewise.
2712         * modules/posix_spawnp-tests: Likewise.
2713         * modules/sys_socket: Likewise.
2714         * modules/sysexits: Likewise.
2715
2716 2009-08-21  Eric Blake  <ebb9@byu.net>
2717
2718         popen: simplify access to original popen
2719         * lib/popen.c (rpl_popen): No need to worry about popen being a
2720         macro.
2721         Reported by Bruno Haible.
2722
2723 2009-08-20  Eric Blake  <ebb9@byu.net>
2724
2725         build: avoid some compiler warnings
2726         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
2727         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
2728         type.
2729         (new_exclude_segment, excluded_file_pattern_p)
2730         (excluded_file_name_p): Reduce scope.
2731         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
2732         old-style declaration.
2733
2734 2009-08-20  Simon Josefsson  <simon@josefsson.org>
2735
2736         * tests/test-exclude1.sh: Handle Windows EOL.
2737         * tests/test-exclude2.sh: Likewise.
2738         * tests/test-exclude3.sh: Likewise.
2739         * tests/test-exclude4.sh: Likewise.
2740         * tests/test-exclude5.sh: Likewise.
2741         * tests/test-exclude6.sh: Likewise.
2742         * tests/test-exclude7.sh: Likewise.
2743
2744 2009-08-19  Akim Demaille  <demaille@gostai.com>
2745
2746         bootstrap: find sha1sum when named gsha1sum.
2747         * bootstrap (find_tool): New.
2748         ($SHA1SUM): New.
2749         Use it.
2750
2751 2009-08-20  Jim Meyering  <meyering@redhat.com>
2752
2753         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
2754         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
2755         expression that converts "." in a file name to "\." in the resulting
2756         regexp.  Start with a dummy statement, so that prior shell variable
2757         definitions are expanded portably.  Reported by Simon Josefsson.
2758
2759 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
2760
2761         Fix polling for writeability of a screen buffer.
2762         * lib/poll.c: Distinguish input and screen buffers for the
2763         Win32 implementation.
2764         * lib/select.c: Likewise.
2765
2766 2009-08-19  Eric Blake  <ebb9@byu.net>
2767
2768         popen-safer: prevent popen from clobbering std descriptors
2769         * modules/popen-safer: New file.
2770         * lib/popen-safer.c: Likewise.
2771         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
2772         * lib/stdio--.h (popen): Provide override.
2773         * lib/stdio-safer.h (popen_safer): Provide declaration.
2774         * tests/test-popen.c (includes): Partially test this.
2775         * modules/popen-safer-tests: New file, for more tests.
2776         * tests/test-popen-safer.c: Likewise.
2777         * MODULES.html.sh (file stream based Input/Output): Mention it.
2778
2779         tests: test some of the *-safer modules
2780         * modules/fopen-safer (Depends-on): Add fopen.
2781         * modules/fcntl-safer (Depends-on): Add fcntl.
2782         * modules/stdlib-safer (Depends-on): Add stdlib.
2783         (configure.ac): Set indicator.
2784         * modules/unistd-safer (configure.ac): Likewise.
2785         * modules/tmpfile-safer (configure.ac): Likewise.
2786         (Depends-on): Add tmpfile.
2787         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
2788         active.
2789         * tests/test-fopen.c (includes): Test safer versions when they are
2790         in use.
2791         * tests/test-open.c (includes): Likewise.
2792
2793         popen: fix cygwin 1.5 bug when stdin closed
2794         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
2795         * modules/popen: New file.
2796         * modules/popen-tests: Likewise.
2797         * tests/test-popen.c: Likewise.
2798         * m4/popen.m4: Likewise.
2799         * lib/popen.c: Likewise.
2800         * lib/stdio.in.h (popen): New declaration.
2801         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
2802         * modules/stdio (Makefile.am): Likewise.
2803         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
2804
2805 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
2806
2807         maint.mk: give full control over update-copyright exclusions
2808         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
2809         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
2810         (update-copyright): Don't force inclusion of top-level
2811         ChangeLog.  Don't force exclusion of all COPYING files, but make
2812         them the default exclusion instead.
2813
2814 2009-08-16  Bruno Haible  <bruno@clisp.org>
2815
2816         Fix test failures on Solaris 10.
2817         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
2818         tests when Solaris iconv() is used.
2819         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
2820         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
2821         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
2822         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
2823         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
2824
2825 2009-08-16  Bruno Haible  <bruno@clisp.org>
2826
2827         Fix test failures on Solaris 10.
2828         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
2829         'tr' program and pass it as first argument.
2830         * tests/test-pipe-filter-gi1.sh: Likewise.
2831         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
2832         program as first argument.
2833         * tests/test-pipe-filter-gi1.c (main): Likewise.
2834
2835 2009-08-16  Eric Blake  <ebb9@byu.net>
2836
2837         fpurge: fix previous commits
2838         * modules/fpurge (Makefile.am): Make replacement conditional,
2839         partially reverting 2007-04-29 change; missed in previous
2840         attempt.
2841         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
2842         is missing.
2843
2844 2009-08-16  Bruno Haible  <bruno@clisp.org>
2845
2846         Clarify fpurge's effect on the file position.
2847         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
2848         * tests/test-fpurge.c (main): Make a second pass for checking the file
2849         position.
2850
2851 2009-08-16  Bruno Haible  <bruno@clisp.org>
2852
2853         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
2854         declaration of fpurge is missing.
2855         * tests/test-fpurge.c (main): Check that the file has not more contents
2856         than expected. Close the file before removing it.
2857
2858 2009-08-15  Eric Blake  <ebb9@byu.net>
2859
2860         fpurge: don't wrap working cygwin implementation
2861         * lib/fpurge.c (fpurge): Fix comment typo.
2862         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
2863         1.7 to avoid replacement.
2864         * tests/test-fpurge.c (main): Enhance test.
2865
2866 2009-08-15  Eric Blake  <ebb9@byu.net>
2867         and Jim Meyering  <meyering@redhat.com>
2868
2869         test-update-copyright: skip if perl is insufficient
2870         * tests/test-update-copyright.sh: Failure to run maintainer tool
2871         should not cause testsuite failure on cygwin 1.5.
2872
2873 2009-08-14  Eric Blake  <ebb9@byu.net>
2874
2875         doc: mention more functions added in cygwin 1.7.0
2876         * doc/posix-headers/limits.texi (limits.h): Update for recent
2877         cygwin additions.
2878         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
2879         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
2880         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
2881         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
2882         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
2883
2884 2009-08-14  Eric Blake  <ebb9@byu.net>
2885
2886         maint.mk: simplify update-copyright rule
2887         * top/maint.mk (update-copyright-local): Delete, and document how
2888         to do it in cfg.mk instead.
2889         (update-copyright-exclude-regexp): Delete, and document how to do
2890         it in .x-update-copyright instead.
2891         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
2892         exclude ChangeLog.
2893
2894 2009-08-14  Bruno Haible  <bruno@clisp.org>
2895
2896         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
2897
2898 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
2899
2900         maint.mk: support update-copyright-env
2901         * top/maint.mk (update-copyright-env): Define place-holder.
2902         (update-copyright): Expand $(update-copyright-env) before
2903         invoking update-copyright.
2904
2905 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
2906
2907         update-copyright: implement forced reformatting
2908         * build-aux/update-copyright: Implement and document
2909         UPDATE_COPYRIGHT_FORCE.
2910         * tests/test-update-copyright.sh: Test it.
2911
2912 2009-08-14  Eric Blake  <ebb9@byu.net>
2913         and Bruno Haible  <bruno@clisp.org>
2914
2915         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
2916         * tests/test-locale.c: Revert previous patch related to NULL.
2917         * tests/test-stdio.c: Likewise.
2918         * tests/test-stdlib.c: Likewise.
2919         * tests/test-string.c: Likewise.
2920         * tests/test-unistd.c: Likewise.
2921         * modules/time-tests (Depends-on): Add verify.
2922         * modules/wchar-tests (Depends-on): Likewise.
2923         * tests/test-time.c: Test for NULL compliance.
2924         * tests/test-wchar.c: Likewise.
2925         * modules/locale (Depends-on): Add stddef.
2926         * modules/stdio (Depends-on): Likewise.
2927         * modules/stdlib (Depends-on): Likewise.
2928         * modules/string (Depends-on): Likewise.
2929         * modules/time (Depends-on): Likewise.
2930         * modules/unistd (Depends-on): Likewise.
2931         * modules/wchar (Depends-on): Likewise.
2932         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
2933         * lib/stdlib.in.h (includes): Likewise.
2934         * lib/string.in.h (includes): Likewise.
2935         * lib/time.in.h (includes): Likewise.
2936         * lib/unistd.in.h (includes): Likewise.
2937         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
2938         replaced.
2939         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
2940         * m4/stddef_h.m4: New file.
2941         * modules/stddef: Likewise.
2942         * lib/stddef.in.h: Likewise.
2943         * modules/stddef-tests: Likewise.
2944         * tests/test-stddef.c: Likewise.
2945         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
2946         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
2947         * doc/posix-headers/locale.texi (locale.h): Likewise.
2948         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
2949         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
2950         * doc/posix-headers/string.texi (string.h): Likewise.
2951         * doc/posix-headers/time.texi (time.h): Likewise.
2952         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
2953         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
2954
2955 2009-08-14  Eric Blake  <ebb9@byu.net>
2956
2957         doc: improve git diff of texinfo files
2958         * .gitattributes: Add rule for *.texi files, with hint on how to
2959         use it.
2960         Copied from m4, and based on a report by Bruno Haible.
2961
2962 2009-08-14  Bruno Haible  <bruno@clisp.org>
2963
2964         Disable multithread support by default on Cygwin 1.5.x for real.
2965         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
2966
2967 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
2968
2969         update-copyright: much ado about intervals
2970         * build-aux/update-copyright: Implement and document
2971         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
2972         of copyright year intervals.
2973         Also, document UPDATE_COPYRIGHT_YEAR.
2974         * tests/test-update-copyright.sh: Test it.
2975
2976         update-copyright: convert 2-digit to 4-digit years
2977         * build-aux/update-copyright: Implement and document.
2978         * tests/test-update-copyright.sh: Update.
2979
2980 2009-08-14  Jim Meyering  <meyering@redhat.com>
2981
2982         test-exclude: avoid coreutils "make check" failure
2983         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
2984         just as in test-argmatch.c.
2985
2986 2009-08-13  Eric Blake  <ebb9@byu.net>
2987
2988         test-dup2: fix bad assumption
2989         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
2990         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
2991
2992         test-version-etc: fix CRLF portability issue
2993         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
2994         recognize \r.
2995         * tests/test-argp-version-etc-1.sh: Likewise.
2996
2997         getopt: update client modules
2998         * modules/argp (Depends-on): Use getopt-gnu.
2999         * modules/git-merge-changelog (Depends-on): Likewise.
3000         * modules/long-options (Depends-on): Likewise.
3001         * modules/xstrtol (Depends-on): Likewise.
3002
3003 2009-08-13  Simon Josefsson  <simon@josefsson.org>
3004
3005         * tests/test-version-etc.sh: Don't fail on different
3006         project/version.  Don't fail on CRLF differences.  Rewrite to use
3007         multiple -e instead of multiple sed forks, suggested by Eric Blake
3008         <ebb9@byu.net>.
3009         * tests/test-argp-version-etc-1.sh: Likewise.
3010
3011 2009-08-13  Simon Josefsson  <simon@josefsson.org>
3012
3013         * tests/test-version-etc.sh: Don't fail on different
3014         project/version.
3015
3016 2009-08-12  Bruno Haible  <bruno@clisp.org>
3017
3018         Tests for modules 'getopt-posix', 'getopt-gnu'.
3019         * modules/getopt-posix-tests: New file.
3020         * tests/test-getopt.c: New file.
3021         * tests/test-getopt.h: New file.
3022         * tests/test-getopt_long.h: New file.
3023
3024         New modules 'getopt-posix', 'getopt-gnu'.
3025         * modules/getopt-gnu: New file, renamed from modules/getopt.
3026         * modules/getopt-posix: New file.
3027         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
3028         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
3029         (gl_GETOPT): Remove macro.
3030         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
3031         Disable the test against BSD systems that declare optreset. Test
3032         against mingw bug. Test against lack of support of optional arguments
3033         on many platforms.
3034         * doc/glibc-headers/getopt.texi: Update module name and list of
3035         relevant platforms.
3036         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
3037         'getopt-gnu' and more portability problems.
3038         * NEWS: Mention the changes.
3039
3040 2009-08-12  Bruno Haible  <bruno@clisp.org>
3041
3042         Ensure that optarg etc. get declared by <unistd.h>.
3043         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
3044         AC_USE_SYSTEM_EXTENSIONS.
3045         * modules/getopt (Depends-on): Add 'extensions'.
3046
3047 2009-08-12  Bruno Haible  <bruno@clisp.org>
3048
3049         Avoid test link errors.
3050         * modules/pipe-filter-ii-tests (Makefile.am): Define
3051         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
3052         * modules/pipe-filter-gi-tests (Makefile.am): Define
3053         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
3054         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
3055
3056 2009-08-12  Bruno Haible  <bruno@clisp.org>
3057
3058         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
3059         gl_GETOPT_SUBSTITUTE before.
3060         (gl_GETOPT): Use it.
3061         * m4/argp.m4 (gl_ARGP): Update.
3062         Reported by Sergey Poznyakoff.
3063
3064         * m4/getopt.m4: Reorder macros.
3065         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
3066         (gl_GETOPT_SUBSTITUTE): Remove macro.
3067
3068 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
3069
3070         Minor improvement in gitlog-to-changelog
3071
3072         * build-aux/gitlog-to-changelog: New option `--format' makes
3073         output format string configurable.
3074
3075 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
3076
3077         Optimize exclude: use hash tables for non-wildcard patterns.
3078
3079         * lib/exclude.c: Include hash.h and mbuiter.h
3080         (struct exclude_pattern, exclude_segment): New data types.
3081         (struct exclude): Rewrite.
3082         (fnmatch_pattern_has_wildcards): New function.
3083         (new_exclude_segment, free_exclude_segment): New functions.
3084         (excluded_file_pattern_p, excluded_file_name_p): New functions.
3085         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
3086         * lib/exclude.h (is_fnmatch_pattern): New prototype.
3087         * modules/exclude: Depend on hash and mbuiter.
3088
3089         * modules/exclude-tests: New file.
3090         * tests/test-exclude.c: New file.
3091         * tests/test-exclude1.sh: New file.
3092         * tests/test-exclude2.sh: New file.
3093         * tests/test-exclude3.sh: New file.
3094         * tests/test-exclude4.sh: New file.
3095         * tests/test-exclude5.sh: New file.
3096         * tests/test-exclude6.sh: New file.
3097         * tests/test-exclude7.sh: New file.
3098
3099 2009-08-12  Bruno Haible  <bruno@clisp.org>
3100
3101         Ensure that getopt() gets declared by <unistd.h>.
3102         * lib/unistd.in.h: Conditionally include getopt.h.
3103         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
3104         Set GNULIB_UNISTD_H_GETOPT.
3105         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
3106         GNULIB_UNISTD_H_GETOPT.
3107         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
3108
3109 2009-08-12  Bruno Haible  <bruno@clisp.org>
3110
3111         Clarify logic.
3112         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
3113         gl_replace_getopt instead of GETOPT_H.
3114
3115 2009-08-12  Bruno Haible  <bruno@clisp.org>
3116
3117         * m4/getopt.m4: Add comments.
3118
3119 2009-08-12  Bruno Haible  <bruno@clisp.org>
3120
3121         Disable multithread support by default on Cygwin 1.5.x.
3122         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
3123         set gl_use_threads=no if not specified otherwise.
3124
3125 2009-08-11  Bruno Haible  <bruno@clisp.org>
3126
3127         Avoid compilation error on NetBSD 5.0.
3128         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
3129         * tests/test-stdio.c: Likewise.
3130         * tests/test-stdlib.c: Likewise.
3131         * tests/test-string.c: Likewise.
3132         * tests/test-unistd.c: Likewise.
3133         Reported by Greg Troxel <gdt@ir.bbn.com>
3134         at <https://savannah.gnu.org/support/?106973>.
3135
3136 2009-08-11  Bruno Haible  <bruno@clisp.org>
3137
3138         * modules/dup2-tests (Depends-on): Remove close.
3139
3140         Undo 2009-07-19 commit.
3141         * modules/acl-tests (Depends-on): Remove close.
3142         * modules/binary-io-tests (Depends-on): Likewise.
3143         * modules/closein-tests (Depends-on): Likewise.
3144         * modules/flock-tests (Depends-on): Likewise.
3145         * modules/fsync-tests (Depends-on): Likewise.
3146         * modules/lseek-tests (Depends-on): Likewise.
3147         * modules/pipe-tests (Depends-on): Likewise.
3148         * modules/posix_spawn-tests (Depends-on): Likewise.
3149         * modules/posix_spawnp-tests (Depends-on): Likewise.
3150         * modules/stat-time-tests (Depends-on): Likewise.
3151         * modules/yesno-tests (Depends-on): Likewise.
3152
3153 2009-08-10  Bruno Haible  <bruno@clisp.org>
3154
3155         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
3156
3157 2009-08-10  Bruno Haible  <bruno@clisp.org>
3158
3159         Fix a gcc warning.
3160         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
3161
3162 2009-08-10  Bruno Haible  <bruno@clisp.org>
3163
3164         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
3165         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
3166         not only the first time.
3167         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
3168         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
3169         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
3170         is 1, not only the the first time.
3171
3172 2009-08-10  Bruno Haible  <bruno@clisp.org>
3173
3174         Make it possible to use module 'gethostname' without module 'close'.
3175         * lib/unistd.in.h (close): Evoke a link error only if
3176         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
3177         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
3178         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
3179         * modules/unistd (Makefile.am): Substitute
3180         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
3181         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
3182         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
3183         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
3184         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
3185         * modules/sys_ioctl (Makefile.am): Substitute
3186         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
3187         * modules/socket (configure.ac): On native Windows, set
3188         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
3189         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
3190         Reported by Sam Steingold <sds@gnu.org>.
3191
3192 2009-08-10  Bruno Haible  <bruno@clisp.org>
3193
3194         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
3195         * modules/ioctl (configure.ac): Likewise.
3196
3197 2009-08-10  Bruno Haible  <bruno@clisp.org>
3198
3199         Avoid collision between gnulib wrapper and libintl wrapper.
3200         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
3201         already defined in intl/printf.c.
3202         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
3203         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
3204
3205 2009-08-09  Bruno Haible  <bruno@clisp.org>
3206
3207         Make <sys/select.h> really self-contained, also on Solaris 10.
3208         * lib/sys_select.in.h: Include <string.h>.
3209         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
3210         Solaris 10 problem.
3211         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
3212         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
3213         Reported by Jim Meyering.
3214
3215 2009-08-09  Bruno Haible  <bruno@clisp.org>
3216
3217         Avoid warnings from 'aclocal' that are due to a use of macro name
3218         AM_XGETTEXT_OPTION that is not defined in automake.
3219         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
3220         automake.
3221         * modules/error (configure.ac): Likewise.
3222         * modules/propername (configure.ac): Likewise.
3223         * modules/vasprintf (configure.ac): Likewise.
3224         * modules/verror (configure.ac): Likewise.
3225         * modules/xprintf (configure.ac): Likewise.
3226         * modules/xvasprintf (configure.ac): Likewise.
3227
3228 2009-08-08  Bruno Haible  <bruno@clisp.org>
3229
3230         Avoid compilation error in C++ mode.
3231         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
3232         Reported by Sam Steingold <sds@gnu.org>.
3233
3234 2009-08-08  Bruno Haible  <bruno@clisp.org>
3235
3236         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
3237         for the various Unix platforms.
3238         * doc/posix-headers/limits.texi: Update platforms list regarding
3239         HOST_NAME_MAX.
3240         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
3241
3242 2009-08-07  Jim Meyering  <meyering@redhat.com>
3243
3244         selinux-at: fix typo in a comment
3245         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
3246         Spotted by Paolo Bonzini.
3247
3248         selinux-at: remove redundant m4 code, add documentation
3249         * modules/selinux-at (configure.ac): Remove redundant code.
3250         LIB_SELINUX is already set via the dependent module, selinux-h.
3251         (Include): Add quotes around selinux-at.h.
3252         * lib/selinux-at.h: Add documentation.
3253         Reported by Bruno Haible in
3254         http://marc.info/?l=gnulib-bug&m=124958988300749
3255
3256 2009-08-07  Bruno Haible  <bruno@clisp.org>
3257
3258         Avoid link error on MacOS X 10.3 and 10.4.
3259         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
3260         on non-ELF systems.
3261         * lib/argp-pv.c (argp_program_version): Likewise.
3262         Reported by Simon Josefsson.
3263
3264 2009-08-07  Simon Josefsson  <simon@josefsson.org>
3265
3266         * tests/test-version-etc.sh: Use $EXEEXT.
3267
3268 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
3269
3270         update-copyright: update documentation to point to maint.mk
3271         * build-aux/update-copyright: Here.
3272
3273 2009-08-06  Jim Meyering  <meyering@redhat.com>
3274
3275         maint.mk: support update-copyright-local
3276         * top/maint.mk (update-copyright-local): Define place-holder.
3277         (update-copyright): Depend on $(update-copyright-local).
3278
3279 2009-08-06  Jim Meyering  <meyering@redhat.com>
3280
3281         selinux-at: new module
3282         Initially written for coreutils, this module will soon be
3283         used by findutils, too.
3284         * MODULES.html.sh [Misc]: Add selinux-at.
3285         * lib/selinux-at.h: New file, from coreutils.
3286         * lib/selinux-at.c: Likewise.
3287         * modules/selinux-at: Likewise.
3288         (License): Change from LGPL to GPL, since it depends
3289         on the GPL'd openat module.
3290
3291         doc: update README
3292         * README: Remove references to cogito.
3293         Remove cvs-repo-updating instructions from 2007.
3294         Don't imply that CVS is better if you have limited disk space.
3295
3296 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
3297
3298         update-copyright: support C-style comments
3299         * build-aux/update-copyright: Implement and document.
3300         * tests/test-update-copyright.sh: Test.
3301
3302 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
3303
3304         update-copyright: support omitted "(C)"
3305         * build-aux/update-copyright: Implement and document.  Also,
3306         allow variable whitespace before "(C)".
3307         * tests/test-update-copyright.sh: Test.
3308
3309 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
3310
3311         update-copyright: don't trip on non-FSF copyright statements
3312         * build-aux/update-copyright: Fix so that the first correctly
3313         formatted FSF copyright statement is recognized no matter what
3314         appears before it.  Update documentation.
3315         * tests/test-update-copyright.sh: Test that.
3316
3317 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
3318
3319         update-copyright: clean up code a little
3320         * build-aux/update-copyright: Append "_re" to the name of any
3321         variable holding a regular expression.
3322         Replace "old" and "new" with "stmt" in variable names.
3323         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
3324         handled correctly.
3325         Format code more consistently.
3326
3327 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
3328
3329         update-copyright-tests: improve portability
3330         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
3331         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
3332
3333 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
3334
3335         update-copyright: support @copyright{} and &copy;
3336         * build-aux/update-copyright: Implement and document.
3337         * tests/test-update-copyright.sh: Test.
3338
3339 2009-08-04  Jim Meyering  <meyering@redhat.com>
3340
3341         update-copyright-tests: correctly test EOL=\r\n handling
3342         * tests/test-update-copyright.sh: Put \r at the end of some lines
3343         for the dos-eol tests.  Based on a patch by Joel E. Denny.
3344
3345         maint.mk: make update-copyright exclusion list more configurable
3346         * top/maint.mk (update-copyright): Default to excluding COPYING,
3347         but allow an override, in case someone does want to update that file.
3348
3349         maint.mk: don't update copyright date in COPYING
3350         * top/maint.mk (update-copyright): Exclude COPYING.
3351
3352         maint.mk: add a copyright-updating rule
3353         * top/maint.mk (update-copyright): New rule.
3354         Derived from coreutils/Makefile.am.
3355
3356         update-copyright: rename some variables
3357         * build-aux/update-copyright: Rename a few variables for clarity.
3358         Tweak syntax.  List Joel E. Denny as coauthor.
3359
3360 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
3361
3362         update-copyright: fix bug for 2-digit last year and add tests
3363         * build-aux/update-copyright: Fix bug.
3364         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
3365         specified.
3366         * modules/update-copyright-tests: New
3367         * tests/test-update-copyright.sh: New.
3368
3369 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
3370
3371         update-copyright: handle leading tabs in line prefix
3372         * build-aux/update-copyright: Count leading tabs as 8 spaces
3373         when computing margin.  This helps with the formatting of
3374         ChangeLogs, for example.
3375         Fix documentation a little.
3376
3377 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
3378
3379         update-copyright: support EOL=\r\n
3380         * build-aux/update-copyright: Implement that.
3381
3382 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
3383
3384         update-copyright: automatically format copyright statements
3385         * build-aux/update-copyright: Implement that.
3386         Also, be a little more predictable and safer by always failing
3387         when the full copyright format is not perfectly recognized as an
3388         unbroken whole.  Discussed at
3389         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
3390         Rewrite documentation.
3391
3392 2009-08-03  Bruno Haible  <bruno@clisp.org>
3393
3394         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
3395
3396 2009-08-02  Bruno Haible  <bruno@clisp.org>
3397
3398         Tests for module 'uname'.
3399         * modules/uname-tests: New file.
3400         * tests/test-uname.c: New file.
3401
3402         New module 'uname'.
3403         * lib/uname.c: New file.
3404         * m4/uname.m4: New file.
3405         * modules/uname: New file.
3406         * doc/posix-functions/uname.texi: Mention the new module.
3407
3408 2009-08-02  Bruno Haible  <bruno@clisp.org>
3409
3410         Tests for module 'sys_utsname'.
3411         * modules/sys_utsname-tests: New file.
3412         * tests/test-sys_utsname.c: New file.
3413
3414         New module 'sys_utsname'.
3415         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
3416         * m4/sys_utsname_h.m4: New file.
3417         * modules/sys_utsname: New file.
3418         * doc/posix-headers/sys_utsname.texi: Mention the new module.
3419
3420 2009-08-02  Bruno Haible  <bruno@clisp.org>
3421
3422         Implicitly initialize the sockets library.
3423         * lib/gethostname.c: Include sockets.h.
3424         (rpl_gethostname): Invoke gl_sockets_startup.
3425         * lib/socket.c: Include sockets.h.
3426         (rpl_socket): Invoke gl_sockets_startup.
3427         * modules/gethostname (Depends-on): Add sockets.
3428         * modules/socket (Depends-on): Likewise.
3429         * tests/test-poll.c: Don't include sockets.h.
3430         (main): Don't invoke gl_sockets_startup.
3431         * tests/test-select.c: Don't include sockets.h.
3432         (main): Don't invoke gl_sockets_startup.
3433
3434 2009-08-02  Bruno Haible  <bruno@clisp.org>
3435
3436         Allow multiple calls to gl_sockets_startup.
3437         * lib/sockets.c (initialized_sockets_version): New variable.
3438         (gl_sockets_startup): Do nothing if already called for this or a higher
3439         version.
3440         (gl_sockets_cleanup): Reset initialized_sockets_version.
3441
3442 2009-08-03  Simon Josefsson  <simon@josefsson.org>
3443
3444         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
3445         different project/version.
3446
3447 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
3448             Bruno Haible  <bruno@clisp.org>
3449
3450         Tests for module 'pipe-filter-gi'.
3451         * modules/pipe-filter-gi-tests: New file.
3452         * tests/test-pipe-filter-gi1.sh: New file.
3453         * tests/test-pipe-filter-gi1.c: New file.
3454         * tests/test-pipe-filter-gi2.sh: New file.
3455         * tests/test-pipe-filter-gi2-main.c: New file.
3456         * tests/test-pipe-filter-gi2-child.c: New file.
3457
3458         New module 'pipe-filter-gi'.
3459         * lib/pipe-filter-gi.c: New file.
3460         * modules/pipe-filter-gi: New file.
3461
3462 2009-08-02  Bruno Haible  <bruno@clisp.org>
3463             Paolo Bonzini  <bonzini@gnu.org>
3464
3465         Tests for module 'pipe-filter-ii'.
3466         * modules/pipe-filter-ii-tests: New file.
3467         * tests/test-pipe-filter-ii1.sh: New file.
3468         * tests/test-pipe-filter-ii1.c: New file.
3469         * tests/test-pipe-filter-ii2.sh: New file.
3470         * tests/test-pipe-filter-ii2-main.c: New file.
3471         * tests/test-pipe-filter-ii2-child.c: New file.
3472
3473         New module 'pipe-filter-ii'.
3474         * lib/pipe-filter.h: New file.
3475         * lib/pipe-filter-ii.c: New file.
3476         * lib/pipe-filter-aux.h: New file.
3477         * modules/pipe-filter-ii: New file.
3478
3479 2009-08-02  Simon Josefsson  <simon@josefsson.org>
3480
3481         * lib/gc-libgcrypt.c: Change copyright to FSF.
3482         * lib/gc-gnulib.c: Likewise.
3483
3484 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
3485
3486         * lib/gethostname.c: Include limits.h.
3487
3488 2009-08-02  Simon Josefsson  <simon@josefsson.org>
3489             Bruno Haible  <bruno@clisp.org>
3490
3491         Ensure HOST_NAME_MAX as part of the gethostname module.
3492         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
3493         define also HOST_NAME_MAX.
3494         * tests/test-gethostname.c: Include <limits.h>.
3495         (main): Check also HOST_NAME_MAX.
3496         * doc/posix-headers/limits.texi: Document the mingw problem.
3497
3498 2009-08-02  Bruno Haible  <bruno@clisp.org>
3499
3500         * lib/gethostname.c (gethostname): Fix handling of large len argument.
3501         Add comments.
3502
3503 2009-03-31  Simon Josefsson  <simon@josefsson.org>
3504
3505         * lib/gethostname.c: Add Windows wrapper.
3506         * m4/gethostname.m4: Look for gethostname in -lws2_32.
3507         * modules/gethostname: Depend on sys_socket & errno, for also
3508         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
3509         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
3510
3511 2009-07-31  Jim Meyering  <meyering@redhat.com>
3512
3513         getloadavg: fix symbol name in comment
3514         * lib/getloadavg.c: Correct a typo I introduced when adding
3515         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
3516         Matt Kraai spotted the problem.
3517
3518 2009-07-29  Matt Kraai  <mkraai@beckman.com>
3519
3520         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
3521         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
3522         code also if ! defined N_NAME_POINTER.
3523         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
3524         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
3525         but the n_name member is a 12-byte array.
3526
3527 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
3528
3529         update-copyright: generalize comment handling
3530         * build-aux/update-copyright: Handle copyright statements
3531         within more comment styles.
3532         Document usage.
3533         Report any file with an external copyright holder or parse failure.
3534
3535 2009-07-29  Jim Meyering  <meyering@redhat.com>
3536
3537         mktime: correct setting of REPLACE_MKTIME
3538         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
3539
3540         update-copyright: new module
3541         * modules/update-copyright: New file.
3542         * build-aux/update-copyright: New file.
3543         * MODULES.html.sh (maint+release support): Add update-copyright.
3544
3545 2009-07-27  Bruno Haible  <bruno@clisp.org>
3546
3547         Fix compilation error when <ctime> is used and mktime is replaced.
3548         * lib/time.in.h (mktime): New declaration.
3549         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
3550         REPLACE_MKTIME instead of defining mktime in config.h.
3551         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
3552         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
3553         Reported by Ross McFarland <rwmcfa1@neces.com>.
3554
3555 2009-07-27  Bruno Haible  <bruno@clisp.org>
3556
3557         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
3558         Reported by Matt Kraai <mkraai@beckman.com>.
3559
3560 2009-07-25  Jim Meyering  <meyering@redhat.com>
3561
3562         maint.mk: avoid warnings about missing files
3563         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
3564         diagnostic when .prev-version does not exist.
3565         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
3566         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
3567         nonexistent cfg.mk.
3568         Suggestions from Simon Josefsson.
3569
3570 2009-07-25  Bruno Haible  <bruno@clisp.org>
3571
3572         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
3573         defined as macros. Needed on QNX 6.4.1.
3574         Reported by Matt Kraai <mkraai@beckman.com>.
3575
3576 2009-07-23  Jim Meyering  <meyering@redhat.com>
3577
3578         maint.mk: invoke "make dist" with a working value of XZ_OPT
3579         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
3580
3581 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
3582
3583         Make fseeko.c compile on QNX.
3584         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
3585
3586 2009-07-22  Peter Simons  <simons@cryp.to>
3587
3588         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
3589         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
3590         * lib/md4.h: Likewise.
3591         * lib/md5.h: Likewise.
3592         * lib/sha1.h: Likewise.
3593         * lib/sha256.h: Likewise.
3594         * lib/sha512.h: Likewise.
3595
3596         tests-sha1: don't assign literal string to 'char *' variable
3597         * tests/test-sha1.c (main): Declare locals with "const" to match
3598         attributes of the right hand side.
3599
3600 2009-07-21  Eric Blake  <ebb9@byu.net>
3601
3602         dup2: fix more mingw problems
3603         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
3604         fd to itself.
3605         * doc/posix-functions/dup2.texi (dup2): Document the bug.
3606         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
3607         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
3608         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
3609         care of mingw bugs.
3610
3611 2009-07-21  Jim Meyering  <meyering@redhat.com>
3612
3613         vc-list-files: avoid failure when /bin/sh is dash
3614         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
3615         On some Debian based systems, /bin/sh is a symlink to dash, and running
3616         this command would omit the "/" following each 'tests' prefix:
3617           dash -x build-aux/vc-list-files -C . tests
3618         That is because bash and dash work differently:
3619           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
3620           bash ok
3621           dash odd
3622
3623 2009-07-21  Eric Blake  <ebb9@byu.net>
3624
3625         dup2-tests: test previous patch
3626         * modules/dup2-tests: New file.
3627         * tests/test-dup2.c: Likewise.
3628         * tests/test-open.c (main): Avoid unspecified behavior.
3629         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
3630         test.
3631
3632         dup2: work around mingw and cygwin 1.5 bug
3633         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
3634         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3635         * modules/unistd (Makefile.am): Substitute it.
3636         * lib/unistd.in.h (dup2): Declare the replacement.
3637         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
3638         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
3639         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
3640         * modules/execute (Depends-on): Add dup2.
3641         * modules/fseterr (Depends-on): Likewise.
3642         * modules/pipe (Depends-on): Likewise.
3643         * modules/posix_spawn-internal (Depends-on): Likewise.
3644
3645 2009-07-21  Bruno Haible  <bruno@clisp.org>
3646
3647         * modules/.gitattributes: New file.
3648
3649 2009-07-20  Bruno Haible  <bruno@clisp.org>
3650
3651         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
3652         (main): Use it.
3653
3654 2009-07-20  Eric Blake  <ebb9@byu.net>
3655
3656         test-pipe: make a bit more robust.
3657         * tests/test-pipe.c (myerr): Allow error messages regardless of
3658         what we do to stderr.
3659         (test_pipe): Rearrange to avoid deadlock.
3660         (child_main): Try a larger read, to ensure we avoided deadlock.
3661         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
3662         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
3663         if misused.
3664
3665 2009-07-19  Jim Meyering  <meyering@redhat.com>
3666
3667         fts: avoid false-positive cycle-detection
3668         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
3669         for each new command line argument.
3670
3671 2009-07-19  Bruno Haible  <bruno@clisp.org>
3672
3673         Fix build error on mingw with the modules sys_select and unistd.
3674         * modules/acl-tests (Depends-on): Add close.
3675         * modules/binary-io-tests (Depends-on): Likewise.
3676         * modules/closein-tests (Depends-on): Likewise.
3677         * modules/flock-tests (Depends-on): Likewise.
3678         * modules/fsync-tests (Depends-on): Likewise.
3679         * modules/lseek-tests (Depends-on): Likewise.
3680         * modules/pipe-tests (Depends-on): Likewise.
3681         * modules/posix_spawn-tests (Depends-on): Likewise.
3682         * modules/posix_spawnp-tests (Depends-on): Likewise.
3683         * modules/stat-time-tests (Depends-on): Likewise.
3684         * modules/yesno-tests (Depends-on): Likewise.
3685
3686 2009-07-19  Bruno Haible  <bruno@clisp.org>
3687
3688         Unify conditionals.
3689         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
3690         macros, not at the compiler macros.
3691         * lib/pipe.c: Likewise.
3692         * lib/execute.c: Likewise.
3693         * lib/spawni.c: Likewise.
3694
3695 2009-07-19  Bruno Haible  <bruno@clisp.org>
3696
3697         Fix handling of closed stdin/stdout/stderr on mingw.
3698         * lib/w32spawn.h: Include unistd.h.
3699         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
3700         file descriptor with O_NOINHERIT flag.
3701         (fd_safer_noinherit): New function, based on fd-safer.c.
3702         (dup_safer_noinherit): New function, based on dup-safer.c.
3703         (undup_safer_noinherit): New function.
3704         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
3705         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
3706         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
3707         instead of fd_safer.
3708         * tests/test-pipe.c: Include <windows.h>.
3709         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
3710
3711         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
3712         from main.
3713         (test_pipe): Pass an extra argument for disambiguation.
3714         (main): Invoke parent_main or child_main.
3715
3716         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
3717         consistently.
3718
3719 2009-07-18  Eric Blake  <ebb9@byu.net>
3720
3721         test-pipe: fix mingw build
3722         * tests/test-pipe.c (main): Avoid fcntl on mingw.
3723
3724 2009-07-18  Bruno Haible  <bruno@clisp.org>
3725
3726         * modules/pipe-tests (Makefile.am): Fix typo.
3727
3728 2009-07-18  Eric Blake  <ebb9@byu.net>
3729
3730         error: fix mingw build
3731         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
3732         Reported by Bruno Haible.
3733
3734         error: avoid undefined use of stdout
3735         * lib/error.c (error, error_at_line): Check that fd 1 is open
3736         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
3737         is handling faults and the close_stdout module wants to report the
3738         detection of closed stdout as an error.
3739
3740 2009-07-17  Eric Blake  <ebb9@byu.net>
3741
3742         pipe: be robust in face of closed fds
3743         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
3744         should cause child to misbehave.
3745         * modules/pipe-tests: New module.
3746         * tests/test-pipe.c: New file.
3747         * tests/test-pipe.sh: New file.
3748         Reported by Akim Demaille.
3749
3750 2009-07-14  Bruno Haible  <bruno@clisp.org>
3751
3752         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
3753         Reported by anonymous kc.
3754
3755 2009-07-07  Jim Meyering  <meyering@redhat.com>
3756
3757         maint.mk: don't look for translatable strings in *.m4 or *.mk
3758         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
3759         when searching for translatable strings.
3760
3761 2009-07-05  Jim Meyering  <meyering@redhat.com>
3762
3763         remove superfluous parentheses in STREQ definition
3764         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
3765         * lib/getugroups.c (STREQ): Likewise.
3766         * lib/fnmatch.c (STREQ): Likewise.
3767         Spotted by Bruno Haible.
3768
3769 2009-07-04  Jim Meyering  <meyering@redhat.com>
3770
3771         argv-iter: new module
3772         * MODULES.html.sh: Add argv-iter.
3773         * lib/argv-iter.c, lib/argv-iter.h: New files.
3774         * modules/argv-iter: New file.
3775         * modules/argv-iter-tests: New file.
3776         * tests/test-argv-iter.c: Test it.
3777
3778 2009-07-04  Bruno Haible  <bruno@clisp.org>
3779
3780         Fix assertion.
3781         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
3782         contains more exact copies of a given entry than file2, leave the extra
3783         copies unpaired rather than aborting.
3784         Reported by Eric Blake.
3785
3786 2009-07-02  Bruno Haible  <bruno@clisp.org>
3787
3788         Speedup git-merge-changelog for git cherry-pick.
3789         * lib/git-merge-changelog.c (struct entries_mapping): New type.
3790         (entries_mapping_get): New function, extracted from compute_mapping.
3791         (entries_mapping_reverse_get): New function.
3792         (compute_mapping): Add a 'full' argument. Return the result in a
3793         'struct entries_mapping'.
3794         (main): Update. Access the mappings through entries_mapping_get.
3795         Reported by Eric Blake.
3796
3797 2009-07-02  Bruno Haible  <bruno@clisp.org>
3798
3799         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
3800         best_i.
3801
3802 2009-07-02  Bruno Haible  <bruno@clisp.org>
3803
3804         Speed up approximate search for matching ChangeLog entries.
3805         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
3806         argument. Call fstrcmp_bounded instead of fstrcmp.
3807         (compute_mapping, try_split_merged_entry, main): Update callers.
3808
3809 2009-07-02  Bruno Haible  <bruno@clisp.org>
3810
3811         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
3812
3813 2009-06-30  Bruno Haible  <bruno@clisp.org>
3814
3815         Reduce the number of uc_is_cased calls.
3816         * lib/unicase.h (casing_suffix_context_t): Add
3817         'first_char_except_ignorable' field.
3818         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
3819         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
3820         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
3821         Update initializer.
3822         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
3823         case-ignorable characters.
3824         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
3825         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
3826         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
3827         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
3828         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
3829
3830 2009-06-30  Bruno Haible  <bruno@clisp.org>
3831
3832         Tests for module 'unicase/ignorable'.
3833         * modules/unicase/ignorable-tests: New file.
3834         * tests/unicase/test-ignorable.c: New file, generated by
3835         gen-uni-tables.
3836
3837         Tests for module 'unicase/cased'.
3838         * modules/unicase/cased-tests: New file.
3839         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
3840         * tests/unicase/test-predicate-part1.h: New file, derived from
3841         tests/unictype/test-predicate-part1.h.
3842         * tests/unicase/test-predicate-part2.h: New file, same as
3843         tests/unictype/test-predicate-part2.h.
3844
3845         Fix evaluation of "Before C" condition of FINAL_SIGMA.
3846         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
3847         (output_casing_properties): New function.
3848         (main): Call it.
3849         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
3850         * lib/unicase/cased.c: Include unictype/bitmap.h.
3851         (uc_is_cased): Define through a bitmap lookup.
3852         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
3853         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
3854         (uc_is_case_ignorable): Define through a bitmap lookup.
3855         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
3856         lib/unictype/bitmap.h.
3857         (Depends-on): Add inline. Clean up.
3858         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
3859         lib/unictype/bitmap.h.
3860         (Depends-on): Add inline. Clean up.
3861         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
3862         recognition.
3863         * tests/unicase/test-u16-tolower.c (main): Likewise.
3864         * tests/unicase/test-u32-tolower.c (main): Likewise.
3865
3866 2009-06-30  Bruno Haible  <bruno@clisp.org>
3867
3868         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
3869         * lib/unicase/u16-casemap.c: Likewise.
3870         * lib/unicase/u32-casemap.c: Likewise.
3871
3872 2009-06-29  Bruno Haible  <bruno@clisp.org>
3873
3874         Define u32_casefold as a wrapper around u32_ct_casefold.
3875         * lib/unicase/u32-casefold.c: Update.
3876         * modules/unicase/u32-casefold (Depends-on): Add
3877         unicase/u32-ct-casefold, unicase/empty-prefix-context,
3878         unicase/empty-suffix-context. Clean up.
3879
3880         Define u16_casefold as a wrapper around u16_ct_casefold.
3881         * lib/unicase/u16-casefold.c: Update.
3882         * modules/unicase/u16-casefold (Depends-on): Add
3883         unicase/u16-ct-casefold, unicase/empty-prefix-context,
3884         unicase/empty-suffix-context. Clean up.
3885
3886         Define u8_casefold as a wrapper around u8_ct_casefold.
3887         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
3888         * lib/unicase/u8-casefold.c: Update.
3889         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
3890         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
3891
3892         Define u32_totitle as a wrapper around u32_ct_totitle.
3893         * lib/unicase/u32-totitle.c: Update.
3894         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
3895         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
3896
3897         Define u16_totitle as a wrapper around u16_ct_totitle.
3898         * lib/unicase/u16-totitle.c: Update.
3899         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
3900         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
3901
3902         Define u8_totitle as a wrapper around u8_ct_totitle.
3903         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
3904         functions.
3905         (FUNC): Delegate to U_CT_TOTITLE.
3906         * lib/unicase/u8-totitle.c: Update.
3907         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
3908         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
3909
3910         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
3911         invocation.
3912         * modules/unicase/u32-tolower (Depends-on): Add
3913         unicase/empty-prefix-context, unicase/empty-suffix-context.
3914
3915         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
3916         invocation.
3917         * modules/unicase/u16-tolower (Depends-on): Add
3918         unicase/empty-prefix-context, unicase/empty-suffix-context.
3919
3920         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
3921         * modules/unicase/u8-tolower (Depends-on): Add
3922         unicase/empty-prefix-context, unicase/empty-suffix-context.
3923
3924         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
3925         invocation.
3926         * modules/unicase/u32-toupper (Depends-on): Add
3927         unicase/empty-prefix-context, unicase/empty-suffix-context.
3928
3929         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
3930         invocation.
3931         * modules/unicase/u16-toupper (Depends-on): Add
3932         unicase/empty-prefix-context, unicase/empty-suffix-context.
3933
3934         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
3935         * modules/unicase/u8-toupper (Depends-on): Add
3936         unicase/empty-prefix-context, unicase/empty-suffix-context.
3937
3938         New module 'unicase/u32-ct-casefold'.
3939         * lib/unicase/u32-ct-casefold.c: New file.
3940         * modules/unicase/u32-ct-casefold: New file.
3941
3942         New module 'unicase/u16-ct-casefold'.
3943         * lib/unicase/u16-ct-casefold.c: New file.
3944         * modules/unicase/u16-ct-casefold: New file.
3945
3946         New module 'unicase/u8-ct-casefold'.
3947         * lib/unicase/u8-ct-casefold.c: New file.
3948         * lib/unicase/u-ct-casefold.h: New file, derived from
3949         lib/unicase/u-casefold.h.
3950         * modules/unicase/u8-ct-casefold: New file.
3951
3952         New module 'unicase/u32-ct-totitle'.
3953         * lib/unicase/u32-ct-totitle.c: New file.
3954         * modules/unicase/u32-ct-totitle: New file.
3955
3956         New module 'unicase/u16-ct-totitle'.
3957         * lib/unicase/u16-ct-totitle.c: New file.
3958         * modules/unicase/u16-ct-totitle: New file.
3959
3960         New module 'unicase/u8-ct-totitle'.
3961         * lib/unicase/u8-ct-totitle.c: New file.
3962         * lib/unicase/u-ct-totitle.h: New file, derived from
3963         lib/unicase/u-totitle.h.
3964         * modules/unicase/u8-ct-totitle: New file.
3965
3966         New module 'unicase/u32-ct-tolower'.
3967         * lib/unicase/u32-ct-tolower.c: New file.
3968         * modules/unicase/u32-ct-tolower: New file.
3969
3970         New module 'unicase/u16-ct-tolower'.
3971         * lib/unicase/u16-ct-tolower.c: New file.
3972         * modules/unicase/u16-ct-tolower: New file.
3973
3974         New module 'unicase/u8-ct-tolower'.
3975         * lib/unicase/u8-ct-tolower.c: New file.
3976         * modules/unicase/u8-ct-tolower: New file.
3977
3978         New module 'unicase/u32-ct-toupper'.
3979         * lib/unicase/u32-ct-toupper.c: New file.
3980         * modules/unicase/u32-ct-toupper: New file.
3981
3982         New module 'unicase/u16-ct-toupper'.
3983         * lib/unicase/u16-ct-toupper.c: New file.
3984         * modules/unicase/u16-ct-toupper: New file.
3985
3986         New module 'unicase/u8-ct-toupper'.
3987         * lib/unicase/u8-ct-toupper.c: New file.
3988         * modules/unicase/u8-ct-toupper: New file.
3989
3990         Add context arguments to u*_casemap functions.
3991         * lib/unicase/unicasemap.h: Include unicase.h.
3992         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
3993         suffix_context arguments.
3994         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
3995         functions.
3996         (FUNC): Add prefix_context and suffix_context arguments. Use
3997         uc_is_cased and uc_is_case_ignorable.
3998         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
3999         * lib/unicase/u16-casemap.c: Likewise.
4000         * lib/unicase/u32-casemap.c: Likewise.
4001         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
4002         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
4003         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
4004         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
4005         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
4006         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
4007
4008         New module 'unicase/u32-suffix-context'.
4009         * lib/unicase/u32-suffix-context.c: New file.
4010         * modules/unicase/u32-suffix-context: New file.
4011
4012         New module 'unicase/u16-suffix-context'.
4013         * lib/unicase/u16-suffix-context.c: New file.
4014         * modules/unicase/u16-suffix-context: New file.
4015
4016         New module 'unicase/u8-suffix-context'.
4017         * lib/unicase/u8-suffix-context.c: New file.
4018         * lib/unicase/u-suffix-context.h: New file.
4019         * modules/unicase/u8-suffix-context: New file.
4020
4021         New module 'unicase/empty-suffix-context'.
4022         * lib/unicase/empty-suffix-context.c: New file.
4023         * modules/unicase/empty-suffix-context: New file.
4024
4025         New module 'unicase/u32-prefix-context'.
4026         * lib/unicase/u32-prefix-context.c: New file.
4027         * modules/unicase/u32-prefix-context: New file.
4028
4029         New module 'unicase/u16-prefix-context'.
4030         * lib/unicase/u16-prefix-context.c: New file.
4031         * modules/unicase/u16-prefix-context: New file.
4032
4033         New module 'unicase/u8-prefix-context'.
4034         * lib/unicase/u8-prefix-context.c: New file.
4035         * lib/unicase/u-prefix-context.h: New file.
4036         * lib/unicase/context.h: New file.
4037         * modules/unicase/u8-prefix-context: New file.
4038
4039         New module 'unicase/empty-prefix-context'.
4040         * lib/unicase/empty-prefix-context.c: New file.
4041         * modules/unicase/empty-prefix-context: New file.
4042
4043         New module 'unicase/ignorable'.
4044         * lib/unicase/ignorable.c: New file.
4045         * modules/unicase/ignorable: New file.
4046
4047         New module 'unicase/cased'.
4048         * lib/unicase/caseprop.h: New file.
4049         * lib/unicase/cased.c: New file.
4050         * modules/unicase/cased: New file.
4051
4052         New functions for case mapping of substrings.
4053         * lib/unicase.h (casing_prefix_context_t): New type.
4054         (unicase_empty_prefix_context): New variable.
4055         (u8_casing_prefix_context, u16_casing_prefix_context,
4056         u32_casing_prefix_context, u8_casing_prefixes_context,
4057         u16_casing_prefixes_context, u32_casing_prefixes_context): New
4058         declarations.
4059         (casing_suffix_context_t): New type.
4060         (unicase_empty_suffix_context): New variable.
4061         (u8_casing_suffix_context, u16_casing_suffix_context,
4062         u32_casing_suffix_context, u8_casing_suffixes_context,
4063         u16_casing_suffixes_context, u32_casing_suffixes_context,
4064         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
4065         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
4066         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
4067         declarations.
4068
4069 2009-06-28  Jim Meyering  <meyering@redhat.com>
4070
4071         boostrap: indent only with spaces
4072         * build-aux/bootstrap: Indent only with spaces, never TABs.
4073
4074         bootstrap: split long lines
4075         * build-aux/bootstrap: Keep line length < 80.
4076
4077         bootstrap: sync from coreutils
4078         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
4079         just as autoreconf does.  Verify a list of prerequisite
4080         package-name,version-number pairs if defined in bootstrap.conf.
4081         Refer to README-prereq, if prerequisites are not satisfied.
4082
4083 2009-06-27  Eric Blake  <ebb9@byu.net>
4084
4085         tests: add test for bogus NULL definition
4086         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
4087         * tests/test-stdlib.c: Likewise.
4088         * tests/test-string.c: Likewise.
4089         * tests/test-locale.c: Likewise.
4090         * tests/test-unistd.c: Likewise.
4091         * modules/stdio-tests (Depends-on): Add verify.
4092         * modules/stdlib-tests (Depends-on): Likewise.
4093         * modules/string-tests (Depends-on): Likewise.
4094         * modules/locale-tests (Depends-on): Likewise.
4095         * modules/unistd-tests (Depends-on): Likewise.
4096
4097 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
4098
4099         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
4100         self-explaining comment.
4101         * m4/selinux-selinux-h: Update serial.
4102         (gl_LIBSELINUX): New macro, adding a warning for missing development
4103         packages to code extracted from...
4104         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
4105         Add warning for missing development packages here, too.
4106
4107 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
4108
4109         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
4110
4111 2009-06-25  Eric Blake  <ebb9@byu.net>
4112
4113         version-etc: fix regression
4114         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
4115         gcc.
4116         (version_etc): Use it, to catch bugs with trailing NULL.
4117         * lib/version-etc.c (version_etc_arn): Delete unused argument.
4118         (version_etc_va): Fix logic bug.
4119         * modules/version-etc-tests: Add test.
4120         * tests/test-version-etc.c: New file.
4121         * tests/test-version-etc.sh: Likewise.
4122
4123 2009-06-25  Sam Steingold  <sds@gnu.org>
4124
4125         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
4126         mbtowc declaration.
4127
4128 2009-06-25  Eric Blake  <ebb9@byu.net>
4129
4130         fpurge: migrate into <stdio.h>
4131         * lib/fpurge.h: Delete...
4132         * lib/stdio.in.h (fpurge): ...and declare here, instead.
4133         * lib/fpurge.c (fpurge): Change declaring header.
4134         * modules/fpurge (Files): Drop deleted file.
4135         (Depends-on): Add stdio.
4136         (configure.ac): Set witness.
4137         * modules/stdio (Makefile.am): Support fpurge macros.
4138         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
4139         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
4140         * lib/fflush.c: Update client.
4141         * tests/test-fpurge.c: Likewise.
4142         * NEWS: Mention the change.
4143
4144 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
4145
4146        * lib/argp-version-etc.c (program_authors): Add const
4147        qualifier.
4148        * lib/version-etc.c: Fix typos in the comments.
4149        * modules/argp-version-etc: Depends on version-etc.
4150
4151 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
4152
4153         argp-version-etc: new module.
4154
4155         * lib/argp-version-etc.c: New file.
4156         * lib/argp-version-etc.h: New file.
4157         * modules/argp-version-etc: New file.
4158         * modules/argp-version-etc-tests: New file.
4159         * tests/test-argp-version-etc.c: New test.
4160         * tests/test-argp-version-etc-1.sh: New test.
4161
4162 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
4163
4164         Provide additional interfaces and documentation for version-etc
4165         module.
4166
4167         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
4168         interfaces.
4169         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
4170         prototypes.
4171
4172 2009-06-24  Bruno Haible  <bruno@clisp.org>
4173
4174         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
4175         HAVE_LIB${NAME} macro.
4176         Reported by Sam Steingold <sds@gnu.org>.
4177
4178 2009-06-23  Simon Josefsson  <simon@josefsson.org>
4179
4180         * modules/hash-tests (test_hash_LDADD): Link to libintl when
4181         needed.
4182
4183 2009-06-21  Bruno Haible  <bruno@clisp.org>
4184
4185         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
4186         work.
4187         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
4188         together with LIB${NAME}, LTLIB${NAME}.
4189         Reported by Sam Steingold <sds@gnu.org>.
4190
4191 2009-06-20  Jim Meyering  <meyering@redhat.com>
4192
4193         tests: make sc_require_test_exit_idiom more generic
4194         * top/maint.mk (Exit_witness_file): New overridable variable.
4195         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
4196         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
4197
4198 2009-06-19  Jim Meyering  <meyering@redhat.com>
4199
4200         hash: reverse order of src/dst parameters in an internal interface
4201         * lib/hash.c (transfer_entries): Reverse order of parameters to
4202         put DST before SRC.  Adjust callers.
4203
4204         tests: test-hash: avoid wholesale duplication
4205         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
4206         Instead, use a loop and add a single conditional.
4207
4208         tests: test-hash: allow seed selection via a command line argument
4209         * tests/test-hash.c (get_seed): New function.
4210         (main): Use it.
4211
4212 2009-06-19  Eric Blake  <ebb9@byu.net>
4213
4214         hash: avoid memory leak on allocation failure
4215         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
4216         failure.  Factor repeated algorithm...
4217         (transfer_entries): ...into new helper routine.
4218         (hash_delete): React to hash_rehash return value.
4219
4220         hash: reduce memory pressure in hash_rehash no-op case
4221         * lib/hash.c (next_prime): Avoid overflow.
4222         (hash_initialize): Factor bucket size computation...
4223         (compute_bucket_size): ...into new helper function.
4224         (hash_rehash): Use new function and open coding to reduce memory
4225         pressure, and avoid a memory leak in USE_OBSTACK code.
4226         Reported by Jim Meyering.
4227
4228 2009-06-18  Eric Blake  <ebb9@byu.net>
4229
4230         hash: make rotation more obvious
4231         * modules/hash (Depends-on): Add bitrotate and stdint.
4232         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
4233         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
4234         (SIZE_MAX): Rely on headers for definition.
4235         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
4236         (raw_hasher): Use rotr_sz.
4237         Suggested by Jim Meyering.
4238
4239         hash: fix memory leak in last patch
4240         * lib/hash.c (hash_rehash): Avoid memory leak.
4241
4242         hash: avoid no-op rehashing
4243         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
4244
4245         hash: provide default callback functions
4246         * lib/hash.c (raw_hasher, raw_comparator): New functions.
4247         (hash_initialize): Use them as defaults.
4248         * tests/test-hash.c (main): Test this.
4249
4250         hash: minor optimization
4251         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
4252         when possible.
4253         (hash_initialize): Document this promise.
4254         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
4255         * tests/test-hash.c (hash_compare_strings): Test this.
4256
4257 2009-06-18  Bruno Haible  <bruno@clisp.org>
4258
4259         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
4260         going to be replaced anyway.
4261
4262 2009-06-18  Bruno Haible  <bruno@clisp.org>
4263
4264         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
4265         in one place.
4266         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
4267         be replaced anyway.
4268
4269 2009-06-18  Eric Blake  <ebb9@byu.net>
4270
4271         hash: check for resize before insertion
4272         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
4273         threshold before insertion, so that a pathological hash_rehash
4274         that fills every bucket can still trigger another rehash.
4275
4276 2009-06-18  Jim Meyering  <meyering@redhat.com>
4277
4278         hash-tests: add a loop around the small tests
4279         * tests/test-hash.c (main): Repeat small tests with selected
4280         small initial table sizes.
4281
4282 2009-06-17  Eric Blake  <ebb9@byu.net>
4283
4284         hash: minor cleanups
4285         * lib/hash.h (hash_entry): Make opaque, by moving...
4286         * lib/hash.c (hash_entry): ...here.
4287         (hash_insert): Clarify restrictions on what can be inserted.
4288         (hash_get_next): Clarify when it is safe to remove an element
4289         during traversal.
4290         (check_tuning): Skip verification when tuning is known safe.
4291         (hash_initialize): Clarify restrictions on tuning.
4292
4293 2009-06-17  Jim Meyering  <jim@meyering.net>
4294         and Eric Blake  <ebb9@byu.net>
4295
4296         hash-tests: new module
4297         * modules/hash-tests: New file.
4298         * tests/test-hash.c: New file.
4299
4300 2009-06-17  Eric Blake  <ebb9@byu.net>
4301
4302         strstr-simple: document new module
4303         * MODULES.html.sh: Document new module.
4304
4305         strstr, strcasestr: replace on platforms with broken memchr
4306         * modules/strstr: Split into...
4307         * modules/strstr-simple: ...new module that does not care about
4308         performance, but does care about glibc bug.
4309         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
4310         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
4311         if platform memchr is broken, per Debian bug 521737.
4312         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
4313         memchr.
4314         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
4315         * doc/posix-functions/strstr.texi (strstr): Document the fix.
4316         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
4317         * modules/mountlist (Depends-on): Add strstr-simple.
4318         * modules/gen-uni-tables (Depends-on): Likewise.
4319         * modules/argz (Depends-on): Add strstr.
4320
4321 2009-06-17  Bruno Haible  <bruno@clisp.org>
4322
4323         * modules/posix_spawn-internal (Depends-on): Add errno.
4324
4325 2009-06-17  Bruno Haible  <bruno@clisp.org>
4326
4327         Define missing ESTALE on Interix 3.5.
4328         * lib/errno.in.h (ESTALE): Assign a value if missing.
4329         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
4330         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
4331         missing.
4332         * doc/posix-headers/errno.texi: Mention the Interix bug.
4333         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
4334
4335 2009-06-15  Eric Blake  <ebb9@byu.net>
4336
4337         memchr, memchr2: add valgrind exception
4338         * lib/memchr.valgrind: New file.
4339         * lib/memchr2.valgrind: New file.
4340         * modules/memchr (Files): Distribute valgrind file.
4341         * modules/memchr2 (Files): Likewise.
4342
4343         docs: memchr is no longer obsolete
4344         * MODULES.html.sh: Move memchr from obsolete to string.h section.
4345         * lib/string.in.h (memchr): Simplify logic.
4346
4347 2009-06-14  Jim Meyering  <meyering@redhat.com>
4348
4349         link-follow: fix the "checking..." message to not mention trailing slash
4350         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
4351         never considered trailing slashes.
4352
4353 2009-06-14  Bruno Haible  <bruno@clisp.org>
4354
4355         * m4/memchr.m4: Mention also the bug on IA-64.
4356         * doc/posix-functions/memchr.texi: Likewise.
4357
4358 2009-06-12  Eric Blake  <ebb9@byu.net>
4359
4360         memchr: detect broken x86_64 and alpha implementations
4361         * modules/memchr-tests (Depends-on): Move mmap detection...
4362         * modules/memchr (Depends-on): ...here.
4363         (configure.ac): Set indicator.
4364         * lib/string.in.h (memchr): Declare replacement.
4365         * modules/string (Makefile.am): Trigger replacement.
4366         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
4367         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
4368         bugs.
4369         * doc/posix-functions/memchr.texi (memchr): Document the bug.
4370         * modules/getpagesize (License): Relax license.
4371
4372 2009-06-11  Bruno Haible  <bruno@clisp.org>
4373
4374         * lib/idpriv.h: Add more references.
4375
4376 2009-06-08  Bruno Haible  <bruno@clisp.org>
4377
4378         Tests for module 'idpriv-droptemp'.
4379         * modules/idpriv-droptemp-tests: New file.
4380         * tests/test-idpriv-droptemp.sh: New file.
4381         * tests/test-idpriv-droptemp.su.sh: New file.
4382         * tests/test-idpriv-droptemp.c: New file.
4383
4384         New module 'idpriv-droptemp'.
4385         * lib/idpriv-droptemp.c: New file.
4386         * modules/idpriv-droptemp: New file.
4387
4388 2009-06-08  Bruno Haible  <bruno@clisp.org>
4389
4390         Tests for module 'idpriv-drop'.
4391         * modules/idpriv-drop-tests: New file.
4392         * tests/test-idpriv-drop.sh: New file.
4393         * tests/test-idpriv-drop.su.sh: New file.
4394         * tests/test-idpriv-drop.c: New file.
4395
4396         New module 'idpriv-drop'.
4397         * lib/idpriv.h: New file.
4398         * lib-idpriv-drop.c: New file.
4399         * m4/idpriv.m4: New file.
4400         * modules/idpriv-drop: New file.
4401
4402 2009-06-08  Bruno Haible  <bruno@clisp.org>
4403
4404         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
4405         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
4406         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
4407         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
4408         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
4409         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
4410         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
4411
4412 2009-06-08  Eric Blake  <ebb9@byu.net>
4413
4414         test-strstr: use memory fence, when possible
4415         * tests/test-strstr.c (main): Use memory fence, in order to be
4416         more likely to trigger Debian bug 521737.
4417         * modules/strstr-tests (Files): Pull in additional files.
4418
4419         memchr: no longer obsolete, for wider field testing
4420         * modules/memchr (Status, Notice): Delete, this module is no
4421         longer obsolete.
4422         * modules/vasnprintf (Depends-on): Add memchr.
4423
4424 2009-06-07  Jim Meyering  <meyering@redhat.com>
4425
4426         hash: declare some functions with the warn_unused_result attribute
4427         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
4428
4429 2009-06-07  Bruno Haible  <bruno@clisp.org>
4430
4431         * tests/test-alignof.c: Don't test int64_t if it does not exist.
4432         Reported by Eric Blake.
4433
4434 2009-06-06  Eric Blake  <ebb9@byu.net>
4435
4436         test-alignof: fix typo with long double
4437         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
4438         compiler error.
4439
4440 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
4441
4442         Escape non-texinfo { and }s.
4443         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
4444         markup error.
4445
4446 2009-06-04  Jim Meyering  <meyering@redhat.com>
4447
4448         gitlog-to-changelog: don't infloop on an empty commit log
4449         * build-aux/gitlog-to-changelog: Warn about an empty log message.
4450         Reported by Boris Petersen <transacid@centerim.org>.
4451
4452 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
4453
4454         version-etc: extend for packagers
4455         Add three new configure options, intended for packagers:
4456           --with-packager="packager name"
4457           --with-packager-version="packager-specific version"
4458           --with-packager-bug-reports="packager bug reporting"
4459         An example with coreutils:
4460           $ ./configure \
4461             --with-packager=Gentoo \
4462             --with-packager-bug-report=http://bugs.gentoo.org/ \
4463             --with-packager-version="patchset 1.6"
4464           $ ./src/ls --version | head -n3
4465           ls (GNU coreutils) 7.1-dirty
4466           Packaged by Gentoo (patchset 1.6)
4467           Copyright (C) 2009 Free Software Foundation, Inc.
4468         Note that the bug reporting info via --help doesn't show up because
4469         coreutils uses its own custom emit_bug_reporting_address() implementation
4470         in src/system.h.  If it didn't, it'd look like:
4471           $ ./src/ls --help | tail -n4
4472           Report bugs to <bug-coreutils@gnu.org>.
4473           Report Gentoo bugs to <http://bugs.gentoo.org/>.
4474           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
4475           General help using GNU software: <http://www.gnu.org/gethelp/>.
4476         * lib/version-etc.c: Print new information, if provided.
4477         * m4/version-etc.m4: New file.
4478         * modules/version-etc (Files): Add m4/version-etc.m4.
4479         (configure.ac): Add gl_VERSION_ETC.
4480
4481 2009-05-31  Bruno Haible  <bruno@clisp.org>
4482
4483         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
4484         and 'int64_t'.
4485         * modules/alignof-tests (Dependencies): Add stdint.
4486         Reported by Eric Blake.
4487
4488 2009-05-31  Bruno Haible  <bruno@clisp.org>
4489
4490         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
4491         restriction due to compiler bugs.
4492         Reported by Eric Blake.
4493
4494 2009-05-31  Simon Josefsson  <simon@josefsson.org>
4495             Bruno Haible  <bruno@clisp.org>
4496
4497         Fix test-alignof failure.
4498         * lib/alignof.h (alignof_slot): New macro.
4499         (alignof_type): New macro, with the same semantics as the previous
4500         'alignof'.
4501         (alignof): Alias to alignof_slot.
4502         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
4503         check that the results are usable as constant expressions.
4504
4505 2009-05-31  Bruno Haible  <bruno@clisp.org>
4506
4507         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
4508         * tests/test-memchr.c (main): Check that memchr does not read past the
4509         first occurrence of the byte.
4510         * tests/test-strstr.c (main): Update comment.
4511         Suggested by Eric Blake.
4512
4513 2009-05-30  Bruno Haible  <bruno@clisp.org>
4514
4515         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
4516         detail how to use dumpbin.
4517         Reported by David Byron <dbyron@dbyron.com>.
4518
4519 2009-06-02  Simon Josefsson  <simon@josefsson.org>
4520
4521         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
4522
4523 2009-06-02  Simon Josefsson  <simon@josefsson.org>
4524
4525         * m4/manywarnings.m4: Add GCC 4.4 warnings.
4526
4527 2009-05-28  Bruno Haible  <bruno@clisp.org>
4528
4529         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
4530         build-aux/ files.
4531
4532 2009-05-28  Simon Josefsson  <simon@josefsson.org>
4533
4534         * gnulib-tool (func_import): Transform license on build-aux/ files too.
4535
4536 2009-05-27  Simon Josefsson  <simon@josefsson.org>
4537
4538         * gnulib-tool (sed_transform_main_lib_file)
4539         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
4540         regexps.
4541
4542 2009-05-26  Simon Josefsson  <simon@josefsson.org>
4543
4544         * tests/test-strstr.c: Add another self-test.
4545         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
4546         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
4547
4548 2009-05-23  Bruno Haible  <bruno@clisp.org>
4549
4550         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
4551         change.
4552
4553 2009-05-21  Bruno Haible  <bruno@clisp.org>
4554
4555         Simplify use of mode_t varargs.
4556         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
4557         uses 'mode_t' or 'int'.
4558         * lib/openat.c (openat): Likewise.
4559         * lib/open-safer.c (open_safer): Likewise.
4560         * m4/mode_t.m4: New file.
4561         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
4562         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
4563         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
4564         * modules/open (Files): Add m4/mode_t.m4.
4565         * modules/openat (Files): Likewise.
4566         * modules/fcntl-safer (Files): Likewise.
4567         Suggested by Eric Blake.
4568
4569 2009-05-21  Pádraig Brady  <P@draigbrady.com>
4570
4571         * doc/glibc-functions/fallocate.texi: New file.
4572         * doc/gnulib.texi: Include it.
4573
4574 2009-05-21  Eric Blake  <ebb9@byu.net>
4575             Bruno Haible  <bruno@clisp.org>
4576
4577         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
4578         invocations.
4579         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
4580
4581 2009-05-21  Eric Blake  <ebb9@byu.net>
4582             Bruno Haible  <bruno@clisp.org>
4583
4584         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
4585         include_next. Fix of 2008-11-20 commit.
4586         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
4587         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
4588         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
4589         NEXT_MATH_H.
4590         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
4591         instead of NEXT_MATH_H.
4592
4593 2009-05-21  Bruno Haible  <bruno@clisp.org>
4594
4595         Avoid redefinition warnings for SIZE_MAX.
4596         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
4597         Reported by Simon Josefsson.
4598
4599 2009-05-21  Bruno Haible  <bruno@clisp.org>
4600
4601         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
4602         AC_CACHE_VAL.
4603
4604 2009-05-20  Bruno Haible  <bruno@clisp.org>
4605
4606         Make zeroptr.h work on mingw.
4607         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
4608         mprotect.
4609         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
4610         * modules/memchr2-tests (configure.ac): Likewise.
4611         * modules/memcmp-tests (configure.ac): Likewise.
4612         * modules/memmem-tests (configure.ac): Likewise.
4613         * modules/memrchr-tests (configure.ac): Likewise.
4614         Reported by Simon Josefsson.
4615
4616 2009-05-20  Simon Josefsson  <simon@josefsson.org>
4617
4618         * tests/test-glob.c: Include string.h for strcmp prototype.
4619
4620 2009-05-20  Simon Josefsson  <simon@josefsson.org>
4621
4622         * modules/getdelim (Depends-on): Add explicit stdint, although it
4623         was implicitly already pulled in via realloc-posix.
4624         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
4625
4626 2009-05-20  Simon Josefsson  <simon@josefsson.org>
4627
4628         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
4629         G. Christensen" <tgc@jupiterrise.com>.
4630         * m4/sys_socket_h.m4: Check for sa_family_t.
4631         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
4632         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
4633         * tests/test-sys_socket.c: Check that sa_family_t works.
4634
4635 2009-05-18  Eric Blake  <ebb9@byu.net>
4636
4637         maint.mk: allow gnulib_dir in VPATH build
4638         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
4639
4640 2009-05-15  Jim Meyering  <meyering@redhat.com>
4641
4642         maint.mk: Give gnulib_dir a default definition.
4643         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
4644         Thus, most packages no longer need to specify this variable in cfg.mk
4645
4646 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
4647
4648         rename.m4: fix typos that would make non-mingw cross-configure fail
4649         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
4650
4651 2009-05-13  Eric Blake  <ebb9@byu.net>
4652
4653         mmap-anon: avoid out-of-order autoconf expansion
4654         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
4655         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
4656         * modules/memchr-tests (Depends-on): Add extensions.
4657         * modules/memchr2-tests (Depends-on): Add extensions.
4658         * modules/memcmp-tests (Depends-on): Add extensions.
4659         * modules/memmem-tests (Depends-on): Add extensions.
4660         * modules/memrchr-tests (Depends-on): Add extensions.
4661
4662 2009-05-13  Bruno Haible  <bruno@clisp.org>
4663
4664         Make some tests ISO C 99 compliant.
4665         * tests/zerosize-ptr.h: New file.
4666         * tests/test-memchr.c: Include zerosize-ptr.h.
4667         (main): Use a zero-size object pointer instead of NULL.
4668         * tests/test-memchr2.c: Include zerosize-ptr.h.
4669         (main): Use a zero-size object pointer instead of NULL.
4670         * tests/test-memcmp.c: Include zerosize-ptr.h.
4671         (main): Use a zero-size object pointer instead of NULL.
4672         * tests/test-memmem.c: Include zerosize-ptr.h.
4673         (main): Use a zero-size object pointer instead of NULL.
4674         * tests/test-memrchr.c: Include zerosize-ptr.h.
4675         (main): Use a zero-size object pointer instead of NULL.
4676         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
4677         m4/mmap-anon.m4.
4678         (Depends-on): Add getpagesize.
4679         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
4680         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
4681         m4/mmap-anon.m4.
4682         (Depends-on): Add getpagesize.
4683         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
4684         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
4685         m4/mmap-anon.m4.
4686         (Depends-on): Add getpagesize.
4687         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
4688         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
4689         m4/mmap-anon.m4.
4690         (Depends-on): Add getpagesize.
4691         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
4692         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
4693         m4/mmap-anon.m4.
4694         (Depends-on): Add getpagesize.
4695         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
4696
4697 2009-05-12  Bruno Haible  <bruno@clisp.org>
4698
4699         Tests for module 'alignof'.
4700         * modules/alignof-tests: New file.
4701         * tests/test-alignof.c: New file.
4702
4703 2009-05-12  Bruno Haible  <bruno@clisp.org>
4704
4705         Fix alignof macro.
4706         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
4707         vendor compilers that are always correct.
4708
4709 2009-05-12  Bruno Haible  <bruno@clisp.org>
4710
4711         Make the MAP_ANONYMOUS detection work on HP-UX 11.
4712         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
4713         not whether its fully works.
4714
4715 2009-05-12  Bruno Haible  <bruno@clisp.org>
4716
4717         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
4718
4719 2009-05-12  Jim Meyering  <meyering@redhat.com>
4720
4721         * top/maint.mk: Adjust backslash alignment.
4722
4723 2009-05-11  Simon Josefsson  <simon@josefsson.org>
4724
4725         * top/maint.mk: Make $(srcdir)/build-aux configurable.
4726
4727 2009-05-11  Eric Blake  <ebb9@byu.net>
4728
4729         argp: avoid undefined behavior
4730         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
4731         macros.
4732
4733 2009-05-08  Simon Josefsson  <simon@josefsson.org>
4734
4735         * tests/test-vc-list-files-git.sh: Do git config of user.email and
4736         user.name to prevent git commit from complaining.
4737
4738 2009-05-10  Bruno Haible  <bruno@clisp.org>
4739
4740         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
4741         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
4742         it rewrites every file name only once.
4743         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
4744
4745 2009-05-08  Bruno Haible  <bruno@clisp.org>
4746
4747         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
4748         instead of 'max'.
4749
4750 2009-05-08  Simon Josefsson  <simon@josefsson.org>
4751
4752         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
4753         sockaddr_storage test.
4754
4755 2009-05-07  Simon Josefsson  <simon@josefsson.org>
4756
4757         * modules/sys_socket (Makefile.am): Substitute
4758         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
4759         * m4/sys_socket_h.m4: Check for sockaddr_storage.
4760         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
4761         * tests/test-sys_socket.c: Check sockaddr_storage.
4762
4763 2009-05-08  Bruno Haible  <bruno@clisp.org>
4764
4765         New module 'alignof'.
4766         * lib/alignof.h: New file.
4767         * modules/alignof: New file.
4768
4769 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
4770             Bruno Haible  <bruno@clisp.org>
4771
4772         Fix test-file-has-acl on FreeBSD.
4773         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
4774         mask is implicitly added.
4775         * tests/test-file-has-acl.c: Include <signal.h>.
4776         (main): Terminate the test after 5 seconds.
4777         * modules/acl-tests (configure.ac): Check for alarm function.
4778
4779 2009-05-04  Bruno Haible  <bruno@clisp.org>
4780
4781         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
4782         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
4783         * modules/errno (configure.ac): Drop AC_REQUIRE.
4784         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
4785         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
4786
4787 2009-05-04  Simon Josefsson  <simon@josefsson.org>
4788
4789         * modules/glob-tests: New module.
4790         * tests/test-glob.c: Add.
4791
4792 2009-05-04  Simon Josefsson  <simon@josefsson.org>
4793
4794         * modules/fnmatch-tests: New module.
4795         * tests/test-fnmatch.c: Add.
4796
4797 2009-05-04  Eric Blake  <ebb9@byu.net>
4798
4799         maint: make the new no-submodule-changes rule VPATH-safe
4800         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
4801
4802 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
4803             Bruno Haible  <bruno@clisp.org>
4804
4805         acl: Fix infinite loop on FreeBSD.
4806         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
4807         of return value from acl_get_entry.
4808         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
4809         Likewise.
4810
4811 2009-05-03  Bruno Haible  <bruno@clisp.org>
4812
4813         * lib/acl-internal.h (acl_entries): Clarify return value.
4814         * lib/acl_entries.c (acl_entries): Likewise.
4815
4816 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
4817
4818         Bug fix in acl module.
4819         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
4820
4821 2009-05-03  Bruno Haible  <bruno@clisp.org>
4822
4823         Create gperf-generated file in the source dir, not in the build dir.
4824         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
4825         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
4826         * modules/unicase/locale-language (unicase/locale-languages.h):
4827         Likewise.
4828         * modules/unicase/special-casing (unicase/special-casing-table.h):
4829         Likewise.
4830         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
4831         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
4832         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
4833         Reported by Ralf Wildenhues.
4834
4835 2009-05-03  Bruno Haible  <bruno@clisp.org>
4836
4837         * modules/fnmatch (Description, configure.ac): Taken from
4838         fnmatch-posix.
4839         * modules/fnmatch-posix: Turn into a symbolic reference to the
4840         'fnmatch' module, and deprecate.
4841         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
4842
4843 2009-05-03  Bruno Haible  <bruno@clisp.org>
4844
4845         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
4846         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
4847         Reported by Ralf Wildenhues.
4848
4849 2009-05-04  Simon Josefsson  <simon@josefsson.org>
4850
4851         * m4/fnmatch.m4: Fix fnmatch re-define.
4852
4853 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
4854
4855         priv-set: new module and tests; adapt write-any-file
4856         * lib/priv-set.c: New file.
4857         * lib/priv-set.h: New file.
4858         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
4859         * lib/write-any-file.c: Simplify by using priv-set module.
4860         * m4/priv-set.m4: New file.
4861         * modules/priv-set: New file.
4862         * modules/unlinkdir: Add dependency on priv-set module.
4863         * modules/write-any-file: Likewise.
4864
4865         Tests for module 'priv-set'.
4866         * modules/priv-set-tests: New file.
4867         * tests/test-priv-set.c: New file.
4868
4869 2009-05-03  Jim Meyering  <meyering@redhat.com>
4870             Bruno Haible  <bruno@clisp.org>
4871
4872         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
4873         use the converted UTF-8 variant of the name instead.
4874
4875 2009-05-03  Jim Meyering  <meyering@redhat.com>
4876
4877         tests: tighten some getdate tests
4878         * tests/test-getdate.c (main): Tighten tests: require equality,
4879         not just greater than.  Set TZ envvar to UTC0.
4880
4881 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
4882
4883         getdate: correctly interpret "next monday" when run on a Monday
4884         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
4885         that e.g., "next tues" (when run on a tuesday) results in a date
4886         that is one week in the future, and not today's date.
4887         I.e., add a week when the wday is the same as the current one.
4888         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
4889         and earlier by Martin Bernreuther and Jan Minář.
4890         * tests/test-getdate.c (main): Check that "next DAY" is always in
4891         the future and that "last DAY" is always in the past.
4892
4893 2009-05-02  Jim Meyering  <meyering@redhat.com>
4894
4895         build: ensure that a release build fails when a submodule is unclean
4896         * top/maint.mk (no-submodule-changes): New rule.
4897         (alpha beta major): Depend on it.
4898
4899 2009-05-02  Bruno Haible  <bruno@clisp.org>
4900
4901         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
4902         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
4903         shell variable gl_fnmatch_required to detect which variant is
4904         requested.
4905         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
4906         gl_FUNC_FNMATCH_POSIX.
4907         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
4908         exclude fnmatch-posix.
4909
4910 2009-05-02  Bruno Haible  <bruno@clisp.org>
4911
4912         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
4913         * modules/mbsrtowcs (License): Change to LGPLv2+.
4914         * modules/strnlen1 (License): Likewise.
4915         Reported by Simon Josefsson.
4916
4917 2009-05-02  Bruno Haible  <bruno@clisp.org>
4918
4919         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
4920         "cross".
4921         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
4922         gnulib-tool was called with option --source-base=lib.
4923
4924 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4925
4926         Use automake *-local hooks without commands, for extensibility.
4927         * modules/localcharset (Makefile.am): Rename install-exec-local
4928         rule to install-exec-localcharset, and make it a prerequisite of
4929         install-exec-local.  Likewise, rename the uninstall-local rule to
4930         uninstall-localcharset, and make it a prerequisite of the former.
4931
4932 2009-05-01  Bruno Haible  <bruno@clisp.org>
4933
4934         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
4935         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
4936         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
4937         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
4938         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
4939         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
4940         m4/locale-zh.m4, m4/codeset.m4.
4941
4942         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
4943         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
4944         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
4945         m4/locale-zh.m4.
4946
4947         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
4948         REPLACE_WCRTOMB if mbstate_t must be replaced.
4949         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
4950         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
4951
4952 2009-05-01  Bruno Haible  <bruno@clisp.org>
4953
4954         Avoid compiler warnings when redefining macros defined by <libintl.h>.
4955         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
4956         dngettext, dcngettext, textdomain, bindtextdomain,
4957         bind_textdomain_codeset): Undefine before redefining.
4958
4959 2009-04-30  Bruno Haible  <bruno@clisp.org>
4960
4961         Fix bug introduced on 2009-04-25.
4962         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
4963         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
4964         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
4965         is defined.
4966         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
4967         is defined.
4968         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
4969         is defined.
4970         Reported by Elbert_Pol <elbert.pol@gmail.com>.
4971
4972 2009-04-28  Bruno Haible  <bruno@clisp.org>
4973
4974         Comment tweaks.
4975         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
4976         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
4977         * lib/unicase.h (u*_casexfrm): Likewise.
4978         Reported by Paolo Bonzini.
4979
4980 2009-04-28  Bruno Haible  <bruno@clisp.org>
4981
4982         Fix a compilation error.
4983         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
4984         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
4985         Reported by Jim Meyering.
4986
4987 2009-04-27  Bruno Haible  <bruno@clisp.org>
4988
4989         New module 'libunistring'.
4990         * modules/libunistring: New file.
4991         * m4/libunistring.m4: New file.
4992         * MODULES.html.sh (Unicode string functions): Add it.
4993
4994 2009-04-27  Eric Blake  <ebb9@byu.net>
4995
4996         maint.mk: allow package-specific header to provide <config.h>
4997         * top/maint.mk (sc_require_config_h): New variable.
4998         (sc_require_config_h, sc_require_config_h_first): Use it.
4999
5000 2009-04-27  Simon Josefsson  <simon@josefsson.org>
5001
5002         * top/maint.mk (sc_avoid_if_before_free): Except
5003         useless-if-before-free script.
5004
5005 2009-04-27  Eric Blake  <ebb9@byu.net>
5006
5007         maintainer-makefile: depend on all required helper scripts
5008         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
5009         useless-if-before-free.
5010         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
5011         version, rather than assuming gnulib checkout is available.
5012         Reported by Simen Josefsson.
5013
5014 2009-04-26  Bruno Haible  <bruno@clisp.org>
5015
5016         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
5017         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
5018         "../" or "..".
5019
5020 2009-04-26  Bruno Haible  <bruno@clisp.org>
5021
5022         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
5023         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
5024         AC_LIB_HAVE_LINKFLAGS.
5025
5026 2009-04-26  Bruno Haible  <bruno@clisp.org>
5027
5028         Simplify calling convention of u*_conv_from_encoding.
5029         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
5030         u32_conv_from_encoding): Expect a resultbuf argument and return the
5031         result directly as a pointer.
5032         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
5033         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
5034         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
5035         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
5036         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
5037         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
5038         Update.
5039         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
5040         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
5041         * lib/vasnprintf.c (VASNPRINTF): Update.
5042         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
5043         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
5044         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
5045         * NEWS: Mention the change.
5046
5047 2009-04-26  Bruno Haible  <bruno@clisp.org>
5048
5049         Simplify calling convention of u*_conv_to_encoding.
5050         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
5051         u32_conv_to_encoding): Expect a resultbuf argument and return the
5052         result directly as a pointer.
5053         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
5054         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
5055         freeing scaled_offsets if mem_iconveha failed.
5056         * lib/unicase/u-casexfrm.h (FUNC): Update.
5057         * lib/uninorm/u-normxfrm.h (FUNC): Update.
5058         * lib/vasnprintf.c (VASNPRINTF): Update.
5059         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
5060         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
5061         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
5062         * NEWS: Mention the change.
5063
5064 2009-04-26  Bruno Haible  <bruno@clisp.org>
5065
5066         Avoid test failures on AIX and OSF/1.
5067         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
5068         malloc(0).
5069         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
5070         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
5071         Likewise.
5072         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
5073         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
5074         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
5075         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
5076         * doc/posix-functions/malloc.texi: Document the portability problem
5077         related to malloc(0).
5078
5079 2009-04-26  Bruno Haible  <bruno@clisp.org>
5080
5081         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
5082         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
5083         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
5084
5085 2009-04-25  Bruno Haible  <bruno@clisp.org>
5086
5087         Avoid link error when creating a namespace clean library.
5088         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
5089         as macro with arguments if already defined as an alias.
5090         * lib/signbitf.c (gl_signbitf): Don't undefine.
5091         * lib/signbitd.c (gl_signbitd): Don't undefine.
5092         * lib/signbitl.c (gl_signbitl): Don't undefine.
5093
5094 2009-04-25  Jim Meyering  <meyering@redhat.com>
5095
5096         vc-list-files: fix another quoting bug
5097         * build-aux/vc-list-files: Avoid sed backslash expansion
5098         of pathological directory names.
5099
5100 2009-04-25  Eric Blake  <ebb9@byu.net>
5101
5102         vc-list-files: fix shell quoting error
5103         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
5104         timestamp.
5105
5106 2009-04-25  Jim Meyering  <meyering@redhat.com>
5107
5108         vc-list-files: restore lost functionality with subdir argument
5109         * build-aux/vc-list-files: When given a non-"." sub-directory
5110         argument, substitute the $dir/ prefix back onto each resulting name.
5111         Otherwise, coreutils' root_tests check would fail.
5112
5113 2009-04-24  Eric Blake  <ebb9@byu.net>
5114
5115         vc-list-files: ignore git symlinks
5116         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
5117         than ls-files, to ignore git symlinks.
5118
5119         maint.mk: import improvements from m4
5120         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
5121         (move_if_change): Delete unused macro.
5122         (news-date-check, vc-diff-check): Support VPATH builds.
5123         (announcement): Likewise.  Split --bootstrap-tools list...
5124         (boostrap-tools): ...into separate list, which can be overridden
5125         in cfg.mk.
5126         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
5127         requiring dependency on useless-if-before-free module.
5128         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
5129         Support VPATH builds.
5130
5131 2009-04-24  Jim Meyering  <meyering@redhat.com>
5132
5133         maint.mk: remove coreutils-specific rules and variables
5134         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
5135         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
5136         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
5137
5138         maint.mk: remove obsolete rule
5139         * top/maint.mk (rel-check): Remove rule.
5140         (WGET, WGETFLAGS): Remove now-unused variables.
5141
5142 2009-04-24  Simon Josefsson  <simon@josefsson.org>
5143
5144         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
5145         consistency.
5146
5147         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
5148         '$(PATH_SEPARATOR)' instead of ':'.
5149
5150 2009-04-24  Simon Josefsson  <simon@josefsson.org>
5151
5152         * lib/getopt1.c (main): Use 'const' for static array.
5153
5154 2009-04-24  Simon Josefsson  <simon@josefsson.org>
5155
5156         * top/maint.mk: Sync with coreutils.
5157         * NEWS: Explain incompatibilities.
5158
5159 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5160             Bruno Haible  <bruno@clisp.org>
5161
5162         Fix cross-compilation results.
5163         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
5164         statement, as third argument of AC_TRY_RUN.
5165         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
5166         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
5167         Likewise.
5168         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
5169         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
5170         Likewise.
5171         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
5172         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
5173         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
5174
5175 2009-04-20  Bruno Haible  <bruno@clisp.org>
5176
5177         Avoid test failure on mingw.
5178         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
5179
5180 2009-04-20  Bruno Haible  <bruno@clisp.org>
5181
5182         Avoid compilation error on mingw.
5183         * modules/localename-tests (Depends-on): Add locale.
5184
5185 2009-04-19  Bruno Haible  <bruno@clisp.org>
5186
5187         Support for building a shared library on Windows platforms.
5188         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
5189         (main): Test the presence of UNINORM_NFC here.
5190         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
5191         (main): Test the presence of UNINORM_NFD here.
5192         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
5193         (main): Test the presence of UNINORM_NFKC here.
5194         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
5195         (main): Test the presence of UNINORM_NFKD here.
5196
5197 2009-04-19  Bruno Haible  <bruno@clisp.org>
5198
5199         Avoid a compiler warning.
5200         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
5201         Change type of variable 'sequence'.
5202
5203 2009-04-19  Bruno Haible  <bruno@clisp.org>
5204
5205         * modules/configmake (Makefile.am): When the contents of configmake.h
5206         does not change, arrange to preserve its modification time.
5207
5208 2009-04-17  Simon Josefsson  <simon@josefsson.org>
5209
5210         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
5211         gettext domain.
5212
5213 2009-04-16  Jim Meyering  <meyering@redhat.com>
5214
5215         useless-if-before-free: improve conversion code
5216         * build-aux/useless-if-before-free: Adjust code-in-comment to match
5217         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
5218
5219 2009-04-14  Bruno Haible  <bruno@clisp.org>
5220
5221         * modules/fcntl (Depends-on): Add extensions.
5222         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
5223
5224 2009-04-12  Ben Pfaff  <blp@gnu.org>
5225
5226         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
5227         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
5228
5229 2009-03-20  Ben Pfaff  <blp@gnu.org>
5230
5231         Make rename replace existing destinations on Windows.
5232         * m4/rename.m4: Add test for Mingw.
5233         * lib/rename.c: Add rename replacement that uses MoveFileEx with
5234         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
5235         * doc/posix-functions/rename.texi: Document.
5236
5237 2009-04-10  Bruno Haible  <bruno@clisp.org>
5238
5239         New include file "iconveh.h".
5240         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
5241         * lib/striconveh.h: Include it.
5242         (enum iconv_ilseq_handler): Remove definition.
5243         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
5244         striconveh.h.
5245         * lib/striconveha.c: Include striconveh.h.
5246         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
5247         * modules/striconveh (Files): Add lib/iconveh.h.
5248         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
5249         lib/striconveh.h.
5250
5251 2009-04-10  Bruno Haible  <bruno@clisp.org>
5252
5253         * lib/uniconv.h: Update comment.
5254
5255 2009-04-10  Bruno Haible  <bruno@clisp.org>
5256
5257         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
5258         always.
5259         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
5260         * lib/unistr/u16-mbtouc-aux.c: Likewise.
5261         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
5262         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
5263         "unistring-notinline.h", so that the function gets defined always.
5264         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
5265         * lib/unistr/u8-uctomb.c: Likewise.
5266         * lib/unistr/u16-mbtouc.c: Likewise.
5267         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
5268         * lib/unistr/u16-uctomb.c: Likewise.
5269         * lib/unistr/u32-mbtouc.c: Likewise.
5270         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
5271         * lib/unistr/u32-uctomb.c: Likewise.
5272
5273 2009-04-10  Bruno Haible  <bruno@clisp.org>
5274
5275         Mark 'utime' obsolete.
5276         * modules/utime (Status, Notice): New sections.
5277         Suggested by Jim Meyering.
5278
5279         Fix cross-compile guess for utime test.
5280         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
5281         autoconf.
5282         * doc/posix-functions/utime.texi: Give more precisions.
5283         Reported by Jan <ipif@ymail.com>.
5284
5285 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
5286
5287         filevercmp: correct today's change
5288         * lib/filevercmp.c: Also handle coreutils' test inputs.
5289         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
5290
5291         Fix regression in 'filevercmp' module. Thanks Sven Joachim
5292         for reporting it.
5293         * lib/filevercmp.c: Special handle for "", "." and "..".
5294         * tests/test-filevercmp.c: Enlarge the set suite.
5295
5296 2009-04-07  Jim Meyering  <meyering@redhat.com>
5297
5298         useless-if-before-free: show how to remove braced useless free, too
5299         * build-aux/useless-if-before-free: still only in a comment, though.
5300
5301 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
5302
5303         maint.mk: import changes to syntax-check macros from coreutils
5304         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
5305         Use them in the relevant macros.
5306
5307 2009-04-06  Bruno Haible  <bruno@clisp.org>
5308
5309         Fix unportable use of bit-fields.
5310         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
5311         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
5312         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
5313
5314 2009-04-06  Bruno Haible  <bruno@clisp.org>
5315
5316         Avoid test failures on AIX and OSF/1.
5317         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
5318         that malloc(0) = NULL.
5319         * tests/unicase/test-u8-tolower.c (check): Likewise.
5320         * tests/unicase/test-u8-totitle.c (check): Likewise.
5321         * tests/unicase/test-u8-toupper.c (check): Likewise.
5322         * tests/unicase/test-u16-casefold.c (check): Likewise.
5323         * tests/unicase/test-u16-tolower.c (check): Likewise.
5324         * tests/unicase/test-u16-totitle.c (check): Likewise.
5325         * tests/unicase/test-u16-toupper.c (check): Likewise.
5326         * tests/unicase/test-u32-casefold.c (check): Likewise.
5327         * tests/unicase/test-u32-tolower.c (check): Likewise.
5328         * tests/unicase/test-u32-totitle.c (check): Likewise.
5329         * tests/unicase/test-u32-toupper.c (check): Likewise.
5330         * tests/uninorm/test-u8-nfc.c (check): Likewise.
5331         * tests/uninorm/test-u8-nfd.c (check): Likewise.
5332         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
5333         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
5334         * tests/uninorm/test-u16-nfc.c (check): Likewise.
5335         * tests/uninorm/test-u16-nfd.c (check): Likewise.
5336         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
5337         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
5338         * tests/uninorm/test-u32-nfc.c (check): Likewise.
5339         * tests/uninorm/test-u32-nfd.c (check): Likewise.
5340         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
5341         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
5342
5343 2009-04-05  Bruno Haible  <bruno@clisp.org>
5344
5345         Work around an autoconf limitation.
5346         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
5347         comment line if it would be longer than 3 KB.
5348
5349 2009-04-05  Bruno Haible  <bruno@clisp.org>
5350
5351         Avoid test failure with libiconv-1.13.
5352         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
5353         of the expected test results.
5354
5355 2009-04-05  Bruno Haible  <bruno@clisp.org>
5356
5357         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
5358         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
5359         that it should be installed.
5360
5361 2009-04-05  Bruno Haible  <bruno@clisp.org>
5362
5363         * gnulib-tool: New option --copy-file.
5364         (func_usage): Document it.
5365         (func_dest_tmpfilename): Moved out of func_import.
5366         (func_add_file, func_update_file): New functions, extracted from
5367         func_import.
5368         (func_import): Update.
5369
5370 2009-04-05  Karl Berry  <karl@gnu.org>
5371
5372         * README: prominently mention gnulib-tool.
5373         Rearrange sections so getting the code is near the top.
5374
5375 2009-04-05  Bruno Haible  <bruno@clisp.org>
5376
5377         * lib/unicase.h: Mention u*_cmp2.
5378         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
5379         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
5380         * lib/unicase/ulc-casecmp.c: Likewise.
5381         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
5382         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
5383         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
5384         unistr/u8-cmp.
5385         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
5386         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
5387         unistr/u16-cmp.
5388         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
5389         unistr/u32-cmp.
5390
5391         * lib/uninorm.h: Mention u*_cmp2.
5392         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
5393         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
5394         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
5395         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
5396         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
5397         unistr/u8-cmp.
5398         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
5399         unistr/u16-cmp.
5400         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
5401         unistr/u32-cmp.
5402
5403         New module 'unistr/u32-cmp2'.
5404         * lib/unistr/u32-cmp2.c: New file.
5405         * modules/unistr/u32-cmp2: New file.
5406
5407         New module 'unistr/u16-cmp2'.
5408         * lib/unistr/u16-cmp2.c: New file.
5409         * modules/unistr/u16-cmp2: New file.
5410
5411         New module 'unistr/u8-cmp2'.
5412         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
5413         * lib/unistr/u8-cmp2.c: New file.
5414         * lib/unistr/u-cmp2.h: New file.
5415         * modules/unistr/u8-cmp2: New file.
5416
5417 2009-04-05  Bruno Haible  <bruno@clisp.org>
5418
5419         * lib/unictype.h (uc_property_is_valid): New macro.
5420         * tests/unictype/test-pr_byname.c (main): Use it.
5421
5422         * lib/unistr.h: Doc fixes.
5423         * lib/uniconv.h: Doc fixes.
5424         * lib/unictype.h: Doc fixes.
5425
5426 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
5427
5428         Port coreutils 7.2 to Solaris 8.
5429
5430         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
5431         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
5432         for Solaris 8.  This is a bit of a hack, as it means it's the
5433         caller's responsibility to add -lnsl if needed, but most likely it
5434         won't be needed since only getaddrinfo uses this and getaddrinfo
5435         isn't needed on Solaris 8.
5436
5437         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
5438         problem to Solaris 8 encountered with coreutils 7.2, which
5439         resulted in a message "fnmatch.c:292: warning: passing argument 4
5440         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
5441         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
5442
5443 2009-04-03  Simon Josefsson  <simon@josefsson.org>
5444
5445         * m4/ld-version-script.m4: Add FIXME comment.
5446
5447 2009-04-02  Simon Josefsson  <simon@josefsson.org>
5448
5449         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
5450         SOVERSION variable.
5451
5452 2009-04-02  Bruno Haible  <bruno@clisp.org>
5453
5454         * Makefile (info, html, dvi, pdf): Combine the rules.
5455         Suggested by Jim Meyering.
5456
5457 2009-04-01  Bruno Haible  <bruno@clisp.org>
5458
5459         * Makefile (info, html, dvi, pdf): New targets.
5460         Reported by Reuben Thomas <rrt@sc3d.org>.
5461
5462 2009-04-01  Bruno Haible  <bruno@clisp.org>
5463
5464         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
5465         can be put into PATH.
5466         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
5467
5468 2009-04-01  Bruno Haible  <bruno@clisp.org>
5469
5470         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
5471
5472 2009-04-01  Bruno Haible  <bruno@clisp.org>
5473
5474         Rename module 'visibility'.
5475         * modules/lib-symbol-visibility: Renamed from modules/visibility.
5476         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
5477         * doc/gnulib.texi: Update.
5478         * MODULES.html.sh (Misc): Update.
5479         * NEWS: Mention the change.
5480
5481 2009-04-01  Simon Josefsson  <simon@josefsson.org>
5482
5483         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
5484         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
5485         Eric Blake <ebb9@byu.net> for review.
5486         * MODULES.html.sh: Add lib-msvc-compat.
5487         * doc/gnulib.texi: Link to new section.
5488         * m4/ld-output-def.m4: New file.
5489         * doc/ld-output-def.texi: New file.
5490
5491 2009-04-01  Simon Josefsson  <simon@josefsson.org>
5492
5493         Rename ld-version-script to lib-symbol-versions.  Suggested by
5494         Bruno Haible <bruno@clisp.org>.
5495         * modules/ld-version-script: Renamed to lib-symbol-versions.
5496         * doc/ld-version-script.texi: Fix module name.
5497         * MODULES.html.sh: Add lib-symbol-versions.
5498
5499 2009-03-31  Simon Josefsson  <simon@josefsson.org>
5500
5501         * modules/u64-tests: New file.
5502         * tests/test-u64.c: New file.
5503
5504 2009-03-04  Simon Josefsson  <simon@josefsson.org>
5505
5506         * MODULES.html.sh: Mention u64.
5507         * modules/u64: New module.
5508         * modules/crypto/sha512: Depend on u64 module instead of providing
5509         u64.h.
5510
5511 2009-03-27  Eric Blake  <ebb9@byu.net>
5512
5513         test-strerror: make debugging EAI_SYSTEM easier
5514         * modules/getaddrinfo-tests (Depends-on): Add strerror.
5515         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
5516         failure was EAI_SYSTEM.
5517
5518 2009-03-25  Bruno Haible  <bruno@clisp.org>
5519
5520         Fix a problem with --enable-relocatable on Solaris 7.
5521         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
5522         since 2008-02-24.
5523
5524 2009-03-25  Eric Blake  <ebb9@byu.net>
5525
5526         test-sockets: avoid gcc warning
5527         * tests/test-sockets.c (main): Silence compiler warning.
5528
5529 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
5530
5531         New modules nproc, pthread, contributed by Glen Lenker.
5532
5533         * MODULES.html.sh: Add pthread, nproc.
5534         * lib/nproc.c: New file.
5535         * lib/nproc.h: New file.
5536         * lib/pthread.in.h: New file.
5537         * m4/pthread.m4: New file.
5538         * modules/nproc: New file.
5539         * modules/pthread: New file.
5540
5541 2009-03-24  Simon Josefsson  <simon@josefsson.org>
5542
5543         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
5544         New variable.
5545
5546 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
5547
5548         filevercmp: handle simple~ and numbered.~3~ backup suffixes
5549         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
5550         * tests/test-filevercmp.c: Add tests for backup suffixes.
5551
5552 2009-03-24  Simon Josefsson  <simon@josefsson.org>
5553
5554         * modules/stdlib (Depends-on): Add stdint, needed when defining
5555         struct random_data on, for example, HP-UX 10.20.  Reported by
5556         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
5557
5558 2009-03-24  Simon Josefsson  <simon@josefsson.org>
5559
5560         * lib/readline.c (readline): Call fflush on stdout after printing
5561         prompt.
5562
5563 2009-03-20  Bruno Haible  <bruno@clisp.org>
5564
5565         Remove dependency from 'close' module to -lws2_32 on native Windows.
5566         * lib/close-hook.h: New file.
5567         * lib/close-hook.c: New file.
5568         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
5569         w32sock.h.
5570         (_gl_close_fd_maybe_socket): Remove function.
5571         (rpl_close): Invoke execute_all_close_hooks instead of
5572         _gl_close_fd_maybe_socket.
5573         * lib/sockets.c: Include close-hook.h, w32sock.h.
5574         (close_fd_maybe_socket): New function, essentially from lib/close.c.
5575         (close_sockets_hook): New variable.
5576         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
5577         (gl_sockets_cleanup): Unregister it.
5578         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
5579         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
5580         * modules/close-hook: New file.
5581         * modules/close (Files): Remove lib/w32sock.h.
5582         (Depends-on): Add close-hook.
5583         (Link): Remove section.
5584         * modules/sockets (Files): Add lib/w32sock.h.
5585         (Depends-on): Add close-hook.
5586         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
5587         invocation.
5588         * NEWS: Mention that LIB_CLOSE is gone.
5589
5590 2009-03-23  Eric Blake  <ebb9@byu.net>
5591
5592         signal-tests: test previous patch
5593         * tests/test-signal.c: New file.
5594         * modules/signal-tests: Likewise.
5595
5596         signal.h: always support 'volatile sig_atomic_t'
5597         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
5598         (gl_SIGNAL_H_DEFAULTS): Add a default.
5599         * modules/signal (Makefile.am): Substitute if needed.
5600         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
5601         users can blindly add volatile.
5602         * doc/posix-headers/signal.texi (signal.h): Document it.
5603         Reported by Matthew Woehlke.
5604
5605 2009-03-23  Jim Meyering  <meyering@redhat.com>
5606
5607         pathmax: PATH_MAX: use pathconf only when available
5608         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
5609         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
5610         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
5611         This avoids a link failure in a PSP cross-compilation environment
5612         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
5613
5614         * lib/vasnprintf.c (divide): Fix typo in comment.
5615
5616 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5617
5618         * gnulib-tool (func_filter_filelist): Fix comment.
5619
5620 2009-03-20  Bruno Haible  <bruno@clisp.org>
5621
5622         Make sockets.h self-contained.
5623         * lib/sockets.c: Include sockets.h first.
5624         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
5625
5626 2009-03-19  Eric Blake  <ebb9@byu.net>
5627
5628         doc: mention more functions added in cygwin 1.7.0
5629         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
5630         addition.
5631         * doc/posix-functions/log2f.texi: Likewise.
5632
5633 2009-03-19  Jim Meyering  <meyering@redhat.com>
5634
5635         fsusage: avoid syntax error due to statement-before-declaration
5636         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
5637         after all declarations.  Reported by Matthew Woehlke in
5638         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
5639
5640 2009-03-18  Eric Blake  <ebb9@byu.net>
5641
5642         build-aux/compile: sync from automake
5643         * build-aux/compile: New file, from automake.
5644         * config/srclist.txt: Mention build-aux/compile.
5645
5646 2009-03-17  Bruno Haible  <bruno@clisp.org>
5647
5648         * lib/git-merge-changelog.c: Fix typo in comment.
5649         Reported by Reuben Thomas <rrt@sc3d.org>.
5650
5651 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
5652
5653         * m4/regex.m4: update and improve help for
5654         --without-included-regex.
5655
5656 2009-03-17  Simon Josefsson  <simon@josefsson.org>
5657
5658         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
5659         failure on missing include files.
5660
5661 2009-03-17  Eric Blake  <ebb9@byu.net>
5662
5663         doc: mention more functions added in cygwin 1.7.0
5664         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
5665         addition.
5666         * doc/posix-functions/fwscanf.texi: Likewise.
5667         * doc/posix-functions/swprintf.texi: Likewise.
5668         * doc/posix-functions/swscanf.texi: Likewise.
5669         * doc/posix-functions/vfwprintf.texi: Likewise.
5670         * doc/posix-functions/vfwscanf.texi: Likewise.
5671         * doc/posix-functions/vswprintf.texi: Likewise.
5672         * doc/posix-functions/vswscanf.texi: Likewise.
5673         * doc/posix-functions/vwprintf.texi: Likewise.
5674         * doc/posix-functions/vwscanf.texi: Likewise.
5675         * doc/posix-functions/wcscasecmp.texi: Likewise.
5676         * doc/posix-functions/wcsdup.texi: Likewise.
5677         * doc/posix-functions/wcsftime.texi: Likewise.
5678         * doc/posix-functions/wcsncasecmp.texi: Likewise.
5679         * doc/posix-functions/wprintf.texi: Likewise.
5680         * doc/posix-functions/wscanf.texi: Likewise.
5681         * doc/glibc-functions/gethostbyname2.texi: Likewise.
5682
5683 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5684
5685         maint.mk: really add $(AM_MAKEFLAGS)
5686         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
5687         was inadvertently omitted in the last commit.
5688         Spotted by Bruno Haible.
5689
5690         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
5691         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
5692         $(AM_MAKEFLAGS)' rather than plain `make'.
5693
5694         gnulib-tool: execute $MAKE not make
5695         * gnulib-tool: Default $MAKE to 'make'.
5696         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
5697         than make.  Initialize $MAKE in the do-autobuild script.
5698
5699         gnulib-tool: use $MAKE not make in generated files
5700         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
5701         make, in generated files.  Initialize $MAKE in the do-autobuild
5702         script.
5703
5704         * top/GNUmakefile (_have-git-version-gen): Fix typo.
5705
5706         GNUmakefile: disable parallelism only for multiple, recursive targets
5707         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
5708         additions in the Makefile.
5709         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
5710         by Automake.
5711         (.NOTPARALLEL): Only disable parallel builds if multiple targets
5712         are listed on the command line and at least one of them is
5713         listed in $(ALL_RECURSIVE_TARGETS).
5714
5715 2009-03-14  Bruno Haible  <bruno@clisp.org>
5716
5717         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
5718         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
5719         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
5720         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
5721         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
5722         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
5723         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
5724         unistr/u8-uctomb.
5725         * modules/unistr/u8-strchr (Depends-on): Likewise.
5726         * modules/unistr/u8-strrchr (Depends-on): Likewise.
5727         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
5728         unistr/u16-uctomb.
5729         * modules/unistr/u16-strchr (Depends-on): Likewise.
5730         * modules/unistr/u16-strrchr (Depends-on): Likewise.
5731
5732 2009-03-12  Bruno Haible  <bruno@clisp.org>
5733
5734         Work around select() bug on Interix 3.5.
5735         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
5736         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
5737         * m4/select.m4: New file.
5738         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
5739         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
5740         * modules/select (Files): Add m4/select.m4.
5741         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
5742         * modules/nanosleep (Depends-on): Add select.
5743         * modules/poll (Depends-on): Likewise.
5744         * doc/posix-functions/select.texi: Mention the Interix bug.
5745         Reported by Markus Duft <mduft@gentoo.org>.
5746
5747         * lib/select.c: Renamed from lib/winsock-select.c.
5748         * modules/select (Files): Add lib/select.c, remove
5749         lib/winsock-select.c.
5750         (configure.ac): Update.
5751
5752 2009-03-12  Jim Meyering  <meyering@redhat.com>
5753
5754         avoid gcc warnings about unused macro definitions
5755         * lib/readtokens.c (STREQ): Remove unused definition.
5756         * lib/xmalloc.c (SIZE_MAX): Likewise.
5757         * lib/openat-die.c (N_): Likewise.
5758         * lib/mountlist.c (SIZE_MAX): Remove definition.
5759         Instead, include <stdint.h>.
5760         * lib/readutmp.c: Likewise.
5761         * modules/readutmp (Depends-on): Add stdint.
5762         * modules/mountlist (Depends-on): Add stdint.
5763         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
5764
5765 2009-03-10  Bruno Haible  <bruno@clisp.org>
5766
5767         Tests for module 'mbmemcasecoll'.
5768         * modules/mbmemcasecoll-tests: New file.
5769         * tests/test-mbmemcasecoll1.sh: New file.
5770         * tests/test-mbmemcasecoll2.sh: New file.
5771         * tests/test-mbmemcasecoll3.sh: New file.
5772         * tests/test-mbmemcasecoll.c: New file.
5773
5774         New module 'mbmemcasecoll'.
5775         * lib/mbmemcasecoll.h: New file.
5776         * lib/mbmemcasecoll.c: New file.
5777         * modules/mbmemcasecoll: New file.
5778
5779         * tests/test-mbmemcasecmp.h: New file, extracted from
5780         tests/test-mbmemcasecmp.c.
5781         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
5782         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
5783         (main): Update.
5784         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
5785
5786 2009-03-09  Bruno Haible  <bruno@clisp.org>
5787
5788         Tests for module 'mbmemcasecmp'.
5789         * modules/mbmemcasecmp-tests: New file.
5790         * tests/test-mbmemcasecmp1.sh: New file.
5791         * tests/test-mbmemcasecmp2.sh: New file.
5792         * tests/test-mbmemcasecmp3.sh: New file.
5793         * tests/test-mbmemcasecmp.c: New file.
5794
5795         New module 'mbmemcasecmp'.
5796         * lib/mbmemcasecmp.h: New file.
5797         * lib/mbmemcasecmp.c: New file.
5798         * modules/mbmemcasecmp: New file.
5799
5800 2009-03-09  Bruno Haible  <bruno@clisp.org>
5801
5802         Tests for module 'unicase/ulc-casecoll'.
5803         * modules/unicase/ulc-casecoll-tests: New file.
5804         * tests/unicase/test-ulc-casecoll1.sh: New file.
5805         * tests/unicase/test-ulc-casecoll2.sh: New file.
5806         * tests/unicase/test-ulc-casecoll.c: New file.
5807
5808         New module 'unicase/ulc-casecoll'.
5809         * lib/unicase.h (ulc_casecoll): New declaration.
5810         * lib/unicase/ulc-casecoll.c: New file.
5811         * modules/unicase/ulc-casecoll: New file.
5812
5813         New module 'unicase/ulc-casexfrm'.
5814         * lib/unicase.h (ulc_casexfrm): New declaration.
5815         * lib/unicase/ulc-casexfrm.c: New file.
5816         * modules/unicase/ulc-casexfrm: New file.
5817
5818 2009-03-09  Bruno Haible  <bruno@clisp.org>
5819
5820         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
5821         invocations.
5822
5823         * m4/mbscasecmp.m4: Remove file.
5824         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
5825         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
5826
5827         * m4/mbscasestr.m4: Remove file.
5828         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
5829         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
5830
5831         * m4/mbschr.m4: Remove file.
5832         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
5833         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
5834
5835         * m4/mbscspn.m4: Remove file.
5836         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
5837         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
5838
5839         * m4/mbslen.m4: Remove file.
5840         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
5841         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
5842
5843         * m4/mbsncasecmp.m4: Remove file.
5844         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
5845         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
5846
5847         * m4/mbsnlen.m4: Remove file.
5848         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
5849         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
5850
5851         * m4/mbspbrk.m4: Remove file.
5852         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
5853         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
5854
5855         * m4/mbspcasecmp.m4: Remove file.
5856         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
5857         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
5858
5859         * m4/mbsrchr.m4: Remove file.
5860         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
5861         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
5862
5863         * m4/mbssep.m4: Remove file.
5864         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
5865         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
5866
5867         * m4/mbsspn.m4: Remove file.
5868         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
5869         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
5870
5871         * m4/mbsstr.m4: Remove file.
5872         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
5873         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
5874
5875         * m4/mbstok_r.m4: Remove file.
5876         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
5877         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
5878
5879         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
5880
5881         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
5882         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
5883
5884         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
5885
5886 2009-03-08  Bruno Haible  <bruno@clisp.org>
5887
5888         Tests for module 'unicase/ulc-casecmp'.
5889         * modules/unicase/ulc-casecmp-tests: New file.
5890         * tests/unicase/test-ulc-casecmp1.sh: New file.
5891         * tests/unicase/test-ulc-casecmp2.sh: New file.
5892         * tests/unicase/test-ulc-casecmp.c: New file.
5893
5894         New module 'unicase/ulc-casecmp'.
5895         * lib/unicase.h (ulc_casecmp): New declaration.
5896         * lib/unicase/ulc-casecmp.c: New file.
5897         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
5898         'const SRC_UNIT *'.
5899         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
5900         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
5901         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
5902         * modules/unicase/ulc-casecmp: New file.
5903
5904         Tests for module 'unicase/u32-is-cased'.
5905         * modules/unicase/u32-is-cased-tests: New file.
5906         * tests/unicase/test-u32-is-cased.c: New file.
5907
5908         Tests for module 'unicase/u16-is-cased'.
5909         * modules/unicase/u16-is-cased-tests: New file.
5910         * tests/unicase/test-u16-is-cased.c: New file.
5911
5912         Tests for module 'unicase/u8-is-cased'.
5913         * modules/unicase/u8-is-cased-tests: New file.
5914         * tests/unicase/test-u8-is-cased.c: New file.
5915         * tests/unicase/test-is-cased.h: New file.
5916
5917         New module 'unicase/u32-is-cased'.
5918         * lib/unicase/u32-is-cased.c: New file.
5919         * modules/unicase/u32-is-cased: New file.
5920
5921         New module 'unicase/u16-is-cased'.
5922         * lib/unicase/u16-is-cased.c: New file.
5923         * modules/unicase/u16-is-cased: New file.
5924
5925         New module 'unicase/u8-is-cased'.
5926         * lib/unicase/u8-is-cased.c: New file.
5927         * lib/unicase/u-is-cased.h: New file.
5928         * modules/unicase/u8-is-cased: New file.
5929
5930         Tests for module 'unicase/u32-is-casefolded'.
5931         * modules/unicase/u32-is-casefolded-tests: New file.
5932         * tests/unicase/test-u32-is-casefolded.c: New file.
5933
5934         Tests for module 'unicase/u16-is-casefolded'.
5935         * modules/unicase/u16-is-casefolded-tests: New file.
5936         * tests/unicase/test-u16-is-casefolded.c: New file.
5937
5938         Tests for module 'unicase/u8-is-casefolded'.
5939         * modules/unicase/u8-is-casefolded-tests: New file.
5940         * tests/unicase/test-u8-is-casefolded.c: New file.
5941         * tests/unicase/test-is-casefolded.h: New file.
5942
5943         New module 'unicase/u32-is-casefolded'.
5944         * lib/unicase/u32-is-casefolded.c: New file.
5945         * modules/unicase/u32-is-casefolded: New file.
5946
5947         New module 'unicase/u16-is-casefolded'.
5948         * lib/unicase/u16-is-casefolded.c: New file.
5949         * modules/unicase/u16-is-casefolded: New file.
5950
5951         New module 'unicase/u8-is-casefolded'.
5952         * lib/unicase/u8-is-casefolded.c: New file.
5953         * modules/unicase/u8-is-casefolded: New file.
5954
5955         Tests for module 'unicase/u32-is-titlecase'.
5956         * modules/unicase/u32-is-titlecase-tests: New file.
5957         * tests/unicase/test-u32-is-titlecase.c: New file.
5958
5959         Tests for module 'unicase/u16-is-titlecase'.
5960         * modules/unicase/u16-is-titlecase-tests: New file.
5961         * tests/unicase/test-u16-is-titlecase.c: New file.
5962
5963         Tests for module 'unicase/u8-is-titlecase'.
5964         * modules/unicase/u8-is-titlecase-tests: New file.
5965         * tests/unicase/test-u8-is-titlecase.c: New file.
5966         * tests/unicase/test-is-titlecase.h: New file.
5967
5968         New module 'unicase/u32-is-titlecase'.
5969         * lib/unicase/u32-is-titlecase.c: New file.
5970         * modules/unicase/u32-is-titlecase: New file.
5971
5972         New module 'unicase/u16-is-titlecase'.
5973         * lib/unicase/u16-is-titlecase.c: New file.
5974         * modules/unicase/u16-is-titlecase: New file.
5975
5976         New module 'unicase/u8-is-titlecase'.
5977         * lib/unicase/u8-is-titlecase.c: New file.
5978         * modules/unicase/u8-is-titlecase: New file.
5979
5980         Tests for module 'unicase/u32-is-lowercase'.
5981         * modules/unicase/u32-is-lowercase-tests: New file.
5982         * tests/unicase/test-u32-is-lowercase.c: New file.
5983
5984         Tests for module 'unicase/u16-is-lowercase'.
5985         * modules/unicase/u16-is-lowercase-tests: New file.
5986         * tests/unicase/test-u16-is-lowercase.c: New file.
5987
5988         Tests for module 'unicase/u8-is-lowercase'.
5989         * modules/unicase/u8-is-lowercase-tests: New file.
5990         * tests/unicase/test-u8-is-lowercase.c: New file.
5991         * tests/unicase/test-is-lowercase.h: New file.
5992
5993         New module 'unicase/u32-is-lowercase'.
5994         * lib/unicase/u32-is-lowercase.c: New file.
5995         * modules/unicase/u32-is-lowercase: New file.
5996
5997         New module 'unicase/u16-is-lowercase'.
5998         * lib/unicase/u16-is-lowercase.c: New file.
5999         * modules/unicase/u16-is-lowercase: New file.
6000
6001         New module 'unicase/u8-is-lowercase'.
6002         * lib/unicase/u8-is-lowercase.c: New file.
6003         * modules/unicase/u8-is-lowercase: New file.
6004
6005         Tests for module 'unicase/u32-is-uppercase'.
6006         * modules/unicase/u32-is-uppercase-tests: New file.
6007         * tests/unicase/test-u32-is-uppercase.c: New file.
6008
6009         Tests for module 'unicase/u16-is-uppercase'.
6010         * modules/unicase/u16-is-uppercase-tests: New file.
6011         * tests/unicase/test-u16-is-uppercase.c: New file.
6012
6013         Tests for module 'unicase/u8-is-uppercase'.
6014         * modules/unicase/u8-is-uppercase-tests: New file.
6015         * tests/unicase/test-u8-is-uppercase.c: New file.
6016         * tests/unicase/test-is-uppercase.h: New file.
6017
6018         New module 'unicase/u32-is-uppercase'.
6019         * lib/unicase/u32-is-uppercase.c: New file.
6020         * modules/unicase/u32-is-uppercase: New file.
6021
6022         New module 'unicase/u16-is-uppercase'.
6023         * lib/unicase/u16-is-uppercase.c: New file.
6024         * modules/unicase/u16-is-uppercase: New file.
6025
6026         New module 'unicase/u8-is-uppercase'.
6027         * lib/unicase/u8-is-uppercase.c: New file.
6028         * modules/unicase/u8-is-uppercase: New file.
6029
6030         New module 'unicase/u32-is-invariant'.
6031         * lib/unicase/u32-is-invariant.c: New file.
6032         * modules/unicase/u32-is-invariant: New file.
6033
6034         New module 'unicase/u16-is-invariant'.
6035         * lib/unicase/u16-is-invariant.c: New file.
6036         * modules/unicase/u16-is-invariant: New file.
6037
6038         New module 'unicase/u8-is-invariant'.
6039         * lib/unicase/u8-is-invariant.c: New file.
6040         * lib/unicase/invariant.h: New file.
6041         * lib/unicase/u-is-invariant.h: New file.
6042         * modules/unicase/u8-is-invariant: New file.
6043
6044         Tests for module 'unicase/u32-casecoll'.
6045         * modules/unicase/u32-casecoll-tests: New file.
6046         * tests/unicase/test-u32-casecoll.c: New file.
6047
6048         Tests for module 'unicase/u16-casecoll'.
6049         * modules/unicase/u16-casecoll-tests: New file.
6050         * tests/unicase/test-u16-casecoll.c: New file.
6051
6052         Tests for module 'unicase/u8-casecoll'.
6053         * modules/unicase/u8-casecoll-tests: New file.
6054         * tests/unicase/test-u8-casecoll.c: New file.
6055
6056         New module 'unicase/u32-casecoll'.
6057         * lib/unicase/u32-casecoll.c: New file.
6058         * modules/unicase/u32-casecoll: New file.
6059
6060         New module 'unicase/u16-casecoll'.
6061         * lib/unicase/u16-casecoll.c: New file.
6062         * modules/unicase/u16-casecoll: New file.
6063
6064         New module 'unicase/u8-casecoll'.
6065         * lib/unicase/u8-casecoll.c: New file.
6066         * lib/unicase/u-casecoll.h: New file.
6067         * modules/unicase/u8-casecoll: New file.
6068
6069         New module 'unicase/u32-casexfrm'.
6070         * lib/unicase/u32-casexfrm.c: New file.
6071         * modules/unicase/u32-casexfrm: New file.
6072
6073         New module 'unicase/u16-casexfrm'.
6074         * lib/unicase/u16-casexfrm.c: New file.
6075         * modules/unicase/u16-casexfrm: New file.
6076
6077         New module 'unicase/u8-casexfrm'.
6078         * lib/unicase/u8-casexfrm.c: New file.
6079         * lib/unicase/u-casexfrm.h: New file.
6080         * modules/unicase/u8-casexfrm: New file.
6081
6082         Tests for module 'unicase/u32-casecmp'.
6083         * modules/unicase/u32-casecmp-tests: New file.
6084         * tests/unicase/test-u32-casecmp.c: New file.
6085
6086         Tests for module 'unicase/u16-casecmp'.
6087         * modules/unicase/u16-casecmp-tests: New file.
6088         * tests/unicase/test-u16-casecmp.c: New file.
6089
6090         Tests for module 'unicase/u8-casecmp'.
6091         * modules/unicase/u8-casecmp-tests: New file.
6092         * tests/unicase/test-u8-casecmp.c: New file.
6093         * tests/unicase/test-casecmp.h: New file.
6094
6095         New module 'unicase/u32-casecmp'.
6096         * lib/unicase/u32-casecmp.c: New file.
6097         * modules/unicase/u32-casecmp: New file.
6098
6099         New module 'unicase/u16-casecmp'.
6100         * lib/unicase/u16-casecmp.c: New file.
6101         * modules/unicase/u16-casecmp: New file.
6102
6103         New module 'unicase/u8-casecmp'.
6104         * lib/unicase/u8-casecmp.c: New file.
6105         * lib/unicase/u-casecmp.h: New file.
6106         * modules/unicase/u8-casecmp: New file.
6107
6108         Tests for module 'unicase/u32-casefold'.
6109         * modules/unicase/u32-casefold-tests: New file.
6110         * tests/unicase/test-u32-casefold.c: New file.
6111
6112         Tests for module 'unicase/u16-casefold'.
6113         * modules/unicase/u16-casefold-tests: New file.
6114         * tests/unicase/test-u16-casefold.c: New file.
6115
6116         Tests for module 'unicase/u8-casefold'.
6117         * modules/unicase/u8-casefold-tests: New file.
6118         * tests/unicase/test-u8-casefold.c: New file.
6119
6120         New module 'unicase/u32-casefold'.
6121         * lib/unicase/u32-casefold.c: New file.
6122         * modules/unicase/u32-casefold: New file.
6123
6124         New module 'unicase/u16-casefold'.
6125         * lib/unicase/u16-casefold.c: New file.
6126         * modules/unicase/u16-casefold: New file.
6127
6128         New module 'unicase/u8-casefold'.
6129         * lib/unicase/u8-casefold.c: New file.
6130         * lib/unicase/u-casefold.h: New file.
6131         * modules/unicase/u8-casefold: New file.
6132
6133         New module 'unicase/tocasefold'.
6134         * lib/unicase/casefold.h: New file.
6135         * lib/unicase/tocasefold.c: New file.
6136         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
6137         * modules/unicase/tocasefold: New file.
6138
6139         Tests for module 'unicase/u32-totitle'.
6140         * modules/unicase/u32-totitle-tests: New file.
6141         * tests/unicase/test-u32-totitle.c: New file.
6142
6143         Tests for module 'unicase/u16-totitle'.
6144         * modules/unicase/u16-totitle-tests: New file.
6145         * tests/unicase/test-u16-totitle.c: New file.
6146
6147         Tests for module 'unicase/u8-totitle'.
6148         * modules/unicase/u8-totitle-tests: New file.
6149         * tests/unicase/test-u8-totitle.c: New file.
6150
6151         New module 'unicase/u32-totitle'.
6152         * lib/unicase/u32-totitle.c: New file.
6153         * modules/unicase/u32-totitle: New file.
6154
6155         New module 'unicase/u16-totitle'.
6156         * lib/unicase/u16-totitle.c: New file.
6157         * modules/unicase/u16-totitle: New file.
6158
6159         New module 'unicase/u8-totitle'.
6160         * lib/unicase/u8-totitle.c: New file.
6161         * lib/unicase/u-totitle.h: New file.
6162         * modules/unicase/u8-totitle: New file.
6163
6164         Tests for module 'unicase/u32-tolower'.
6165         * modules/unicase/u32-tolower-tests: New file.
6166         * tests/unicase/test-u32-tolower.c: New file.
6167
6168         Tests for module 'unicase/u16-tolower'.
6169         * modules/unicase/u16-tolower-tests: New file.
6170         * tests/unicase/test-u16-tolower.c: New file.
6171
6172         Tests for module 'unicase/u8-tolower'.
6173         * modules/unicase/u8-tolower-tests: New file.
6174         * tests/unicase/test-u8-tolower.c: New file.
6175
6176         New module 'unicase/u32-tolower'.
6177         * lib/unicase/u32-tolower.c: New file.
6178         * modules/unicase/u32-tolower: New file.
6179
6180         New module 'unicase/u16-tolower'.
6181         * lib/unicase/u16-tolower.c: New file.
6182         * modules/unicase/u16-tolower: New file.
6183
6184         New module 'unicase/u8-tolower'.
6185         * lib/unicase/u8-tolower.c: New file.
6186         * modules/unicase/u8-tolower: New file.
6187
6188         Tests for module 'unicase/u32-toupper'.
6189         * modules/unicase/u32-toupper-tests: New file.
6190         * tests/unicase/test-u32-toupper.c: New file.
6191
6192         Tests for module 'unicase/u16-toupper'.
6193         * modules/unicase/u16-toupper-tests: New file.
6194         * tests/unicase/test-u16-toupper.c: New file.
6195
6196         Tests for module 'unicase/u8-toupper'.
6197         * modules/unicase/u8-toupper-tests: New file.
6198         * tests/unicase/test-u8-toupper.c: New file.
6199
6200         New module 'unicase/u32-toupper'.
6201         * lib/unicase/u32-toupper.c: New file.
6202         * modules/unicase/u32-toupper: New file.
6203
6204         New module 'unicase/u16-toupper'.
6205         * lib/unicase/u16-toupper.c: New file.
6206         * modules/unicase/u16-toupper: New file.
6207
6208         New module 'unicase/u8-toupper'.
6209         * lib/unicase/u8-toupper.c: New file.
6210         * modules/unicase/u8-toupper: New file.
6211
6212         New module 'unicase/u32-casemap'.
6213         * lib/unicase/u32-casemap.c: New file.
6214         * modules/unicase/u32-casemap: New file.
6215
6216         New module 'unicase/u16-casemap'.
6217         * lib/unicase/u16-casemap.c: New file.
6218         * modules/unicase/u16-casemap: New file.
6219
6220         New module 'unicase/u8-casemap'.
6221         * lib/unicase/unicasemap.h: New file.
6222         * lib/unicase/u8-casemap.c: New file.
6223         * lib/unicase/u-casemap.h: New file.
6224         * modules/unicase/u8-casemap: New file.
6225
6226         New module 'unicase/special-casing'.
6227         * lib/unicase/special-casing.h: New file.
6228         * lib/unicase/special-casing.c: New file.
6229         * lib/unicase/special-casing-table.gperf: New file, generated by
6230         gen-uni-tables.c.
6231         * modules/unicase/special-casing: New file.
6232
6233         Tests for module 'unicase/locale-language'.
6234         * modules/unicase/locale-language-tests: New file.
6235         * tests/unicase/test-locale-language.sh: New file.
6236         * tests/unicase/test-locale-language.c: New file.
6237
6238         New module 'unicase/locale-language'.
6239         * lib/unicase/locale-language.c: New file.
6240         * lib/unicase/locale-languages.gperf: New file.
6241         * modules/unicase/locale-language: New file.
6242
6243         Generate more tables for case conversion and case folding.
6244         * lib/gen-uni-tables.c (SCC_*): New enum items.
6245         (struct special_casing_rule): New type.
6246         (casing_rules, num_casing_rules, allocated_casing_rules): New
6247         variables.
6248         (add_casing_rule, fill_casing_rules): New functions.
6249         (struct casefold_rule): New type.
6250         (casefolding_rules, num_casefolding_rules,
6251         allocated_casefolding_rules): New variables.
6252         (fill_casefolding_rules): New function.
6253         (unicode_casefold): New variable.
6254         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
6255         sort_casing_rules, output_casing_rules): New functions.
6256         (main): Accept to more arguments: SpecialCasing.txt and
6257         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
6258         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
6259         Output mapping for casefolding.
6260
6261         * lib/unicase.h: Include stdbool.h, uninorm.h.
6262         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
6263         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
6264         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
6265         arguments.
6266         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
6267         resultp arguments.
6268         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
6269         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
6270         resultp arguments.
6271         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
6272         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
6273         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
6274         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
6275         declarations.
6276         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
6277
6278 2009-03-08  Bruno Haible  <bruno@clisp.org>
6279
6280         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
6281         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
6282         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
6283         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
6284
6285 2009-03-07  Bruno Haible  <bruno@clisp.org>
6286
6287         Adjust u*_normcmp, u*_normcoll API.
6288         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
6289         u16_normcoll, u32_normcoll): Change failure conventions.
6290         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
6291         errno and return -1.
6292         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
6293
6294 2009-03-07  Bruno Haible  <bruno@clisp.org>
6295
6296         Tests for module 'uninorm/u32-normcoll'.
6297         * modules/uninorm/u32-normcoll-tests: New file.
6298         * tests/uninorm/test-u32-normcoll.c: New file.
6299
6300         Tests for module 'uninorm/u16-normcoll'.
6301         * modules/uninorm/u16-normcoll-tests: New file.
6302         * tests/uninorm/test-u16-normcoll.c: New file.
6303
6304         Tests for module 'uninorm/u8-normcoll'.
6305         * modules/uninorm/u8-normcoll-tests: New file.
6306         * tests/uninorm/test-u8-normcoll.c: New file.
6307
6308 2009-03-07  Bruno Haible  <bruno@clisp.org>
6309
6310         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
6311         tests/uninorm/test-u32-normcmp.c.
6312         * tests/uninorm/test-u32-normcmp.c: Include it.
6313         (test_nonascii): New function, extracted from main. Add some more
6314         tests.
6315         (main): Invoke test_ascii and test_nonascii.
6316         * modules/uninorm/u32-normcmp-tests (Files): Add
6317         tests/uninorm/test-u32-normcmp.h.
6318         (Depends-on): Remove uninorm/u32-normcmp.
6319
6320         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
6321         tests/uninorm/test-u16-normcmp.c.
6322         * tests/uninorm/test-u16-normcmp.c: Include it.
6323         (test_nonascii): New function, extracted from main. Add some more
6324         tests.
6325         (main): Invoke test_ascii and test_nonascii.
6326         * modules/uninorm/u16-normcmp-tests (Files): Add
6327         tests/uninorm/test-u16-normcmp.h.
6328         (Depends-on): Remove uninorm/u16-normcmp.
6329
6330         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
6331         tests/uninorm/test-u8-normcmp.c.
6332         * tests/uninorm/test-u8-normcmp.c: Include it.
6333         (test_nonascii): New function, extracted from main. Add some more
6334         tests.
6335         (main): Invoke test_ascii and test_nonascii.
6336         * modules/uninorm/u8-normcmp-tests (Files): Add
6337         tests/uninorm/test-u8-normcmp.h.
6338         (Depends-on): Remove uninorm/u8-normcmp.
6339
6340 2009-03-07  Bruno Haible  <bruno@clisp.org>
6341
6342         New module 'uninorm/u32-normcoll'.
6343         * lib/uninorm/u32-normcoll.c: New file.
6344         * modules/uninorm/u32-normcoll: New file.
6345
6346         New module 'uninorm/u16-normcoll'.
6347         * lib/uninorm/u16-normcoll.c: New file.
6348         * modules/uninorm/u16-normcoll: New file.
6349
6350         New module 'uninorm/u8-normcoll'.
6351         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
6352         declarations.
6353         * lib/uninorm/u8-normcoll.c: New file.
6354         * lib/uninorm/u-normcoll.h: New file.
6355         * modules/uninorm/u8-normcoll: New file.
6356
6357         New module 'uninorm/u32-normxfrm'.
6358         * lib/uninorm/u32-normxfrm.c: New file.
6359         * modules/uninorm/u32-normxfrm: New file.
6360
6361         New module 'uninorm/u16-normxfrm'.
6362         * lib/uninorm/u16-normxfrm.c: New file.
6363         * modules/uninorm/u16-normxfrm: New file.
6364
6365         New module 'uninorm/u8-normxfrm'.
6366         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
6367         declarations.
6368         * lib/uninorm/u8-normxfrm.c: New file.
6369         * lib/uninorm/u-normxfrm.h: New file.
6370         * modules/uninorm/u8-normxfrm: New file.
6371
6372 2009-03-07  Bruno Haible  <bruno@clisp.org>
6373
6374         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
6375         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
6376         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
6377
6378 2009-03-07  Bruno Haible  <bruno@clisp.org>
6379
6380         New module 'memxfrm'.
6381         * lib/memxfrm.h: New file.
6382         * lib/memxfrm.c: New file.
6383         * modules/memxfrm: New file.
6384
6385 2009-03-07  Bruno Haible  <bruno@clisp.org>
6386
6387         New module 'memcmp2'.
6388         * lib/memcmp2.h: New file.
6389         * lib/memcmp2.c: New file.
6390         * modules/memcmp2: New file.
6391
6392 2009-03-07  Bruno Haible  <bruno@clisp.org>
6393
6394         Tests for module 'uninorm/decomposing-form'.
6395         * modules/uninorm/decomposing-form-tests: New file.
6396         * tests/uninorm/test-decomposing-form.c: New file.
6397
6398         New module 'uninorm/decomposing-form'.
6399         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
6400         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
6401         Add 'decomposing_variant' field.
6402         * lib/uninorm/decomposing-form.c: New file.
6403         * lib/uninorm/nfc.c (uninorm_nfc): Update.
6404         * lib/uninorm/nfd.c (uninorm_nfd): Update.
6405         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
6406         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
6407         * modules/uninorm/decomposing-form: New file.
6408         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
6409         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
6410
6411 2009-03-07  Bruno Haible  <bruno@clisp.org>
6412
6413         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
6414         strings.
6415
6416 2009-03-06  Bruno Haible  <bruno@clisp.org>
6417
6418         Tests for module 'uninorm/u32-normcmp'.
6419         * tests/uninorm/test-u32-normcmp.c: New file.
6420         * modules/uninorm/u32-normcmp-tests: New file.
6421
6422         Tests for module 'uninorm/u16-normcmp'.
6423         * tests/uninorm/test-u16-normcmp.c: New file.
6424         * modules/uninorm/u16-normcmp-tests: New file.
6425
6426         Tests for module 'uninorm/u8-normcmp'.
6427         * tests/uninorm/test-u8-normcmp.c: New file.
6428         * modules/uninorm/u8-normcmp-tests: New file.
6429
6430         New module 'uninorm/u32-normcmp'.
6431         * lib/uninorm/u32-normcmp.c: New file.
6432         * modules/uninorm/u32-normcmp: New file.
6433
6434         New module 'uninorm/u16-normcmp'.
6435         * lib/uninorm/u16-normcmp.c: New file.
6436         * modules/uninorm/u16-normcmp: New file.
6437
6438         New module 'uninorm/u8-normcmp'.
6439         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
6440         declarations.
6441         * lib/uninorm/u8-normcmp.c: New file.
6442         * lib/uninorm/u-normcmp.h: New file.
6443         * modules/uninorm/u8-normcmp: New file.
6444
6445 2009-03-06  Bruno Haible  <bruno@clisp.org>
6446
6447         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
6448         Reported by Eric Blake.
6449
6450 2009-03-06  Eric Blake  <ebb9@byu.net>
6451             Bruno Haible  <bruno@clisp.org>
6452
6453         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
6454         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
6455         condition.
6456         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
6457         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
6458         condition.
6459         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
6460
6461 2009-03-06  Eric Blake  <ebb9@byu.net>
6462
6463         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
6464         to avoid compiler warnings.
6465         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
6466
6467 2009-03-05  Bruno Haible  <bruno@clisp.org>
6468
6469         * tests/test-ftell.c (main): Disable test beyond end of file on
6470         FreeMiNT.
6471         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
6472
6473 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
6474
6475         * lib/filevercmp.c: Move hidden files up in ordering.
6476         * tests/test-filevercmp.c: Add tests for hidden files.
6477
6478 2009-03-04  Bruno Haible  <bruno@clisp.org>
6479
6480         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
6481         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
6482         AM_CFLAGS.
6483         Reported by Simon Josefsson.
6484
6485 2009-03-03  Bruno Haible  <bruno@clisp.org>
6486
6487         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
6488         Reported by Simon Josefsson.
6489
6490         * doc/ld-version-script.texi: Update node reference.
6491
6492 2009-03-03  Bruno Haible  <bruno@clisp.org>
6493
6494         * modules/visibility (License): Change to 'unlimited'.
6495         Suggested by Simon Josefsson.
6496
6497 2009-03-03  Jim Meyering  <meyering@redhat.com>
6498
6499         unlinkdir: cannot_unlink_dir may modify process state
6500         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
6501         it's neither thread-safe nor appropriate for use in a library.
6502
6503 2009-03-03  Eric Blake  <ebb9@byu.net>
6504
6505         test-closein: silence test under Darwin
6506         * tests/test-closein.sh: Ignore stderr from cat, since we don't
6507         care if it dies from EPIPE or EBADF.
6508
6509 2009-03-03  Bruno Haible  <bruno@clisp.org>
6510
6511         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
6512         earlier.
6513         * doc/visibility.texi: Fix @node and @section.
6514
6515 2009-03-03  Simon Josefsson  <simon@josefsson.org>
6516
6517         * doc/gnulib.texi: Link to sections for ld version script and
6518         visibility.
6519         * doc/visibility.texi: Add @node and @section.
6520         * modules/ld-version-script: New module.
6521         * m4/ld-version-script.m4: New file.
6522         * doc/ld-version-script.texi: New file.
6523
6524 2009-03-02  David Lutterkort  <lutter@redhat.com>
6525
6526         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
6527         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
6528
6529 2009-03-02  Bruno Haible  <bruno@clisp.org>
6530
6531         * doc/visibility.texi: Mention libtool's -export-symbols option.
6532
6533 2009-03-02  Jim Meyering  <meyering@redhat.com>
6534
6535         announce-gen: new option: --no-print-checksums
6536         * build-aux/announce-gen (usage): Describe it.
6537         (print_checksums): Print a newline here, not in the [*] footnote.
6538         (main): Honor it.
6539
6540 2009-03-01  Bruno Haible  <bruno@clisp.org>
6541
6542         Use socklen_t in the native Windows replacements prototypes.
6543         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
6544         instead of 'int'.
6545         * lib/getsockopt.c (rpl_getsockopt): Likewise.
6546         * lib/setsockopt.c (rpl_setsockopt): Likewise.
6547         * modules/getsockopt (Depends-on): Add socklen.
6548         * modules/setsockopt (Depends-on): Add socklen.
6549
6550 2009-03-01  Bruno Haible  <bruno@clisp.org>
6551
6552         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
6553         least 4.2.
6554
6555 2009-03-01  Eric Blake  <ebb9@byu.net>
6556             Bruno Haible  <bruno@clisp.org>
6557
6558         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
6559         error messages.
6560         * lib/wait-process.c (wait_subprocess): Omit error message about
6561         deadly signal sent to the child of termsigp != NULL.
6562
6563 2009-03-01  Eric Blake  <ebb9@byu.net>
6564
6565         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
6566
6567 2009-03-01  Bruno Haible  <bruno@clisp.org>
6568
6569         Avoid a gcc warning.
6570         * tests/test-sched.c (b): Make global.
6571         Reported by Eric Blake.
6572
6573 2009-01-19  Martin Lambers  <marlam@marlam.de>
6574
6575         Provide POSIX semantics for socket timeout options on W32.
6576         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
6577         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
6578         * modules/setsockopt: Depend on sys_time module for struct timeval.
6579         * modules/getsockopt: Depend on sys_time module for struct timeval.
6580
6581 2009-03-01  Simon Josefsson  <simon@josefsson.org>
6582
6583         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
6584         __USE_GNU, for consistency with netdb.in.h.
6585         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
6586
6587 2009-03-01  Bruno Haible  <bruno@clisp.org>
6588
6589         More support for FreeMiNT.
6590         * lib/fseeko.c (rpl_fseeko): Complete last commit.
6591         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
6592
6593 2009-03-01  Bruno Haible  <bruno@clisp.org>
6594
6595         More support for FreeMiNT.
6596         * lib/fpurge.c (fpurge): Correct last commit.
6597         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
6598
6599 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6600
6601         Fix unportable awk script in vc-list-files.
6602         * build-aux/vc-list-files: In the replacement awk script, use
6603         substr with a second argument of 1, not zero.
6604         Report by Simon Josefsson.
6605
6606 2009-02-28  Bruno Haible  <bruno@clisp.org>
6607
6608         More support for FreeMiNT.
6609         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
6610         to FreeMiNT today.
6611         * lib/fwriting.c (fwriting): Likewise.
6612         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
6613
6614 2009-02-28  Bruno Haible  <bruno@clisp.org>
6615
6616         * tests/test-freadseek.c (main): Disable test beyond end of file on
6617         FreeMiNT.
6618         * tests/test-ftello.c (main): Likewise.
6619         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
6620
6621 2009-02-28  Bruno Haible  <bruno@clisp.org>
6622
6623         Add tentative support for FreeMiNT.
6624         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
6625         * lib/fpurge.c (fpurge): Likewise.
6626         * lib/freadable.c (freadable): Likewise.
6627         * lib/freading.c (freading): Likewise.
6628         * lib/freadptr.c (freadptr): Likewise.
6629         * lib/freadseek.c (freadptrinc): Likewise.
6630         * lib/fseeko.c (rpl_fseeko): Likewise.
6631         * lib/fseterr.c (fseterr): Likewise.
6632         * lib/fwritable.c (fwritable): Likewise.
6633         * lib/fwriting.c (fwriting): Likewise.
6634         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
6635         Hourihane.
6636         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
6637
6638 2009-02-28  Bruno Haible  <bruno@clisp.org>
6639
6640         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
6641         SIGCHLD.
6642         Reported by Jim Meyering.
6643
6644 2009-02-28  Bruno Haible  <bruno@clisp.org>
6645
6646         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
6647         Mention the results of these tests on various platforms.
6648         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
6649         order.
6650         * doc/posix-functions/printf.texi: Likewise.
6651         * doc/posix-functions/snprintf.texi: Likewise.
6652         * doc/posix-functions/sprintf.texi: Likewise.
6653         * doc/posix-functions/vfprintf.texi: Likewise.
6654         * doc/posix-functions/vprintf.texi: Likewise.
6655         * doc/posix-functions/vsnprintf.texi: Likewise.
6656         * doc/posix-functions/vsprintf.texi: Likewise.
6657         * doc/glibc-functions/obstack_printf.texi: Likewise.
6658         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
6659
6660 2009-02-28  Bruno Haible  <bruno@clisp.org>
6661
6662         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
6663         Reported by Loïc Minier <lool@dooz.org>.
6664
6665 2009-02-27  Bruno Haible  <bruno@clisp.org>
6666
6667         * gnulib-tool (func_import): Make the sed expression used to create the
6668         sed script for updating the .gitignore file POSIX compliant.
6669         Reported by Eric Blake.
6670
6671 2009-02-27  Bruno Haible  <bruno@clisp.org>
6672
6673         * gnulib-tool (sed): Don't alias as "sed --posix".
6674         Reported by Eric Blake.
6675
6676 2009-02-27  Bruno Haible  <bruno@clisp.org>
6677
6678         Avoid test link errors.
6679         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
6680         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
6681         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
6682         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
6683         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
6684
6685 2009-02-27  Bruno Haible  <bruno@clisp.org>
6686
6687         Avoid spurious "(cached)" in configure output.
6688         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
6689         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
6690         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
6691         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
6692         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
6693         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
6694         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
6695         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
6696         Reported by Eric Blake.
6697
6698 2009-02-27  Eric Blake  <ebb9@byu.net>
6699
6700         printf: fix regression in previous patch
6701         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
6702
6703 2009-02-27  Bruno Haible  <bruno@clisp.org>
6704
6705         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
6706         value.
6707         * lib/stdint.in.h: Likewise.
6708         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
6709
6710 2009-02-27  Eric Blake  <ebb9@byu.net>
6711
6712         doc: mention more functions added in cygwin 1.7.0
6713         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
6714         addition.
6715         * doc/posix-functions/open_wmemstream.texi: Likewise.
6716         * doc/posix-functions/wcsnlen.texi: Likewise.
6717         * doc/posix-functions/wcsnrtombs.texi: Likewise.
6718         * doc/posix-functions/wcstod.texi: Likewise.
6719         * doc/posix-functions/wcstof.texi: Likewise.
6720         * doc/posix-functions/wcstoimax.texi: Likewise.
6721         * doc/posix-functions/wcstok.texi: Likewise.
6722         * doc/posix-functions/wcstoumax.texi: Likewise.
6723
6724         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
6725         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
6726         * doc/posix-functions/fprintf.texi: Update.
6727         * doc/posix-functions/printf.texi: Update.
6728         * doc/posix-functions/snprintf.texi: Update.
6729         * doc/posix-functions/sprintf.texi: Update.
6730         * doc/posix-functions/vfprintf.texi: Update.
6731         * doc/posix-functions/vprintf.texi: Update.
6732         * doc/posix-functions/vsnprintf.texi: Update.
6733         * doc/posix-functions/vsprintf.texi: Update.
6734         * doc/glibc-functions/obstack_printf.texi: Update.
6735         * doc/glibc-functions/obstack_vprintf.texi: Update.
6736
6737 2009-02-26  Eric Blake  <ebb9@byu.net>
6738
6739         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
6740         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
6741         compilation bug by using runtime conversion.
6742         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
6743         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
6744         * modules/ceill-tests (Files): Use nan.h.
6745         * modules/floorl-tests (Files): Likewise.
6746         * modules/frexpl-tests (Files): Likewise.
6747         * modules/isnanl-tests (Files): Likewise.
6748         * modules/ldexpl-tests (Files): Likewise.
6749         * modules/roundl-tests (Files): Likewise.
6750         * modules/truncl-tests (Files): Likewise.
6751         * tests/test-ceill.c (main): Use a working NaN.
6752         * tests/test-floorl.c (main): Likewise.
6753         * tests/test-frexpl.c (main): Likewise.
6754         * tests/test-isnan.c (test_long_double): Likewise.
6755         * tests/test-isnanl.h (main): Likewise.
6756         * tests/test-ldexpl.h (main): Likewise.
6757         * tests/test-roundl.h (main): Likewise.
6758         * tests/test-truncl.h (main): Likewise.
6759         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
6760
6761 2009-02-26  Eric Blake  <ebb9@byu.net>
6762             Bruno Haible  <bruno@clisp.org>
6763
6764         Work around a *printf bug with %ls on Solaris.
6765         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
6766         precision is specified, sprintf stops converting the wide string
6767         argument when the number of bytes that have been produced by this
6768         conversion equals or exceeds the precision.
6769         * doc/posix-functions/fprintf.texi: Update.
6770         * doc/posix-functions/printf.texi: Update.
6771         * doc/posix-functions/snprintf.texi: Update.
6772         * doc/posix-functions/sprintf.texi: Update.
6773         * doc/posix-functions/vfprintf.texi: Update.
6774         * doc/posix-functions/vprintf.texi: Update.
6775         * doc/posix-functions/vsnprintf.texi: Update.
6776         * doc/posix-functions/vsprintf.texi: Update.
6777         * doc/glibc-functions/obstack_printf.texi: Update.
6778         * doc/glibc-functions/obstack_vprintf.texi: Update.
6779
6780 2009-02-26  Eric Blake  <ebb9@byu.net>
6781
6782         stdlib: favor compiler check of random.h
6783         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
6784         to avoid an ObjC random.h installed by Swarm.
6785
6786 2009-02-26  Bruno Haible  <bruno@clisp.org>
6787
6788         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
6789         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
6790         Reported by Gary V. Vaughan <gary@gnu.org>.
6791
6792 2009-02-26  Bruno Haible  <bruno@clisp.org>
6793
6794         Fix *printf behaviour regarding the %ls directive.
6795         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
6796         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
6797         NEED_PRINTF_DIRECTIVE_LS.
6798         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
6799         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
6800         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
6801         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
6802         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
6803         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
6804         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
6805         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
6806         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
6807         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
6808         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
6809         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
6810         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
6811         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
6812         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
6813         * doc/posix-functions/fprintf.texi: Update.
6814         * doc/posix-functions/printf.texi: Update.
6815         * doc/posix-functions/snprintf.texi: Update.
6816         * doc/posix-functions/sprintf.texi: Update.
6817         * doc/posix-functions/vfprintf.texi: Update.
6818         * doc/posix-functions/vprintf.texi: Update.
6819         * doc/posix-functions/vsnprintf.texi: Update.
6820         * doc/posix-functions/vsprintf.texi: Update.
6821         * doc/glibc-functions/obstack_printf.texi: Update.
6822         * doc/glibc-functions/obstack_vprintf.texi: Update.
6823         Reported by Eric Blake.
6824
6825 2009-02-25  Bruno Haible  <bruno@clisp.org>
6826
6827         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
6828         with known value.
6829         Reported by Gary V. Vaughan <gary@gnu.org>.
6830
6831 2009-02-25  Bruno Haible  <bruno@clisp.org>
6832
6833         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
6834         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
6835         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
6836         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
6837         Reported by Gary V. Vaughan <gary@gnu.org>.
6838
6839 2009-02-25  Bruno Haible  <bruno@clisp.org>
6840
6841         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
6842         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
6843         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
6844         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
6845         Reported by Gary V. Vaughan <gary@gnu.org>.
6846
6847 2009-02-25  Eric Blake  <ebb9@byu.net>
6848
6849         tests: skip fseek/ftell tests if ungetc is broken
6850         * m4/ungetc.m4: New file.
6851         * modules/fseek-tests: Split test, so ungetc dependency is
6852         separate from rest of test.
6853         * modules/fseeko-tests: Likewise.
6854         * modules/ftell-tests: Likewise.
6855         * modules/ftello-tests: Likewise.
6856         * tests/test-fseek.c (main): Isolate ungetc dependency.
6857         * tests/test-fseeko.c (main): Likewise.
6858         * tests/test-ftell.c (main): Likewise.
6859         * tests/test-ftello.c (main): Likewise.
6860         * tests/test-fseek2.sh: New file.
6861         * tests/test-fseeko2.sh: Likewise.
6862         * tests/test-ftell2.sh: Likewise.
6863         * tests/test-ftello2.sh: Likewise.
6864
6865 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
6866
6867         test-getaddrinfo: fix usage of skip return code 77
6868         * tests/test-gettaddrinfo.c: Return skip code 77 only
6869         for first occurance of skip (4x77 is not 77)
6870
6871 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
6872
6873         strtod: avoid C99 decl-after-statement
6874         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
6875
6876 2009-02-24  Eric Blake  <ebb9@byu.net>
6877
6878         strtod: detect HP-UX 11.31 bug
6879         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
6880         Reported by Gary V. Vaughan.
6881
6882 2009-02-23  Bruno Haible  <bruno@clisp.org>
6883
6884         Fix invalid read past end of memory block.
6885         * lib/vasnprintf.c (DCHAR_SET): Define.
6886         (local_wcslen): Define only when needed.
6887         (local_strnlen, local_wcsnlen): New functions.
6888         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
6889         directives that involve a conversion ourselves.
6890         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
6891         wcsnlen, mbrtowc, wcrtomb.
6892         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
6893         * tests/test-vasprintf-posix.c (test_function): Likewise.
6894         * tests/test-snprintf-posix.h (test_function): Likewise.
6895         * tests/test-sprintf-posix.h (test_function): Likewise.
6896         Reported by Ben Pfaff <blp@cs.stanford.edu>.
6897
6898 2009-02-22  Bruno Haible  <bruno@clisp.org>
6899
6900         Implement new clarified decomposition of Hangul syllables.
6901         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
6902         of type LTV, return only a pairwise decomposition.
6903         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
6904         Likewise.
6905         * tests/uninorm/test-decomposition.c (main): Updated expected result.
6906         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
6907         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
6908
6909 2009-02-22  Bruno Haible  <bruno@clisp.org>
6910
6911         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
6912         zero-length results and shrink excess allocated memory.
6913         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
6914         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
6915         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
6916         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
6917         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
6918         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
6919         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
6920         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
6921         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
6922         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
6923         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
6924         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
6925
6926 2009-02-21  Bruno Haible  <bruno@clisp.org>
6927
6928         * doc/gnulib.texi: Include safe-alloc.texi earlier.
6929         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
6930         spaces after a period. Put a space between a macro name and its
6931         argument list. Trivial rewordings.
6932         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
6933         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
6934         (main): Return 0 explicitly.
6935
6936 2009-02-21  Bruno Haible  <bruno@clisp.org>
6937
6938         Tests for module 'uninorm/filter'.
6939         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
6940         * modules/uninorm/filter-tests: New file.
6941
6942         New module 'uninorm/filter'.
6943         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
6944         uninorm_filter_flush, uninorm_filter_free): New declarations.
6945         * lib/uninorm/uninorm-filter.c: New file.
6946         * modules/uninorm/filter: New file.
6947
6948 2009-02-21  Bruno Haible  <bruno@clisp.org>
6949
6950         Tests for module 'uninorm/nfkc'.
6951         * tests/uninorm/test-nfkc.c: New file.
6952         * tests/uninorm/test-u8-nfkc.c: New file.
6953         * tests/uninorm/test-u16-nfkc.c: New file.
6954         * tests/uninorm/test-u32-nfkc.c: New file.
6955         * tests/uninorm/test-u32-nfkc-big.sh: New file.
6956         * tests/uninorm/test-u32-nfkc-big.c: New file.
6957         * modules/uninorm/nfkc-tests: New file.
6958
6959         New module 'uninorm/nfkc'.
6960         * lib/uninorm/nfkc.c: New file.
6961         * modules/uninorm/nfkc: New file.
6962
6963         Tests for module 'uninorm/nfkd'.
6964         * tests/uninorm/test-nfkd.c: New file.
6965         * tests/uninorm/test-u8-nfkd.c: New file.
6966         * tests/uninorm/test-u16-nfkd.c: New file.
6967         * tests/uninorm/test-u32-nfkd.c: New file.
6968         * tests/uninorm/test-u32-nfkd-big.sh: New file.
6969         * tests/uninorm/test-u32-nfkd-big.c: New file.
6970         * modules/uninorm/nfkd-tests: New file.
6971
6972         New module 'uninorm/nfkd'.
6973         * lib/uninorm/nfkd.c: New file.
6974         * modules/uninorm/nfkd: New file.
6975
6976         Tests for module 'uninorm/nfc'.
6977         * tests/uninorm/test-nfc.c: New file.
6978         * tests/uninorm/test-u8-nfc.c: New file.
6979         * tests/uninorm/test-u16-nfc.c: New file.
6980         * tests/uninorm/test-u32-nfc.c: New file.
6981         * tests/uninorm/test-u32-nfc-big.sh: New file.
6982         * tests/uninorm/test-u32-nfc-big.c: New file.
6983         * modules/uninorm/nfc-tests: New file.
6984
6985         New module 'uninorm/nfc'.
6986         * lib/uninorm/nfc.c: New file.
6987         * modules/uninorm/nfc: New file.
6988
6989         Tests for module 'uninorm/nfd'.
6990         * tests/uninorm/test-nfd.c: New file.
6991         * tests/uninorm/test-u8-nfd.c: New file.
6992         * tests/uninorm/test-u16-nfd.c: New file.
6993         * tests/uninorm/test-u32-nfd.c: New file.
6994         * tests/uninorm/test-u32-nfd-big.sh: New file.
6995         * tests/uninorm/test-u32-nfd-big.c: New file.
6996         * tests/uninorm/test-u32-normalize-big.h: New file.
6997         * tests/uninorm/test-u32-normalize-big.c: New file.
6998         * tests/uninorm/NormalizationTest.txt: New file, created from
6999         Unicode 5.1.0 NormalizationTest.txt.
7000         * modules/uninorm/nfd-tests: New file.
7001
7002         New module 'uninorm/nfd'.
7003         * lib/uninorm/nfd.c: New file.
7004         * modules/uninorm/nfd: New file.
7005
7006         New module 'uninorm/u32-normalize'.
7007         * lib/uninorm/u32-normalize.c: New file.
7008         * modules/uninorm/u32-normalize: New file.
7009
7010         New module 'uninorm/u16-normalize'.
7011         * lib/uninorm/u16-normalize.c: New file.
7012         * modules/uninorm/u16-normalize: New file.
7013
7014         New module 'uninorm/u8-normalize'.
7015         * lib/uninorm/u8-normalize.c: New file.
7016         * lib/uninorm/normalize-internal.h: New file.
7017         * lib/uninorm/u-normalize-internal.h: New file.
7018         * modules/uninorm/u8-normalize: New file.
7019
7020         New module 'uninorm/decompose-internal'.
7021         * lib/uninorm/decompose-internal.c: New file.
7022         * modules/uninorm/decompose-internal: New file.
7023
7024         Tests for module 'uninorm/composition'.
7025         * tests/uninorm/test-composition.c: New file.
7026         * modules/uninorm/composition-tests: New file.
7027
7028         New module 'uninorm/composition'.
7029         * lib/uninorm/composition.c: New file.
7030         * lib/uninorm/composition-table.gperf: New file, generated by
7031         gen-uni-tables.
7032         * modules/uninorm/composition: New file.
7033
7034         Tests for module 'uninorm/compat-decomposition'.
7035         * tests/uninorm/test-compat-decomposition.c: New file.
7036         * modules/uninorm/compat-decomposition-tests: New file.
7037
7038         New module 'uninorm/compat-decomposition'.
7039         * lib/uninorm/decompose-internal.h: New file.
7040         * lib/uninorm/compat-decomposition.c: New file.
7041         * modules/uninorm/compat-decomposition: New file.
7042
7043         Tests for module 'uninorm/canonical-decomposition'.
7044         * tests/uninorm/test-canonical-decomposition.c: New file.
7045         * modules/uninorm/canonical-decomposition-tests: New file.
7046
7047         New module 'uninorm/canonical-decomposition'.
7048         * lib/uninorm/canonical-decomposition.c: New file.
7049         * modules/uninorm/canonical-decomposition: New file.
7050
7051         Tests for module 'uninorm/decomposition'.
7052         * tests/uninorm/test-decomposition.c: New file.
7053         * modules/uninorm/decomposition-tests: New file.
7054
7055         New module 'uninorm/decomposition'.
7056         * lib/uninorm/decomposition.c: New file.
7057         * modules/uninorm/decomposition: New file.
7058
7059         New module 'uninorm/decomposition-table'.
7060         * lib/uninorm/decomposition-table.h: New file.
7061         * lib/uninorm/decomposition-table.c: New file.
7062         * lib/uninorm/decomposition-table1.h: New file, generated by
7063         gen-uni-tables.
7064         * lib/uninorm/decomposition-table2.h: New file, generated by
7065         gen-uni-tables.
7066         * modules/uninorm/decomposition-table: New file.
7067
7068         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
7069         (UC_DECOMP_*): New enumeration items.
7070         (get_decomposition): New function.
7071         (struct decomp_table): New type.
7072         (output_decomposition, output_decomposition_tables): New functions.
7073         (unicode_composition_exclusions): New variable.
7074         (fill_composition_exclusions, debug_output_composition_tables): New
7075         functions.
7076         (main): Accept one more argument. Invoke fill_composition_exclusions.
7077         Output decomposition and composition tables.
7078
7079         New module 'uninorm/base'.
7080         * lib/uninorm.h: New file.
7081         * lib/unictype.h: Update comment.
7082         * modules/uninorm/base: New file.
7083
7084 2009-02-21  David Lutterkort  <lutter@redhat.com>
7085
7086         Tests for module 'safe-alloc'.
7087         * tests/test-safe-alloc.c: New file.
7088         * modules/safe-alloc-tests: New file.
7089
7090         New module 'safe-alloc'.
7091         * lib/safe-alloc.h: New file.
7092         * lib/safe-alloc.c: New file.
7093         * m4/safe-alloc.m4: New file.
7094         * modules/safe-alloc: New file.
7095         * doc/safe-alloc.texi: New file.
7096         * doc/gnulib.texi: Include it.
7097         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
7098         safe-alloc.
7099
7100 2009-02-18  Bruno Haible  <bruno@clisp.org>
7101
7102         Fix link error on non-glibc systems.
7103         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
7104         variable.
7105         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
7106
7107 2009-02-18  Jim Meyering  <meyering@redhat.com>
7108
7109         fts: avoid used-uninitialized error due to recent change
7110         * lib/fts.c (fts_read): Guard uses of the new member,
7111         parent->fts_n_dirs_remaining, since it's not relevant for
7112         the parent of a directory specified on the command-line.
7113
7114 2009-02-17  James Youngman  <jay@gnu.org>
7115             Bruno Haible  <bruno@clisp.org>
7116
7117         * m4/include_next.m4: Reformulate comment.
7118
7119 2009-02-16  Jim Meyering  <meyering@redhat.com>
7120
7121         fts: add #if guards so that the fts_lgpl module still builds
7122         * lib/fts.c: Guard just-added hash-table-using parts with
7123         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
7124         Reported by Simon Josefsson.
7125
7126 2009-02-15  Bruno Haible  <bruno@clisp.org>
7127
7128         * modules/array-mergesort-tests: New file.
7129         * tests/test-array-mergesort.c: New file.
7130
7131         New module 'array-mergesort'.
7132         * modules/array-mergesort: New file.
7133         * lib/array-mergesort.h: New file.
7134
7135 2009-02-15  Bruno Haible  <bruno@clisp.org>
7136
7137         Fix 2009-02-07 commit.
7138         * lib/gen-uni-tables.c (output_predicate, output_category,
7139         output_combclass, output_bidi_category, output_decimal_digit,
7140         output_digit, output_numeric, output_mirror, output_scripts,
7141         output_ident_category, output_simple_mapping): Fix format directives.
7142         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
7143
7144 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
7145
7146         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
7147         fixes are available from IBM.
7148
7149 2009-02-13  Jim Meyering  <meyering@redhat.com>
7150
7151         fts: arrange not to stat non-directories in more cases
7152         This makes GNU find (when it doesn't need to stat each file)
7153         *much* more efficient at traversing reiserfs file systems.
7154         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
7155         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
7156         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
7157         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
7158         (leaf_optimization_applies): New function.
7159         (LCO_hash, LCO_compare): New helper functions.
7160         (link_count_optimize_ok): New function.
7161         (fts_stat): Initialize new member (if dir).
7162         (fts_read): Decrement parent's fts_n_dirs_remaining count if
7163         we've just stat'ed a directory.  Skip the stat call when possible.
7164         ---
7165         Note this AFS-related exchange:
7166         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
7167         and note find's pioctl call in find/fstype.c.
7168         But that is necessary only if you want to enable the
7169         optimization for AFS, and for now, I don't.
7170
7171         fts: move a function definition "up" (no semantic change)
7172         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
7173         "up" to precede upcoming use of a related function.
7174
7175 2009-02-11  Jim Meyering  <meyering@redhat.com>
7176
7177         fts: correct internal computation of nlinks (optimization-related)
7178         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
7179         whether the current entry is a directory, so don't test it.
7180
7181 2009-02-10  Bruno Haible  <bruno@clisp.org>
7182
7183         Tests for module 'uniwbrk/ulc-wordbreaks'.
7184         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
7185         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
7186         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
7187
7188         Tests for module 'uniwbrk/u32-wordbreaks'.
7189         * modules/uniwbrk/u32-wordbreaks-tests: New file.
7190         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
7191
7192         Tests for module 'uniwbrk/u16-wordbreaks'.
7193         * modules/uniwbrk/u16-wordbreaks-tests: New file.
7194         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
7195
7196         Tests for module 'uniwbrk/u8-wordbreaks'.
7197         * modules/uniwbrk/u8-wordbreaks-tests: New file.
7198         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
7199
7200 2009-02-10  Bruno Haible  <bruno@clisp.org>
7201
7202         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
7203         property.
7204         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
7205         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
7206         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
7207
7208 2009-02-10  Simon Josefsson  <simon@josefsson.org>
7209
7210         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
7211         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
7212
7213 2009-02-10  Bruno Haible  <bruno@clisp.org>
7214
7215         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
7216         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
7217         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
7218         * lib/unilbrk/u8-possible-linebreaks.c: Update.
7219         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
7220         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
7221
7222 2009-02-09  Simon Josefsson  <simon@josefsson.org>
7223
7224         * lib/sockets.h (gl_fd_to_handle): New function.
7225
7226         * tests/test-sockets.c: Call gl_fd_to_handle.
7227
7228 2009-02-09  Bruno Haible  <bruno@clisp.org>
7229
7230         * doc/havelib.texi: Document the conventions on bi-arch systems.
7231
7232 2009-02-08  Bruno Haible  <bruno@clisp.org>
7233
7234         Document the AC_LIB_LINKFLAGS macro.
7235         * doc/havelib.texi: New file, mostly written on 2005-05-24.
7236         * doc/gnulib.texi: Include it.
7237
7238 2009-02-08  Bruno Haible  <bruno@clisp.org>
7239
7240         Fix wrong order of sections, compared to TOC.
7241         * doc/gnulib.texi: Include relocatable-maint.texi after the
7242         "Regular expressions" node, not before.
7243
7244 2009-02-08  Bruno Haible  <bruno@clisp.org>
7245
7246         Tests for module 'unicase/totitle'.
7247         * modules/unicase/totitle-tests: New file.
7248
7249         Tests for module 'unicase/tolower'.
7250         * modules/unicase/tolower-tests: New file.
7251
7252         Tests for module 'unicase/toupper'.
7253         * modules/unicase/toupper-tests: New file.
7254         * tests/unicase/test-mapping-part1.h: New file.
7255         * tests/unicase/test-mapping-part2.h: New file.
7256
7257         New module 'unicase/totitle'.
7258         * modules/unicase/totitle: New file.
7259         * lib/unicase/totitle.c: New file.
7260
7261         New module 'unicase/tolower'.
7262         * modules/unicase/tolower: New file.
7263         * lib/unicase/tolower.c: New file.
7264
7265         New module 'unicase/toupper'.
7266         * modules/unicase/toupper: New file.
7267         * lib/unicase/toupper.c: New file.
7268         * lib/unicase/simple-mapping.h: New file.
7269
7270         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
7271         (mapping_table): New structure.
7272         (output_simple_mapping): New function.
7273         (main): Invoke output_simple_mapping_test and output_simple_mapping.
7274         * modules/gen-uni-tables (Description): Update.
7275         * lib/unicase/toupper.h: New file, automatically generated by
7276         gen-uni-tables.
7277         * lib/unicase/tolower.h: New file, automatically generated by
7278         gen-uni-tables.
7279         * lib/unicase/totitle.h: New file, automatically generated by
7280         gen-uni-tables.
7281         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
7282         gen-uni-tables.
7283         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
7284         gen-uni-tables.
7285         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
7286         gen-uni-tables.
7287
7288         New module 'unicase/base'.
7289         * modules/unicase/base: New file.
7290         * lib/unicase.h: New file.
7291
7292 2009-02-08  Bruno Haible  <bruno@clisp.org>
7293
7294         New module 'uniwbrk/ulc-wordbreaks'.
7295         * modules/uniwbrk/ulc-wordbreaks: New file.
7296         * lib/uniwbrk/ulc-wordbreaks.c: New file.
7297
7298         New module 'uniwbrk/u32-wordbreaks'.
7299         * modules/uniwbrk/u32-wordbreaks: New file.
7300         * lib/uniwbrk/u32-wordbreaks.c: New file.
7301
7302         New module 'uniwbrk/u16-wordbreaks'.
7303         * modules/uniwbrk/u16-wordbreaks: New file.
7304         * lib/uniwbrk/u16-wordbreaks.c: New file.
7305
7306         New module 'uniwbrk/u8-wordbreaks'.
7307         * modules/uniwbrk/u8-wordbreaks: New file.
7308         * lib/uniwbrk/u8-wordbreaks.c: New file.
7309         * lib/uniwbrk/u-wordbreaks.h: New file.
7310
7311         New module 'uniwbrk/table'.
7312         * modules/uniwbrk/table: New file.
7313         * lib/uniwbrk/wbrktable.h: New file.
7314         * lib/uniwbrk/wbrktable.c: New file.
7315
7316         New module 'uniwbrk/wordbreak-property'.
7317         * modules/uniwbrk/wordbreak-property: New file.
7318         * lib/uniwbrk/wordbreak-property.c: New file.
7319
7320         * lib/gen-uni-tables.c (WBP_*): New enum items.
7321         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
7322         (unicode_org_wbp): New variable.
7323         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
7324         New functions.
7325         (wbp_table): New structure.
7326         (output_wbp, output_wbrk_tables): New functions.
7327         (main): Accept additional argument. Invoke fill_org_wbp,
7328         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
7329         output_wbrk_tables.
7330         * modules/gen-uni-tables (Description): Update.
7331         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
7332         gen-uni-tables.
7333
7334         New module 'uniwbrk/base'.
7335         * modules/uniwbrk/base: New file.
7336         * lib/uniwbrk.h: New file.
7337
7338 2009-02-08  Bruno Haible  <bruno@clisp.org>
7339
7340         Update to Unicode 5.1.0.
7341         * lib/gen-uni-tables.c (is_property_alphabetic): Include
7342         U+2185..U+2188.
7343         (is_property_default_ignorable_code_point): Don't include characters
7344         of category Cc or Cs and not-a-characters.
7345         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
7346         U+0D79, U+109E, U+109F, U+A60C.
7347         * lib/unictype/bidi_of.h: Regenerated.
7348         * lib/unictype/blocks.h: Regenerated.
7349         * lib/unictype/categ_C.h: Regenerated.
7350         * lib/unictype/categ_Cf.h: Regenerated.
7351         * lib/unictype/categ_Cn.h: Regenerated.
7352         * lib/unictype/categ_L.h: Regenerated.
7353         * lib/unictype/categ_Ll.h: Regenerated.
7354         * lib/unictype/categ_Lm.h: Regenerated.
7355         * lib/unictype/categ_Lo.h: Regenerated.
7356         * lib/unictype/categ_Lu.h: Regenerated.
7357         * lib/unictype/categ_M.h: Regenerated.
7358         * lib/unictype/categ_Mc.h: Regenerated.
7359         * lib/unictype/categ_Me.h: Regenerated.
7360         * lib/unictype/categ_Mn.h: Regenerated.
7361         * lib/unictype/categ_N.h: Regenerated.
7362         * lib/unictype/categ_Nd.h: Regenerated.
7363         * lib/unictype/categ_Nl.h: Regenerated.
7364         * lib/unictype/categ_No.h: Regenerated.
7365         * lib/unictype/categ_P.h: Regenerated.
7366         * lib/unictype/categ_Pd.h: Regenerated.
7367         * lib/unictype/categ_Pe.h: Regenerated.
7368         * lib/unictype/categ_Pf.h: Regenerated.
7369         * lib/unictype/categ_Pi.h: Regenerated.
7370         * lib/unictype/categ_Po.h: Regenerated.
7371         * lib/unictype/categ_Ps.h: Regenerated.
7372         * lib/unictype/categ_S.h: Regenerated.
7373         * lib/unictype/categ_Sk.h: Regenerated.
7374         * lib/unictype/categ_Sm.h: Regenerated.
7375         * lib/unictype/categ_So.h: Regenerated.
7376         * lib/unictype/categ_of.h: Regenerated.
7377         * lib/unictype/combining.h: Regenerated.
7378         * lib/unictype/ctype_alnum.h: Regenerated.
7379         * lib/unictype/ctype_alpha.h: Regenerated.
7380         * lib/unictype/ctype_graph.h: Regenerated.
7381         * lib/unictype/ctype_lower.h: Regenerated.
7382         * lib/unictype/ctype_print.h: Regenerated.
7383         * lib/unictype/ctype_punct.h: Regenerated.
7384         * lib/unictype/ctype_upper.h: Regenerated.
7385         * lib/unictype/decdigit.h: Regenerated.
7386         * lib/unictype/digit.h: Regenerated.
7387         * lib/unictype/mirror.h: Regenerated.
7388         * lib/unictype/numeric.h: Regenerated.
7389         * lib/unictype/pr_alphabetic.h: Regenerated.
7390         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
7391         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
7392         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
7393         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
7394         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
7395         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
7396         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
7397         * lib/unictype/pr_combining.h: Regenerated.
7398         * lib/unictype/pr_dash.h: Regenerated.
7399         * lib/unictype/pr_decimal_digit.h: Regenerated.
7400         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
7401         * lib/unictype/pr_deprecated.h: Regenerated.
7402         * lib/unictype/pr_diacritic.h: Regenerated.
7403         * lib/unictype/pr_extender.h: Regenerated.
7404         * lib/unictype/pr_format_control.h: Regenerated.
7405         * lib/unictype/pr_grapheme_base.h: Regenerated.
7406         * lib/unictype/pr_grapheme_extend.h: Regenerated.
7407         * lib/unictype/pr_grapheme_link.h: Regenerated.
7408         * lib/unictype/pr_id_continue.h: Regenerated.
7409         * lib/unictype/pr_id_start.h: Regenerated.
7410         * lib/unictype/pr_ideographic.h: Regenerated.
7411         * lib/unictype/pr_ignorable_control.h: Regenerated.
7412         * lib/unictype/pr_lowercase.h: Regenerated.
7413         * lib/unictype/pr_math.h: Regenerated.
7414         * lib/unictype/pr_numeric.h: Regenerated.
7415         * lib/unictype/pr_other_alphabetic.h: Regenerated.
7416         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
7417         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
7418         * lib/unictype/pr_other_id_continue.h: Regenerated.
7419         * lib/unictype/pr_other_lowercase.h: Regenerated.
7420         * lib/unictype/pr_other_math.h: Regenerated.
7421         * lib/unictype/pr_punctuation.h: Regenerated.
7422         * lib/unictype/pr_sentence_terminal.h: Regenerated.
7423         * lib/unictype/pr_soft_dotted.h: Regenerated.
7424         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
7425         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
7426         * lib/unictype/pr_unified_ideograph.h: Regenerated.
7427         * lib/unictype/pr_uppercase.h: Regenerated.
7428         * lib/unictype/pr_xid_continue.h: Regenerated.
7429         * lib/unictype/pr_xid_start.h: Regenerated.
7430         * lib/unictype/pr_zero_width.h: Regenerated.
7431         * lib/unictype/scripts.h: Regenerated.
7432         * lib/unictype/scripts_byname.gperf: Regenerated.
7433         * lib/unictype/sy_java_ident.h: Regenerated.
7434         * lib/unilbrk/lbrkprop1.h: Regenerated.
7435         * lib/unilbrk/lbrkprop2.h: Regenerated.
7436         * tests/unictype/test-categ_C.c: Regenerated.
7437         * tests/unictype/test-categ_Cf.c: Regenerated.
7438         * tests/unictype/test-categ_Cn.c: Regenerated.
7439         * tests/unictype/test-categ_L.c: Regenerated.
7440         * tests/unictype/test-categ_Ll.c: Regenerated.
7441         * tests/unictype/test-categ_Lm.c: Regenerated.
7442         * tests/unictype/test-categ_Lo.c: Regenerated.
7443         * tests/unictype/test-categ_Lu.c: Regenerated.
7444         * tests/unictype/test-categ_M.c: Regenerated.
7445         * tests/unictype/test-categ_Mc.c: Regenerated.
7446         * tests/unictype/test-categ_Me.c: Regenerated.
7447         * tests/unictype/test-categ_Mn.c: Regenerated.
7448         * tests/unictype/test-categ_N.c: Regenerated.
7449         * tests/unictype/test-categ_Nd.c: Regenerated.
7450         * tests/unictype/test-categ_Nl.c: Regenerated.
7451         * tests/unictype/test-categ_No.c: Regenerated.
7452         * tests/unictype/test-categ_P.c: Regenerated.
7453         * tests/unictype/test-categ_Pd.c: Regenerated.
7454         * tests/unictype/test-categ_Pe.c: Regenerated.
7455         * tests/unictype/test-categ_Pf.c: Regenerated.
7456         * tests/unictype/test-categ_Pi.c: Regenerated.
7457         * tests/unictype/test-categ_Po.c: Regenerated.
7458         * tests/unictype/test-categ_Ps.c: Regenerated.
7459         * tests/unictype/test-categ_S.c: Regenerated.
7460         * tests/unictype/test-categ_Sk.c: Regenerated.
7461         * tests/unictype/test-categ_Sm.c: Regenerated.
7462         * tests/unictype/test-categ_So.c: Regenerated.
7463         * tests/unictype/test-ctype_alnum.c: Regenerated.
7464         * tests/unictype/test-ctype_alpha.c: Regenerated.
7465         * tests/unictype/test-ctype_graph.c: Regenerated.
7466         * tests/unictype/test-ctype_lower.c: Regenerated.
7467         * tests/unictype/test-ctype_print.c: Regenerated.
7468         * tests/unictype/test-ctype_punct.c: Regenerated.
7469         * tests/unictype/test-ctype_upper.c: Regenerated.
7470         * tests/unictype/test-decdigit.h: Regenerated.
7471         * tests/unictype/test-digit.h: Regenerated.
7472         * tests/unictype/test-numeric.h: Regenerated.
7473         * tests/unictype/test-pr_alphabetic.c: Regenerated.
7474         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
7475         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
7476         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
7477         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
7478         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
7479         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
7480         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
7481         * tests/unictype/test-pr_combining.c: Regenerated.
7482         * tests/unictype/test-pr_dash.c: Regenerated.
7483         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
7484         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
7485         * tests/unictype/test-pr_deprecated.c: Regenerated.
7486         * tests/unictype/test-pr_diacritic.c: Regenerated.
7487         * tests/unictype/test-pr_extender.c: Regenerated.
7488         * tests/unictype/test-pr_format_control.c: Regenerated.
7489         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
7490         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
7491         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
7492         * tests/unictype/test-pr_id_continue.c: Regenerated.
7493         * tests/unictype/test-pr_id_start.c: Regenerated.
7494         * tests/unictype/test-pr_ideographic.c: Regenerated.
7495         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
7496         * tests/unictype/test-pr_lowercase.c: Regenerated.
7497         * tests/unictype/test-pr_math.c: Regenerated.
7498         * tests/unictype/test-pr_numeric.c: Regenerated.
7499         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
7500         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
7501         Regenerated.
7502         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
7503         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
7504         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
7505         * tests/unictype/test-pr_other_math.c: Regenerated.
7506         * tests/unictype/test-pr_punctuation.c: Regenerated.
7507         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
7508         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
7509         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
7510         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
7511         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
7512         * tests/unictype/test-pr_uppercase.c: Regenerated.
7513         * tests/unictype/test-pr_xid_continue.c: Regenerated.
7514         * tests/unictype/test-pr_xid_start.c: Regenerated.
7515         * tests/unictype/test-pr_zero_width.c: Regenerated.
7516
7517         Update to Unicode 5.1.0.
7518         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
7519         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
7520         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
7521         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
7522         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
7523         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
7524         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
7525         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
7526         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
7527         (nonspacing_table_ind): Update.
7528         * tests/uniwidth/test-uc_width2.sh: Update expected result.
7529
7530         Update to Unicode 5.1.0.
7531         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
7532         code transform.
7533         * lib/uniname/uniname.c (unicode_character_name,
7534         unicode_name_character): Add the range 0x1Fxxx to the code transform.
7535         * lib/uniname/uninames.h: Regenerated.
7536         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
7537
7538 2009-02-07  Bruno Haible  <bruno@clisp.org>
7539
7540         Merge gen-ctype and gen-lbrk into a single program.
7541         * lib/gen-uni-tables.c: New file, incorporating
7542         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
7543         Add directory prefixes to the names of the generated files.
7544         * lib/unictype/gen-ctype.c: Remove file.
7545         * lib/unilbrk/gen-lbrk.c: Remove file.
7546         * modules/gen-uni-tables: New file.
7547         * modules/unictype/gen-ctype: Remove file.
7548         * modules/unilbrk/gen-lbrk: Remove file.
7549
7550 2009-02-07  Bruno Haible  <bruno@clisp.org>
7551
7552         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
7553
7554         New module 'unistr/u32-strcoll'.
7555         * modules/unistr/u32-strcoll: New file.
7556         * lib/unistr/u32-strcoll.c: New file.
7557
7558         New module 'unistr/u16-strcoll'.
7559         * modules/unistr/u16-strcoll: New file.
7560         * lib/unistr/u16-strcoll.c: New file.
7561
7562         New module 'unistr/u8-strcoll'.
7563         * modules/unistr/u8-strcoll: New file.
7564         * lib/unistr/u8-strcoll.c: New file.
7565         * lib/unistr/u-strcoll.h: New file.
7566
7567 2009-02-07  Bruno Haible  <bruno@clisp.org>
7568
7569         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
7570         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
7571         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
7572         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
7573         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
7574         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
7575
7576 2009-02-07  Bruno Haible  <bruno@clisp.org>
7577
7578         Make 64-bit clean.
7579         * lib/unictype/gen-ctype.c (output_predicate, output_category,
7580         output_combclass, output_bidi_category, output_decimal_digit,
7581         output_digit, output_numeric, output_mirror, output_scripts,
7582         output_ident_category): Use proper width specifier in format strings.
7583
7584 2009-02-07  Bruno Haible  <bruno@clisp.org>
7585
7586         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
7587         failure behaviour.
7588
7589 2009-02-07  Jim Meyering  <meyering@redhat.com>
7590
7591         regex: avoid compilation failure with upcoming gcc-4.4
7592         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
7593         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
7594         "... error: integer overflow in preprocessor expression".
7595
7596 2009-02-05  Ben Pfaff  <blp@gnu.org>
7597
7598         Fix link errors on Windows when close module is used.
7599         * modules/close: Add $(LIB_CLOSE) to Link section.
7600         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
7601         $(LIB_CLOSE) on Windows.
7602
7603 2009-02-05  Jim Meyering  <meyering@redhat.com>
7604
7605         still avoid unused-parameter warnings, but do it cleanly
7606         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
7607         (get_fs_usage): Cast to void instead.
7608         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
7609         (dev_from_mount_options, read_file_system_list): Cast to void.
7610         Prompted by Bruno Haible.
7611
7612 2009-02-04  Jim Meyering  <meyering@redhat.com>
7613
7614         fsusage.c: correct copyright year
7615         * lib/fsusage.c: Reflect year in which the change is pushed into
7616
7617         avoid misc. warnings
7618         * lib/fsusage.c (UNUSED_PARAM): Define.
7619         (get_fs_usage): Mark parameter "disk" as unused.
7620         * lib/getugroups.c (getgrent): Use "void" in prototype.
7621         * lib/mountlist.c: Mark unused parameters.
7622         (read_file_system_list): Declare a local with "const".
7623         * lib/nanosleep.c (getnow): Declare static.
7624         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
7625
7626         dirfd: set errno upon failure
7627         * lib/dirfd.c: Include <errno.h>.
7628         Set errno to ENOTSUP when returning -1.
7629         * modules/dirfd (Depends-on): Add errno.
7630         Suggested by John Kodis <kodis@comcast.net>.
7631
7632 2009-02-01  Bruno Haible  <bruno@clisp.org>
7633
7634         Don't assume sizeof (long) >= sizeof (void *).
7635         * lib/memcmp.c: Include stdint.h.
7636         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
7637         srcp2 to 'const byte *'.
7638         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
7639         types to uintptr_t.
7640         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
7641         * modules/memcmp (Depends-on): Add stdint.
7642         Reported by Ozkan Sezer <sezeroz@gmail.com>.
7643
7644 2009-01-30  Eric Blake  <ebb9@byu.net>
7645
7646         fix more require-before-expand issues
7647         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
7648         expand, AC_PROG_AWK.
7649         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
7650
7651 2009-01-28  Eric Blake  <ebb9@byu.net>
7652
7653         version-etc: use consistent URL formatting
7654         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
7655         Improve formatting.  Use fputs for string without %.
7656
7657 2009-01-28  Jim Meyering  <meyering@redhat.com>
7658
7659         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
7660         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
7661         "underquoted definition of NAME" from autoconf-2.59.
7662
7663 2009-01-28  Bruno Haible  <bruno@clisp.org>
7664
7665         * doc/gnulib.texi: Add "Obsolete modules" to index.
7666
7667 2009-01-28  Jim Meyering  <meyering@redhat.com>
7668
7669         useless-if-before-free: recognize more variants
7670         * build-aux/useless-if-before-free: Also recognize e.g.,
7671         if (NULL != p) free (p);
7672
7673 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
7674
7675         test-getaddrinfo: skip (don't fail) this test when there's no network
7676         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
7677         on the presumption that it means you lack network access.
7678
7679 2009-01-26  Jim Meyering  <meyering@redhat.com>
7680
7681         fflush: avoid warnings on modern systems
7682         * lib/fflush.c (rpl_fflush): Move declarations of locals,
7683         pos and result, into scopes where they're used.
7684
7685 2009-01-26  Eric Blake  <ebb9@byu.net>
7686
7687         Silence warning reintroduced by recent extensions patch.
7688         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
7689         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
7690         autoconf.
7691
7692         Backport improved autoconf semantics of AC_DEFUN_ONCE.
7693         * m4/00gnulib.m4: New file.
7694         * gnulib-tool (func_get_filelist): Always use it.
7695         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
7696         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
7697
7698 2009-01-25  Bruno Haible  <bruno@clisp.org>
7699
7700         Make test-quotearg work on MacOS X and AIX.
7701         * tests/test-quotearg.sh: New file.
7702         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
7703         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
7704         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
7705         include <libintl.h>.
7706         (fake_locale): Remove variable.
7707         (gettext, dgettext, dcgettext): Remove functions.
7708         (main): Instead of setting a fake locale, set a real locale. Call
7709         textdomain and bindtextdomain.
7710         * modules/quotearg-tests (Files): Add the new files.
7711         (Depends-on): Add gettext, setenv, unsetenv.
7712         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
7713         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
7714         Augment TESTS_ENVIRONMENT.
7715
7716 2009-01-25  Bruno Haible  <bruno@clisp.org>
7717
7718         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
7719         fr_FR.ISO8859-1 locale on MacOS X.
7720         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
7721         ja_JP.eucJP locale on MacOS X.
7722         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
7723         zh_CN.GB18030 locale on MacOS X.
7724
7725 2009-01-25  Bruno Haible  <bruno@clisp.org>
7726
7727         Avoid link errors on MacOS X 10.3.
7728         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
7729         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
7730
7731 2009-01-25  Bruno Haible  <bruno@clisp.org>
7732
7733         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
7734         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
7735         * modules/pipe (Files): Remove m4/posix_spawn.m4.
7736         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
7737         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
7738         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
7739         posix_spawnattr_init, posix_spawnattr_setsigmask,
7740         posix_spawnattr_setflags, posix_spawnattr_destroy.
7741
7742         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
7743         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
7744         * modules/execute (Files): Remove m4/posix_spawn.m4.
7745         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
7746         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
7747         posix_spawnattr_init, posix_spawnattr_setsigmask,
7748         posix_spawnattr_setflags, posix_spawnattr_destroy.
7749
7750 2009-01-25  Bruno Haible  <bruno@clisp.org>
7751
7752         * lib/glthread/threadlib.c: Include <stdlib.h>.
7753
7754 2009-01-25  Bruno Haible  <bruno@clisp.org>
7755
7756         * lib/glthread/threadlib.c (dummy): New declaration.
7757
7758 2009-01-25  Bruno Haible  <bruno@clisp.org>
7759
7760         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
7761         multibyte characters also for the GB18030 encoding. Don't crash when
7762         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
7763
7764 2009-01-25  Bruno Haible  <bruno@clisp.org>
7765
7766         Avoid redefining 'struct random_data' on OSF/1 5.1.
7767         * lib/stdlib.in.h: Include <random.h> if it exists.
7768         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
7769         HAVE_RANDOM_H. Include <random.h> when testing whether
7770         'struct random_data' exists.
7771         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
7772
7773 2009-01-25  Bruno Haible  <bruno@clisp.org>
7774
7775         Don't install charset.alias on MacOS X >= 10.3.
7776         * lib/localcharset.c (DARWIN7): New macro.
7777         (get_charset_aliases): Hardcode the result for Darwin7.
7778         * modules/localcharset (install-exec-local): Don't install
7779         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
7780
7781 2009-01-25  Bruno Haible  <bruno@clisp.org>
7782
7783         Don't install charset.alias on mingw and Cygwin.
7784         * modules/localcharset (install-exec-local): Don't install
7785         charset.alias on mingw and Cygwin, if the file does not yet exist.
7786         The result for these platforms is hardcoded in localcharset.c.
7787
7788 2009-01-25  Bruno Haible  <bruno@clisp.org>
7789
7790         Make it possible again to use AC_GNU_SOURCE together with gnulib.
7791         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
7792         before requiring AC_USE_SYSTEM_EXTENSIONS.
7793
7794 2009-01-25  Jim Meyering  <meyering@redhat.com>
7795
7796         c-strtod: avoid warnings
7797         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
7798         "assignment discards qualifiers from pointer target type" warnings.
7799
7800 2009-01-24  Bruno Haible  <bruno@clisp.org>
7801
7802         Add support for non-UTF-8 locales on MacOS X.
7803         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
7804         canonical encodings. For Darwin 7 and newer, don't map traditional
7805         encodings to UTF-8.
7806         Reported by Vincent Lefevre <vincent@vinc17.org>
7807         at <http://savannah.gnu.org/bugs/?25235>.
7808
7809 2009-01-24  Bruno Haible  <bruno@clisp.org>
7810
7811         * doc/gnulib.texi (Obsolete modules): New section.
7812         Reported by Mike Frysinger <vapier@gentoo.org>.
7813
7814 2009-01-24  Bruno Haible  <bruno@clisp.org>
7815
7816         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
7817         (%.dvi): New rule.
7818
7819 2009-01-24  Bruno Haible  <bruno@clisp.org>
7820
7821         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
7822         Reported by Eric Blake.
7823
7824 2009-01-24  Bruno Haible  <bruno@clisp.org>
7825
7826         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
7827         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
7828         Reported by Gary V. Vaughan <gary@gnu.org>.
7829
7830 2009-01-24  Bruno Haible  <bruno@clisp.org>
7831
7832         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
7833
7834 2009-01-23  Bruno Haible  <bruno@clisp.org>
7835
7836         Make c-strtod, c-strtold usable in libraries.
7837         * lib/c-strtod.c: Include string.h instead of xalloc.h.
7838         (C_STRTOD): Call strdup instead of xstrdup.
7839         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
7840         * modules/c-strtold (Depends-on): Likewise.
7841         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
7842         * NEWS: Mention the change.
7843         Reported by Michael Gold <mgold@ncf.ca>.
7844
7845 2009-01-23  Jim Meyering  <meyering@redhat.com>
7846
7847         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
7848         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
7849         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
7850
7851 2009-01-23  Simon Josefsson  <simon@josefsson.org>
7852
7853         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
7854         GNU CoreUtils.
7855         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
7856         * modules/version-etc (Description): Update.
7857
7858 2009-01-22  Bruno Haible  <bruno@clisp.org>
7859
7860         Cache the C locale object.
7861         * lib/c-strtod.c (c_locale_cache): New variable.
7862         (c_locale): New function.
7863         (C_STRTOD): Use it, and don't call freelocale.
7864         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
7865         Suggested by Paolo Bonzini.
7866
7867 2009-01-21  Bruno Haible  <bruno@clisp.org>
7868
7869         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
7870         conditions other than overflow.
7871
7872 2009-01-21  Bruno Haible  <bruno@clisp.org>
7873
7874         * lib/c-strtod.c: Include errno.h.
7875         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
7876         value from STRTOD_L and STRTOD.
7877
7878 2009-01-21  Bruno Haible  <bruno@clisp.org>
7879         and Jim Meyering  <meyering@redhat.com>
7880
7881         nanosleep: skip configure test (fail it) for apple universal builds
7882         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
7883         universal builds, assume that nanosleep does not work.
7884         * modules/nanosleep (Depends-on): Add multiarch.
7885
7886         mktime: skip configure test (fail it) for apple universal builds
7887         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
7888         universal builds, assume that mktime does not work.
7889         * modules/mktime (Depends-on): Add multiarch.
7890
7891 2009-01-21  Eric Blake  <ebb9@byu.net>
7892
7893         multiarch: avoid expand-before-require warning
7894         * modules/multiarch (configure.ac): Require, rather than expand,
7895         gl_MULTIARCH.
7896         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
7897         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
7898         enforce that all clients require it.  Partial reversion of
7899         2008-12-29 patch.
7900
7901         error: avoid expand-before-require warning
7902         * modules/errno (configure.ac): Require, rather than expand,
7903         gl_HEADER_ERRNO_H.
7904         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
7905         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
7906         enforce that all clients require it.
7907
7908         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
7909         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
7910         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
7911         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
7912
7913 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
7914
7915         Revert:
7916         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
7917
7918         regex: do not depend on obsolete modules.
7919         * modules/regex: Remove memcmp and memmove.
7920
7921 2009-01-20  Bruno Haible  <bruno@clisp.org>
7922
7923         Make the 'link' module link on Windows NT 4.
7924         * lib/link.c (_WIN32_WINNT): Don't define.
7925         (CreateHardLinkFuncType): New type.
7926         (CreateHardLinkFunc, initialized): New variables.
7927         (initialize): New function.
7928         (link): Invoke CreateHardLink indirectly through the function pointer.
7929
7930 2009-01-20  Bruno Haible  <bruno@clisp.org>
7931
7932         Fix compilation failure on mingw.
7933         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
7934
7935 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
7936
7937         * doc/c-strtod.texi: Mention a couple of restrictions.
7938
7939 2009-01-20  Jim Meyering  <meyering@redhat.com>
7940
7941         gettimeofday: move more declarations out of functions
7942         * lib/gettimeofday.c: Move extern declarations of tzset and
7943         gmtime out of containing functions.  Prompted by Bruno Haible.
7944
7945 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
7946
7947         regex: do not depend on obsolete modules.
7948         * modules/regex: Remove memcmp and memmove.
7949
7950 2009-01-19  Bruno Haible  <bruno@clisp.org>
7951
7952         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
7953         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
7954         gl_BIGENDIAN, not AC_C_BIGENDIAN.
7955         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
7956         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
7957
7958 2009-01-19  Bruno Haible  <bruno@clisp.org>
7959
7960         * tests/test-link.c: Include <errno.h>.
7961         (main): Exit with code 77 when a hard link cannot be created due to
7962         the file system.
7963         * tests/test-link.sh: Skip test when a hard link cannot be created due
7964         to the file system.
7965         Suggested by Eric Blake.
7966
7967 2009-01-19  Martin Lambers  <marlam@marlam.de>
7968
7969         * modules/link-tests: New file.
7970         * tests/test-link.sh: New file.
7971         * tests/test-link.c: New file.
7972
7973 2009-01-19  Eric Blake  <ebb9@byu.net>
7974
7975         doc: mention another function added in cygwin 1.7.0
7976         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
7977         Another new function in cygwin 1.7.
7978
7979 2009-01-19  Bruno Haible  <bruno@clisp.org>
7980
7981         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
7982         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
7983         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
7984         gl_BIGENDIAN, not AC_C_BIGENDIAN.
7985         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
7986         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
7987         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
7988         * m4/md4.m4 (gl_MD4): Likewise.
7989         * m4/md5.m4 (gl_MD5): Likewise.
7990         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
7991         * m4/sha1.m4 (gl_SHA1): Likewise.
7992         * m4/sha256.m4 (gl_SHA256): Likewise.
7993         * m4/sha512.m4 (gl_SHA512): Likewise.
7994
7995 2009-01-19  Bruno Haible  <bruno@clisp.org>
7996
7997         * modules/uniname/uniname-tests (Depends-on): Add progname.
7998         * tests/uniname/test-uninames.c: Include progname.h.
7999         (main): Call set_program_name.
8000
8001         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
8002         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
8003         (main): Call set_program_name.
8004
8005         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
8006         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
8007         (main): Call set_program_name.
8008
8009         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
8010         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
8011         (main): Call set_program_name.
8012
8013         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
8014         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
8015         (main): Call set_program_name.
8016
8017         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
8018         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
8019         (main): Call set_program_name.
8020
8021         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
8022         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
8023         (main): Call set_program_name.
8024
8025         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
8026         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
8027         (main): Call set_program_name.
8028
8029         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
8030         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
8031         (main): Call set_program_name.
8032
8033 2009-01-19  Eric Blake  <ebb9@byu.net>
8034
8035         test-unistd: test previous patch
8036         * tests/test-unistd.c: Test *_FILENO macros.
8037
8038         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
8039         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
8040         Guarantee a definition.
8041         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
8042         * modules/unistd-safer (Depends-on): Add dependency on unistd.
8043         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
8044         * lib/dup-safer.c (STDERR_FILENO): Likewise.
8045         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
8046         Likewise.
8047         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
8048         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
8049         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
8050         Likewise.
8051         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
8052         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
8053         (STDERR_FILENO): Likewise.
8054         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
8055         (STDERR_FILENO): Likewise.
8056         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
8057         (STDERR_FILENO): Likewise.
8058         Reported by Elbert Pol.
8059
8060 2009-01-19  Eric Blake  <ebb9@byu.net>
8061
8062         doc: mention more functions added in cygwin 1.7.0
8063         * doc/posix-functions/abort.texi (abort): Update wording related
8064         to cygwin.
8065         * doc/posix-functions/daylight.texi (daylight): Likewise.
8066         * doc/posix-functions/optarg.texi (optarg): Likewise.
8067         * doc/posix-functions/optarg.texi (opterr): Likewise.
8068         * doc/posix-functions/optarg.texi (optind): Likewise.
8069         * doc/posix-functions/optarg.texi (optopt): Likewise.
8070         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
8071         worked in 1.5.x, and was withdrawn in 1.7.
8072         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
8073         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
8074         cygwin versions.
8075         * doc/posix-functions/perror.texi (perror): Likewise.
8076         * doc/posix-functions/printf.texi (printf): Likewise.
8077         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
8078         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
8079         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
8080         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
8081         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
8082         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
8083         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
8084         Likewise.
8085         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
8086         Likewise.
8087         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
8088         this function.
8089         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
8090         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
8091         Likewise.
8092         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
8093         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
8094         * doc/posix-functions/confstr.texi (confstr): Likewise.
8095         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
8096         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
8097         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
8098         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
8099         * doc/posix-functions/fputws.texi (fputws): Likewise.
8100         * doc/posix-functions/fwide.texi (fwide): Likewise.
8101         * doc/posix-functions/getwc.texi (getwc): Likewise.
8102         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
8103         * doc/posix-functions/putwc.texi (putwc): Likewise.
8104         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
8105         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
8106         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
8107         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
8108         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
8109         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
8110         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
8111         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
8112         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
8113         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
8114         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
8115
8116 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
8117
8118         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
8119         * lib/ioctl.c: Include <sys/ioctl.h>.
8120
8121 2009-01-19  Simon Josefsson  <simon@josefsson.org>
8122
8123         * modules/getdate-tests (Depends-on): Add progname.
8124         * tests/test-getdate.c: Use progname module, to avoid link errors
8125         on non-glibc systems.
8126
8127 2009-01-18  Simon Josefsson  <simon@josefsson.org>
8128
8129         * modules/filenamecat-tests (Depends-on): Add progname.
8130         * modules/fstrcmp-tests (Depends-on): Likewise.
8131
8132         * tests/test-filenamecat.c: Use progname module, to avoid link
8133         errors on non-glibc systems.
8134         * tests/test-fstrcmp.c: Likewise.
8135
8136 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
8137
8138         gettimeofday: avoid warning: nested extern declaration of 'localtime'
8139         * lib/gettimeofday.c: Move extern declaration out of function.
8140
8141 2009-01-18  Bruno Haible  <bruno@clisp.org>
8142
8143         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
8144         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
8145         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
8146
8147 2009-01-18  Bruno Haible  <bruno@clisp.org>
8148
8149         * lib/strftime.c (MEMPCPY): Remove unused macro.
8150         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
8151
8152 2009-01-18  Martin Lambers  <marlam@marlam.de>
8153
8154         New module 'link'.
8155         * lib/unistd.in.h (link): New declaration.
8156         * lib/link.c: New file.
8157         * m4/link.m4: New file.
8158         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
8159         HAVE_LINK.
8160         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
8161         * modules/link: New file.
8162         * doc/posix-functions/link.texi: Mention the new module.
8163
8164 2009-01-18  Bruno Haible  <bruno@clisp.org>
8165
8166         * tests/test-avltree_list.c (main): Call set_program_name.
8167         * tests/test-avltree_oset.c (main): Likewise.
8168         * tests/test-obstack-printf.c: Include progname.h.
8169         (main): Call set_program_name.
8170         * tests/test-quotearg.c: Include progname.h.
8171         (main): Call set_program_name.
8172         * tests/test-xmemdup0.c: Include progname.h.
8173         (main): Call set_program_name.
8174
8175 2009-01-18  Bruno Haible  <bruno@clisp.org>
8176
8177         New module 'alphasort'.
8178         * lib/dirent.in.h (alphasort): New declaration.
8179         * lib/alphasort.c: New file, from glibc with modifications.
8180         * m4/alphasort.m4: New file.
8181         * modules/alphasort: New file.
8182         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
8183         HAVE_ALPHASORT.
8184         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
8185         HAVE_ALPHASORT.
8186         * doc/posix-functions/alphasort.texi: Mention the new module and the
8187         portability problems.
8188
8189 2009-01-18  Bruno Haible  <bruno@clisp.org>
8190
8191         New module 'scandir'.
8192         * lib/dirent.in.h (scandir): New declaration.
8193         * lib/scandir.c: New file, from glibc with modifications.
8194         * m4/scandir.m4: New file.
8195         * modules/scandir: New file.
8196         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
8197         HAVE_SCANDIR.
8198         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
8199         HAVE_SCANDIR.
8200         * doc/posix-functions/scandir.texi: Mention the new module and the
8201         portability problems.
8202
8203 2009-01-17  Bruno Haible  <bruno@clisp.org>
8204
8205         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
8206         Update documentation.
8207         (func_remove_suffix): Escape all dots in the suffix. Update
8208         documentation.
8209         (func_filter_filelist): Update documentation.
8210         Reported by Ralf Wildenhues.
8211
8212 2009-01-17  Bruno Haible  <bruno@clisp.org>
8213
8214         * modules/dprintf-posix-tests: New file.
8215         * tests/test-dprintf-posix.sh: New file.
8216         * tests/test-dprintf-posix.c: New file.
8217
8218         New modules 'dprintf', 'dprintf-posix'.
8219         * lib/stdio.in.h (dprintf): New declaration.
8220         * lib/dprintf.c: New file.
8221         * m4/dprintf.m4: New file.
8222         * m4/dprintf-posix.m4: New file.
8223         * modules/dprintf: New file.
8224         * modules/dprintf-posix: New file.
8225         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
8226         HAVE_DPRINTF, REPLACE_DPRINTF.
8227         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
8228         HAVE_DPRINTF, REPLACE_DPRINTF.
8229         * doc/posix-functions/dprintf.texi: Mention the new modules.
8230
8231 2009-01-17  Bruno Haible  <bruno@clisp.org>
8232
8233         * modules/vdprintf-posix-tests: New file.
8234         * tests/test-vdprintf-posix.sh: New file.
8235         * tests/test-vdprintf-posix.c: New file.
8236
8237         New modules 'vdprintf', 'vdprintf-posix'.
8238         * lib/stdio.in.h (vdprintf): New declaration.
8239         * lib/vdprintf.c: New file.
8240         * m4/vdprintf.m4: New file.
8241         * m4/vdprintf-posix.m4: New file.
8242         * modules/vdprintf: New file.
8243         * modules/vdprintf-posix: New file.
8244         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
8245         HAVE_VDPRINTF, REPLACE_VDPRINTF.
8246         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
8247         HAVE_VDPRINTF, REPLACE_VDPRINTF.
8248         * doc/posix-functions/vdprintf.texi: Mention the new modules.
8249
8250 2009-01-17  Bruno Haible  <bruno@clisp.org>
8251
8252         Fix replacement of fopen on mingw.
8253         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
8254         mingw.
8255
8256 2009-01-17  Bruno Haible  <bruno@clisp.org>
8257
8258         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
8259         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
8260
8261 2009-01-17  Bruno Haible  <bruno@clisp.org>
8262
8263         Avoid test-fflush2.sh failure on mingw.
8264         * tests/test-fflush2.c: Include binary-io.h.
8265         (main): Put standard input into binary mode.
8266         * modules/fflush-tests (Depends-on): Add binary-io.
8267
8268 2009-01-17  Bruno Haible  <bruno@clisp.org>
8269
8270         * lib/wchar.in.h: In another particular situation, include only the
8271         system's <wchar.h> file.
8272         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
8273         Reported by Albert Chin-A-Young <china@thewrittenword.com>
8274         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
8275
8276 2009-01-17  Bruno Haible  <bruno@clisp.org>
8277
8278         Support for stripping executables in --enable-relocatable.
8279         * build-aux/install-reloc: Expect one more argument, or an environment
8280         variable RELOC_STRIP_PROG. If set, strip the destination program and
8281         its wrapper.
8282         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
8283         RELOC_STRIP_PROG.
8284         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
8285         to set RELOCATABLE_STRIP.
8286         * NEWS: Mention the new Makefile requirement.
8287
8288 2009-01-17  Bruno Haible  <bruno@clisp.org>
8289
8290         * build-aux/install-reloc: Remove debugging information left over by
8291         C compiler on MacOS X.
8292
8293 2009-01-17  Bruno Haible  <bruno@clisp.org>
8294
8295         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
8296         * lib/progreloc.c (find_executable): Fix type of pointer passed to
8297         _NSGetExecutablePath.
8298
8299 2009-01-16  Jim Meyering  <meyering@redhat.com>
8300
8301         strerror: avoid warnings about discarding "const"
8302         * lib/strerror.c (rpl_strerror): Instead of returning a const
8303         string from each and every "case", use a variable, and add a single
8304         cast after the switch.
8305
8306 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
8307
8308         * lib/arpa_inet.in.h: Add extern "C" block for C++.
8309
8310 2009-01-16  Bruno Haible  <bruno@clisp.org>
8311
8312         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
8313         array initializer syntax that also works in C++ mode.
8314         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8315
8316 2009-01-16  Jim Meyering  <meyering@redhat.com>
8317
8318         poll: suppress a warning
8319         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
8320         to ignore "...unsigned expression < 0 is always false" warnings.
8321
8322 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
8323
8324         poll: remove declarations of unused variables
8325         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
8326         sockbuf and optlen.
8327
8328 2009-01-15  Bruno Haible  <bruno@clisp.org>
8329
8330         Make fflush-after-ungetc POSIX compliant on BSD systems.
8331         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
8332         (clear_ungetc_buffer): Implement also for other systems.
8333         (rpl_fflush): On glibc systems, invoke
8334         clear_ungetc_buffer_preserving_position. Otherwise, invoke
8335         clear_ungetc_buffer after fetching the stream's position, not before.
8336
8337 2009-01-15  Bruno Haible  <bruno@clisp.org>
8338
8339         Make fflush-after-ungetc POSIX compliant on glibc systems.
8340         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
8341         after ungetc.
8342         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
8343         (rpl_fflush): On glibc systems, simply call the system's fflush
8344         function after clearing the ungetc buffer.
8345         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
8346         Instead, lseek only to the end of file, then use the system's fseeko
8347         for the rest. On glibc systems, reset the EOF indicator bit.
8348
8349 2009-01-15  Jim Meyering  <meyering@redhat.com>
8350
8351         openmp.m4: revert quote-adding change, for portability to older autoconf
8352         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
8353         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
8354         Simon Josefsson noticed the problem when using autoconf-2.61.
8355
8356 2009-01-15  Bruno Haible  <bruno@clisp.org>
8357
8358         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
8359         * tests/test-fflush2.c (ASSERT): Always fail.
8360         (main): Add two tests for fflush() after ungetc(), taking into account
8361         the Austin Group's clarification.
8362         Suggested by Eric Blake.
8363
8364 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
8365
8366         mktime.m4: remove K&R-style function prototypes
8367         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
8368         for the Sun C++ compiler.
8369
8370 2009-01-14  Bruno Haible  <bruno@clisp.org>
8371
8372         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
8373         while including <wchar.h>.
8374         * lib/wchar.in.h: In two particular situations on HP-UX, include only
8375         the system's <wchar.h> file.
8376         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8377
8378 2009-01-14  Bruno Haible  <bruno@clisp.org>
8379
8380         * m4/csharp.m4: Don't mention gettext on the serial number line.
8381         * m4/csharpexec.m4: Likewise.
8382         * m4/eaccess.m4: Likewise.
8383         * m4/javaexec.m4: Likewise.
8384         * m4/sig_atomic_t.m4: Likewise.
8385         * m4/tmpdir.m4: Likewise.
8386         * m4/intldir.m4: Bump gettext version.
8387         * m4/lib-ld.m4: Likewise.
8388
8389 2009-01-14  Bruno Haible  <bruno@clisp.org>
8390
8391         * lib/progname.c (set_program_name): Add more comments.
8392         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
8393
8394 2009-01-14  Simon Josefsson  <simon@josefsson.org>
8395
8396         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
8397         were sys/stat.h does not define it.
8398
8399 2009-01-14  Jim Meyering  <meyering@redhat.com>
8400
8401         many *.m4 files: improve m4 quoting
8402         99% of this change was performed by running the following commands:
8403         git ls-files | grep '\.m4$' | xargs perl -pi \
8404           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
8405           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
8406           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
8407           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
8408         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
8409         The remainder were to add Copyright dates, increment serial numbers,
8410         undo some changes in comments, exclude m4/intl.m4, and add quotes
8411         around the "1" in ",1" where the unusual spacing prohibited the
8412         above regexps from doing the job.  For more details, see
8413         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
8414         * m4/acl.m4: Modified.
8415         * m4/afs.m4: Likewise.
8416         * m4/alloca.m4: Likewise.
8417         * m4/argp.m4: Likewise.
8418         * m4/argz.m4: Likewise.
8419         * m4/atexit.m4: Likewise.
8420         * m4/bison-i18n.m4: Likewise.
8421         * m4/bison.m4: Likewise.
8422         * m4/byteswap.m4: Likewise.
8423         * m4/c-stack.m4: Likewise.
8424         * m4/c-strtod.m4: Likewise.
8425         * m4/calloc.m4: Likewise.
8426         * m4/canonicalize-lgpl.m4: Likewise.
8427         * m4/chown.m4: Likewise.
8428         * m4/clock_time.m4: Likewise.
8429         * m4/codeset.m4: Likewise.
8430         * m4/copy-file.m4: Likewise.
8431         * m4/csharp.m4: Likewise.
8432         * m4/csharpcomp.m4: Likewise.
8433         * m4/csharpexec.m4: Likewise.
8434         * m4/d-ino.m4: Likewise.
8435         * m4/d-type.m4: Likewise.
8436         * m4/dirfd.m4: Likewise.
8437         * m4/double-slash-root.m4: Likewise.
8438         * m4/eaccess.m4: Likewise.
8439         * m4/eealloc.m4: Likewise.
8440         * m4/environ.m4: Likewise.
8441         * m4/errno_h.m4: Likewise.
8442         * m4/euidaccess.m4: Likewise.
8443         * m4/execute.m4: Likewise.
8444         * m4/fatal-signal.m4: Likewise.
8445         * m4/fchdir.m4: Likewise.
8446         * m4/fcntl_h.m4: Likewise.
8447         * m4/fileblocks.m4: Likewise.
8448         * m4/filenamecat.m4: Likewise.
8449         * m4/findprog.m4: Likewise.
8450         * m4/flexmember.m4: Likewise.
8451         * m4/fnmatch.m4: Likewise.
8452         * m4/fopen.m4: Likewise.
8453         * m4/fpending.m4: Likewise.
8454         * m4/fprintf-posix.m4: Likewise.
8455         * m4/free.m4: Likewise.
8456         * m4/frexp.m4: Likewise.
8457         * m4/frexpl.m4: Likewise.
8458         * m4/fsusage.m4: Likewise.
8459         * m4/ftruncate.m4: Likewise.
8460         * m4/gc-camellia.m4: Likewise.
8461         * m4/gc-random.m4: Likewise.
8462         * m4/gc.m4: Likewise.
8463         * m4/getaddrinfo.m4: Likewise.
8464         * m4/getcwd-abort-bug.m4: Likewise.
8465         * m4/getcwd-path-max.m4: Likewise.
8466         * m4/getdate.m4: Likewise.
8467         * m4/getdomainname.m4: Likewise.
8468         * m4/getgroups.m4: Likewise.
8469         * m4/gethostname.m4: Likewise.
8470         * m4/gethrxtime.m4: Likewise.
8471         * m4/getline.m4: Likewise.
8472         * m4/getloadavg.m4: Likewise.
8473         * m4/getndelim2.m4: Likewise.
8474         * m4/getpass.m4: Likewise.
8475         * m4/gettext.m4: Likewise.
8476         * m4/gettime.m4: Likewise.
8477         * m4/gettimeofday.m4: Likewise.
8478         * m4/gnulib-common.m4: Likewise.
8479         * m4/group-member.m4: Likewise.
8480         * m4/host-os.m4: Likewise.
8481         * m4/iconv.m4: Likewise.
8482         * m4/iconv_open.m4: Likewise.
8483         * m4/inet_ntop.m4: Likewise.
8484         * m4/inet_pton.m4: Likewise.
8485         * m4/inline.m4: Likewise.
8486         * m4/intldir.m4: Likewise.
8487         * m4/intlmacosx.m4: Likewise.
8488         * m4/intmax.m4: Likewise.
8489         * m4/intmax_t.m4: Likewise.
8490         * m4/inttypes.m4: Likewise.
8491         * m4/inttypes_h.m4: Likewise.
8492         * m4/inttypes-pri.m4: Likewise.
8493         * m4/isapipe.m4: Likewise.
8494         * m4/isnand.m4: Likewise.
8495         * m4/isnanf.m4: Likewise.
8496         * m4/isnanl.m4: Likewise.
8497         * m4/javacomp.m4: Likewise.
8498         * m4/javaexec.m4: Likewise.
8499         * m4/jm-winsz1.m4: Likewise.
8500         * m4/jm-winsz2.m4: Likewise.
8501         * m4/lchown.m4: Likewise.
8502         * m4/lcmessage.m4: Likewise.
8503         * m4/ldexpl.m4: Likewise.
8504         * m4/lib-ld.m4: Likewise.
8505         * m4/lib-link.m4: Likewise.
8506         * m4/libsigsegv.m4: Likewise.
8507         * m4/link-follow.m4: Likewise.
8508         * m4/localcharset.m4: Likewise.
8509         * m4/locale-fr.m4: Likewise.
8510         * m4/locale-ja.m4: Likewise.
8511         * m4/locale-tr.m4: Likewise.
8512         * m4/locale-zh.m4: Likewise.
8513         * m4/lock.m4: Likewise.
8514         * m4/longlong.m4: Likewise.
8515         * m4/ls-mntd-fs.m4: Likewise.
8516         * m4/lstat.m4: Likewise.
8517         * m4/malloc.m4: Likewise.
8518         * m4/mathl.m4: Likewise.
8519         * m4/mbrtowc.m4: Likewise.
8520         * m4/mbstate_t.m4: Likewise.
8521         * m4/mbswidth.m4: Likewise.
8522         * m4/memchr.m4: Likewise.
8523         * m4/memcmp.m4: Likewise.
8524         * m4/memcpy.m4: Likewise.
8525         * m4/memmem.m4: Likewise.
8526         * m4/memmove.m4: Likewise.
8527         * m4/mempcpy.m4: Likewise.
8528         * m4/memrchr.m4: Likewise.
8529         * m4/memset.m4: Likewise.
8530         * m4/minmax.m4: Likewise.
8531         * m4/mkdir-slash.m4: Likewise.
8532         * m4/mkdtemp.m4: Likewise.
8533         * m4/mktime.m4: Likewise.
8534         * m4/mmap-anon.m4: Likewise.
8535         * m4/mountlist.m4: Likewise.
8536         * m4/nanosleep.m4: Likewise.
8537         * m4/nls.m4: Likewise.
8538         * m4/nocrash.m4: Likewise.
8539         * m4/open.m4: Likewise.
8540         * m4/openat.m4: Likewise.
8541         * m4/openmp.m4: Likewise.
8542         * m4/pathmax.m4: Likewise.
8543         * m4/perl.m4: Likewise.
8544         * m4/physmem.m4: Likewise.
8545         * m4/pipe.m4: Likewise.
8546         * m4/po.m4: Likewise.
8547         * m4/poll.m4: Likewise.
8548         * m4/posixtm.m4: Likewise.
8549         * m4/posixver.m4: Likewise.
8550         * m4/printf-frexp.m4: Likewise.
8551         * m4/printf-frexpl.m4: Likewise.
8552         * m4/printf-posix.m4: Likewise.
8553         * m4/printf-posix-rpl.m4: Likewise.
8554         * m4/printf.m4: Likewise.
8555         * m4/progtest.m4: Likewise.
8556         * m4/putenv.m4: Likewise.
8557         * m4/readline.m4: Likewise.
8558         * m4/readlink.m4: Likewise.
8559         * m4/readutmp.m4: Likewise.
8560         * m4/realloc.m4: Likewise.
8561         * m4/regex.m4: Likewise.
8562         * m4/relocatable.m4: Likewise.
8563         * m4/relocatable-lib.m4: Likewise.
8564         * m4/rename-dest-slash.m4: Likewise.
8565         * m4/rename.m4: Likewise.
8566         * m4/rmdir-errno.m4: Likewise.
8567         * m4/rmdir.m4: Likewise.
8568         * m4/roundf.m4: Likewise.
8569         * m4/roundl.m4: Likewise.
8570         * m4/rpmatch.m4: Likewise.
8571         * m4/save-cwd.m4: Likewise.
8572         * m4/selinux-selinux-h.m4: Likewise.
8573         * m4/setenv.m4: Likewise.
8574         * m4/settime.m4: Likewise.
8575         * m4/sig2str.m4: Likewise.
8576         * m4/sig_atomic_t.m4: Likewise.
8577         * m4/signalblocking.m4: Likewise.
8578         * m4/signbit.m4: Likewise.
8579         * m4/sigpipe.m4: Likewise.
8580         * m4/sockets.m4: Likewise.
8581         * m4/sockpfaf.m4: Likewise.
8582         * m4/st_dm_mode.m4: Likewise.
8583         * m4/stat-time.m4: Likewise.
8584         * m4/stdbool.m4: Likewise.
8585         * m4/stdint.m4: Likewise.
8586         * m4/stdint_h.m4: Likewise.
8587         * m4/stpcpy.m4: Likewise.
8588         * m4/stpncpy.m4: Likewise.
8589         * m4/strcase.m4: Likewise.
8590         * m4/strchrnul.m4: Likewise.
8591         * m4/strcspn.m4: Likewise.
8592         * m4/strdup.m4: Likewise.
8593         * m4/strftime.m4: Likewise.
8594         * m4/strndup.m4: Likewise.
8595         * m4/strnlen.m4: Likewise.
8596         * m4/strpbrk.m4: Likewise.
8597         * m4/strptime.m4: Likewise.
8598         * m4/strsep.m4: Likewise.
8599         * m4/strtod.m4: Likewise.
8600         * m4/strtoimax.m4: Likewise.
8601         * m4/strtok_r.m4: Likewise.
8602         * m4/strtol.m4: Likewise.
8603         * m4/strtoll.m4: Likewise.
8604         * m4/strtoul.m4: Likewise.
8605         * m4/strtoull.m4: Likewise.
8606         * m4/strtoumax.m4: Likewise.
8607         * m4/strverscmp.m4: Likewise.
8608         * m4/threadlib.m4: Likewise.
8609         * m4/timegm.m4: Likewise.
8610         * m4/tm_gmtoff.m4: Likewise.
8611         * m4/tmpdir.m4: Likewise.
8612         * m4/tmpfile.m4: Likewise.
8613         * m4/tzset.m4: Likewise.
8614         * m4/uintmax_t.m4: Likewise.
8615         * m4/unlinkdir.m4: Likewise.
8616         * m4/unlocked-io.m4: Likewise.
8617         * m4/uptime.m4: Likewise.
8618         * m4/userspec.m4: Likewise.
8619         * m4/utimbuf.m4: Likewise.
8620         * m4/utime.m4: Likewise.
8621         * m4/utimes-null.m4: Likewise.
8622         * m4/utimes.m4: Likewise.
8623         * m4/vararrays.m4: Likewise.
8624         * m4/vasnprintf.m4: Likewise.
8625         * m4/vfprintf-posix.m4: Likewise.
8626         * m4/vprintf-posix.m4: Likewise.
8627         * m4/wait-process.m4: Likewise.
8628         * m4/wchar_t.m4: Likewise.
8629         * m4/wint_t.m4: Likewise.
8630         * m4/write-any-file.m4: Likewise.
8631         * m4/yield.m4: Likewise.
8632
8633 2009-01-13  Bruno Haible  <bruno@clisp.org>
8634
8635         Avoid test-copy-file.sh failures when ACL support insufficient.
8636         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
8637         TESTS_ENVIRONMENT.
8638         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
8639         Reported by Jim Meyering.
8640
8641 2009-01-13  Bruno Haible  <bruno@clisp.org>
8642
8643         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
8644         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
8645         * modules/unistdio/u8-printf-parse (Files): Likewise.
8646         * modules/unistdio/u32-printf-parse (Files): Likewise.
8647         * modules/unistdio/ulc-printf-parse (Files): Likewise.
8648
8649 2009-01-13  Simon Josefsson  <simon@josefsson.org>
8650
8651         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
8652         and m4/inttypes_h.m4 too.
8653
8654 2009-01-12  Eric Blake  <ebb9@byu.net>
8655
8656         tests: IRIX 6.2 cc can't compile -0.0 into .data
8657         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
8658         rather than at compile-time.
8659         * tests/test-floorl.c (minus_zero): Likewise.
8660         * tests/test-frexpl.c (minus_zero): Likewise.
8661         * tests/test-isnan.c (minus_zerol): Likewise.
8662         * tests/test-isnanl.h (minus_zero): Likewise.
8663         * tests/test-ldexpl.c (minus_zero): Likewise.
8664         * tests/test-roundl.c (minus_zero): Likewise.
8665         * tests/test-signbit.c (minus_zerol): Likewise.
8666         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
8667         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
8668         * tests/test-truncl.c (minus_zero): Likewise.
8669         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
8670         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
8671         Reported by Tom G. Christensen and Nelson H. F. Beebe.
8672
8673 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
8674
8675         regex: fix glibc bug 9697
8676         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
8677         handling.
8678
8679 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
8680
8681         regex: fix glibc bug 697
8682         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
8683         being NULL also if there are no backreferences.
8684
8685 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
8686
8687         regex: merge glibc changes
8688         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
8689         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
8690         re_string_skip_chars, re_string_reconstruct): Likewise.
8691         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
8692
8693 2009-01-07  Jim Meyering  <meyering@redhat.com>
8694
8695         poll: filter through cppi
8696         * lib/poll.c: Indent cpp directives to reflect nesting.
8697
8698 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
8699
8700         poll: don't return uninitialized
8701         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
8702
8703 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
8704
8705         avoid compile failure on AIX 6.1
8706         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
8707         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
8708
8709 2009-01-04  Jim Meyering  <meyering@redhat.com>
8710
8711         remove duplicate inclusion of <stdio.h>
8712         * tests/test-fprintf-posix.c: Likewise.
8713         * tests/test-printf-posix.c: Likewise.
8714         * tests/test-snprintf-posix.c: Likewise.
8715         * tests/test-sprintf-posix.c: Likewise.
8716         * tests/test-vasprintf-posix.c: Likewise.
8717         * tests/test-vfprintf-posix.c: Likewise.
8718         * tests/test-vprintf-posix.c: Likewise.
8719         * tests/test-vsnprintf-posix.c: Likewise.
8720         * tests/test-vsprintf-posix.c: Likewise.
8721
8722 2009-01-03  Jim Meyering  <meyering@redhat.com>
8723
8724         gnulib-tool: fix sed-based filtering
8725         * gnulib-tool (func_filter_filelist): Remove extra backslash
8726         in sed_fff_filter definition.
8727
8728 2009-01-02  Jim Meyering  <meyering@redhat.com>
8729
8730         strftime: avoid compilation failure on Solaris 2.6
8731         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
8732         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
8733         Don't #define mbrlen or mbsinit, since now they're guaranteed to
8734         be available.  Reported by Tom G. Christensen.  Details in
8735         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
8736
8737 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8738             Bruno Haible  <bruno@clisp.org>
8739
8740         Speed up gnulib-tool by doing more string processing through shell
8741         built-ins.
8742         * gnulib-tool (fast_func_append): New variable.
8743         (func_remove_prefix, func_remove_suffix): New functions.
8744         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
8745         (func_filter_filelist): New function.
8746         (func_get_dependencies): Use func_remove_suffix instead of sed.
8747         (func_get_automake_snippet): Use func_filter_filelist instead of a
8748         subshell and sed invocation.
8749
8750 2009-01-01  Bruno Haible  <bruno@clisp.org>
8751
8752         Fix a security bug.
8753         * gnulib-tool (func_import, import, update): Don't allow the characters
8754         '"', '$', '`', '\' in macro arguments that become part of commands that
8755         are evaluated.
8756
8757 2009-01-01  Bruno Haible  <bruno@clisp.org>
8758
8759         * gnulib-tool (func_reset_sigpipe): Add more comments.
8760
8761 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8762
8763         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
8764         func_emit_tests_Makefile_am, func_import): Abort loops early if we
8765         already know the answer.
8766
8767 2009-01-01  Jim Meyering  <meyering@redhat.com>
8768
8769         * lib/version-etc.c (version_etc_va): Update copyright year.
8770
8771 2008-12-30  Bruno Haible  <bruno@clisp.org>
8772
8773         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
8774         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
8775         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
8776
8777 2008-12-29  Eric Blake  <ebb9@byu.net>
8778
8779         multiarch: avoid autoconf AC_REQUIRE bug
8780         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
8781         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
8782         2.63 and older.
8783         Reported by Bruno Haible, and analyzed in
8784         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
8785
8786 2008-12-29  Bruno Haible  <bruno@clisp.org>
8787
8788         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
8789         files in subdirectories correctly.
8790         Reported by Ralf Wildenhues.
8791
8792 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8793
8794         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
8795         rather than 'join FILE -', for Solaris join.
8796
8797 2008-12-29  Bruno Haible  <bruno@clisp.org>
8798
8799         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
8800         quoting.
8801         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
8802         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
8803         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
8804         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
8805         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
8806         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
8807         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
8808         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
8809         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
8810         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
8811         * m4/nls.m4 (AM_NLS): Likewise.
8812         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
8813         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
8814         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
8815         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
8816         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
8817         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
8818         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
8819         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
8820         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
8821         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
8822         * m4/xsize.m4 (gl_XSIZE): Likewise.
8823         Suggested by Jim Meyering.
8824
8825 2008-11-17  Bruce Korb  <bkorb@gnu.org>
8826
8827         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
8828         * lib/parse-duration.c: use a switch instead of cascading if's.
8829
8830 2008-12-29  Eric Blake  <ebb9@byu.net>
8831
8832         wchar.h: supply WEOF on Irix 5.3
8833         * lib/wchar.in.h (wint_t): Also supply WEOF.
8834         * lib/wctype.in.h (wint_t): Likewise.
8835         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
8836         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
8837         Reported by Tom G. Christensen.
8838
8839 2008-12-26  Bruno Haible  <bruno@clisp.org>
8840
8841         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
8842         i486, i586, i686.
8843
8844 2008-12-26  Bruno Haible  <bruno@clisp.org>
8845
8846         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
8847
8848 2008-12-26  Bruno Haible  <bruno@clisp.org>
8849
8850         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
8851         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
8852         not __STDC_CONSTANT_MACROS.
8853         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
8854
8855 2008-12-25  Bruno Haible  <bruno@clisp.org>
8856
8857         Add support for universal builds to vasnprintf.
8858         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
8859         universal builds, guess no.
8860         * modules/vasnprintf-posix (Depends-on): Add multiarch.
8861         * modules/vasprintf-posix (Depends-on): Likewise.
8862         * modules/fprintf-posix (Depends-on): Likewise.
8863         * modules/vfprintf-posix (Depends-on): Likewise.
8864         * modules/snprintf-posix (Depends-on): Likewise.
8865         * modules/vsnprintf-posix (Depends-on): Likewise.
8866         * modules/sprintf-posix (Depends-on): Likewise.
8867         * modules/vsprintf-posix (Depends-on): Likewise.
8868         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
8869         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
8870         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
8871         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
8872         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
8873         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
8874         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
8875
8876         Add support for universal builds to <inttypes.h>.
8877         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
8878         _SCNu64_PREFIX): In Apple
8879         universal builds, define directly, using _LP64.
8880         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
8881         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
8882         * modules/inttypes (Depends-on): Add multiarch.
8883         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
8884
8885         Add support for universal builds to <stdint.h>.
8886         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
8887         universal builds, define directly, using _LP64.
8888         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
8889         Apple universal builds, don't test for the size and suffix of ptrdiff_t
8890         and size_t.
8891         * modules/stdint (Depends-on): Add multiarch.
8892         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
8893
8894         New module 'multiarch'.
8895         * modules/multiarch: New file.
8896         * m4/multiarch.m4: New file.
8897
8898 2008-12-25  Bruno Haible  <bruno@clisp.org>
8899
8900         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
8901
8902 2008-12-25  Bruno Haible  <bruno@clisp.org>
8903
8904         * modules/btowc (License): Relicense under LGPLv2+.
8905         * modules/mbsinit (License): Likewise.
8906         * modules/mbrtowc (License): Likewise.
8907         * modules/wcrtomb (License): Likewise.
8908         * modules/streq (License): Likewise.
8909         Reported by David Lutterkort <lutter@redhat.com>.
8910
8911 2008-12-23  Bruno Haible  <bruno@clisp.org>
8912
8913         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
8914
8915 2008-12-23  Bruno Haible  <bruno@clisp.org>
8916
8917         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
8918         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
8919         GETADDRINFO_LIB, not in LIBS.
8920         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
8921         * modules/canon-host (Link): Likewise.
8922         * NEWS: Mention the change.
8923         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
8924         GETADDRINFO_LIB.
8925
8926 2008-12-22  Bruno Haible  <bruno@clisp.org>
8927
8928         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
8929         * doc/posix-functions/iswalpha_l.texi: Likewise.
8930         * doc/posix-functions/iswblank_l.texi: Likewise.
8931         * doc/posix-functions/iswcntrl_l.texi: Likewise.
8932         * doc/posix-functions/iswctype_l.texi: Likewise.
8933         * doc/posix-functions/iswdigit_l.texi: Likewise.
8934         * doc/posix-functions/iswgraph_l.texi: Likewise.
8935         * doc/posix-functions/iswlower_l.texi: Likewise.
8936         * doc/posix-functions/iswprint_l.texi: Likewise.
8937         * doc/posix-functions/iswpunct_l.texi: Likewise.
8938         * doc/posix-functions/iswspace_l.texi: Likewise.
8939         * doc/posix-functions/iswupper_l.texi: Likewise.
8940         * doc/posix-functions/iswxdigit_l.texi: Likewise.
8941         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
8942         * doc/posix-functions/open_wmemstream.texi: Likewise.
8943         * doc/posix-functions/swscanf.texi: Likewise.
8944         * doc/posix-functions/towctrans_l.texi: Likewise.
8945         * doc/posix-functions/towlower.texi: Likewise.
8946         * doc/posix-functions/towlower_l.texi: Likewise.
8947         * doc/posix-functions/towupper.texi: Likewise.
8948         * doc/posix-functions/towupper_l.texi: Likewise.
8949         * doc/posix-functions/vfwprintf.texi: Likewise.
8950         * doc/posix-functions/vfwscanf.texi: Likewise.
8951         * doc/posix-functions/vswscanf.texi: Likewise.
8952         * doc/posix-functions/vwprintf.texi: Likewise.
8953         * doc/posix-functions/vwscanf.texi: Likewise.
8954         * doc/posix-functions/wcpcpy.texi: Likewise.
8955         * doc/posix-functions/wcpncpy.texi: Likewise.
8956         * doc/posix-functions/wcscasecmp.texi: Likewise.
8957         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
8958         * doc/posix-functions/wcscoll_l.texi: Likewise.
8959         * doc/posix-functions/wcsdup.texi: Likewise.
8960         * doc/posix-functions/wcsncasecmp.texi: Likewise.
8961         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
8962         * doc/posix-functions/wcsnlen.texi: Likewise.
8963         * doc/posix-functions/wcsnrtombs.texi: Likewise.
8964         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
8965         * doc/posix-functions/wctrans_l.texi: Likewise.
8966         * doc/posix-functions/wctype_l.texi: Likewise.
8967         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
8968         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
8969         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
8970         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
8971         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
8972         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
8973         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
8974         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
8975         * doc/glibc-functions/wcschrnul.texi: Likewise.
8976         * doc/glibc-functions/wcsftime_l.texi: Likewise.
8977         * doc/glibc-functions/wcstod_l.texi: Likewise.
8978         * doc/glibc-functions/wcstof_l.texi: Likewise.
8979         * doc/glibc-functions/wcstol_l.texi: Likewise.
8980         * doc/glibc-functions/wcstold_l.texi: Likewise.
8981         * doc/glibc-functions/wcstoll_l.texi: Likewise.
8982         * doc/glibc-functions/wcstoq.texi: Likewise.
8983         * doc/glibc-functions/wcstoul_l.texi: Likewise.
8984         * doc/glibc-functions/wcstoull_l.texi: Likewise.
8985         * doc/glibc-functions/wcstouq.texi: Likewise.
8986         * doc/glibc-functions/wmempcpy.texi: Likewise.
8987
8988 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
8989             Eric Blake  <ebb9@byu.net>
8990             Paolo Bonzini  <bonzini@gnu.org>
8991             Bruno Haible  <bruno@clisp.org>
8992
8993         Make c-stack work on Haiku.
8994         * lib/c-stack.c (SA_ONSTACK): Define fallback.
8995         (c_stack_action): Use SA_ONSTACK flag.
8996
8997 2008-12-22  Bruno Haible  <bruno@clisp.org>
8998
8999         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
9000
9001 2008-12-22  Bruno Haible  <bruno@clisp.org>
9002
9003         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
9004         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
9005         being overridden.
9006         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
9007         New macros.
9008         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
9009         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
9010         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
9011         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
9012
9013 2008-12-22  Bruno Haible  <bruno@clisp.org>
9014
9015         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
9016         from test code.
9017
9018 2008-12-22  Eric Blake  <ebb9@byu.net>
9019
9020         Avoid gcc warnings on cygwin.
9021         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
9022         Avoid unused variable.
9023         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
9024         Likewise.
9025
9026 2008-12-22  Bruno Haible  <bruno@clisp.org>
9027
9028         Remove HAVE_MBRTOWC conditionals.
9029         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
9030         (mbscasecmp): Assume mbrtowc function.
9031         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
9032         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
9033         * lib/mbschr.c: Include mbuiter.h unconditionally.
9034         (mbschr): Assume mbrtowc function.
9035         * lib/mbscspn.c: Include mbuiter.h unconditionally.
9036         (mbscspn): Assume mbrtowc function.
9037         * lib/mbslen.c: Include mbuiter.h unconditionally.
9038         (mbslen): Assume mbrtowc function.
9039         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
9040         (mbsncasecmp): Assume mbrtowc function.
9041         * lib/mbsnlen.c: Include mbiter.h unconditionally.
9042         (mbsnlen): Assume mbrtowc function.
9043         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
9044         (mbspbrk): Assume mbrtowc function.
9045         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
9046         (mbspcasecmp): Assume mbrtowc function.
9047         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
9048         (mbsrchr): Assume mbrtowc function.
9049         * lib/mbssep.c: Include mbuiter.h unconditionally.
9050         (mbssep): Assume mbrtowc function.
9051         * lib/mbsspn.c: Include mbuiter.h unconditionally.
9052         (mbsspn): Assume mbrtowc function.
9053         * lib/mbsstr.c: Include mbuiter.h unconditionally.
9054         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
9055         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
9056         (mbstok_r): Assume mbrtowc function.
9057         * lib/propername.c: Include mbuiter.h unconditionally.
9058         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
9059         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
9060         (trim2): Assume mbrtowc function.
9061         * lib/mbswidth.c (mbsinit): Remove fallback definition.
9062         (mbsnwidth): Assume mbrtowc function.
9063         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
9064         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
9065         fallback definitions.
9066         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
9067
9068 2008-12-22  Bruno Haible  <bruno@clisp.org>
9069
9070         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
9071
9072 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
9073
9074         * modules/regex: Request emulations for the mb*/wc* functions we need.
9075         * m4/regex.m4: Don't look for those functions here.
9076         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
9077
9078 2008-12-22  Bruno Haible  <bruno@clisp.org>
9079
9080         * modules/fnmatch (Depends-on): Remove duplicated dependency.
9081
9082 2008-12-21  Bruno Haible  <bruno@clisp.org>
9083
9084         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
9085         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
9086         (Include): Remove conditionalization.
9087         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
9088         (Include): Remove conditionalization.
9089         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
9090         (Include): Remove conditionalization.
9091         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
9092         * m4/mbfile.m4 (gl_MBFILE): Likewise.
9093         * NEWS: Mention the change.
9094         Reported by Alan Hourihane <alanh@fairlite.co.uk>
9095         via Sergey Poznyakoff <gray@gnu.org.ua>.
9096
9097 2008-12-21  Bruno Haible  <bruno@clisp.org>
9098
9099         * MODULES.html.sh (Extended multibyte and wide character utilities
9100         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
9101         wcrtomb, wcsrtombs.
9102         (Support for systems lacking POSIX:2008): Add accept, bind, close,
9103         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
9104         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
9105         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
9106
9107 2008-12-21  Bruno Haible  <bruno@clisp.org>
9108
9109         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
9110
9111 2008-12-21  Bruno Haible  <bruno@clisp.org>
9112
9113         * modules/wcsnrtombs-tests: New file.
9114         * tests/test-wcsnrtombs1.sh: New file.
9115         * tests/test-wcsnrtombs2.sh: New file.
9116         * tests/test-wcsnrtombs3.sh: New file.
9117         * tests/test-wcsnrtombs4.sh: New file.
9118         * tests/test-wcsnrtombs.c: New file.
9119
9120         New module 'wcsnrtombs'.
9121         * lib/wchar.in.h (wcsnrtombs): New declaration.
9122         * lib/wcsnrtombs.c: New file.
9123         * lib/wcsrtombs-state.c: New file.
9124         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
9125         (internal_state): Remove variable.
9126         * m4/wcsnrtombs.m4: New file.
9127         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
9128         compilation units.
9129         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
9130         HAVE_WCSNRTOMBS.
9131         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
9132         HAVE_WCSNRTOMBS.
9133         * modules/wcsnrtombs: New file.
9134         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
9135         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
9136
9137 2008-12-21  Bruno Haible  <bruno@clisp.org>
9138
9139         * modules/wcsrtombs-tests: New file.
9140         * tests/test-wcsrtombs1.sh: New file.
9141         * tests/test-wcsrtombs2.sh: New file.
9142         * tests/test-wcsrtombs3.sh: New file.
9143         * tests/test-wcsrtombs4.sh: New file.
9144         * tests/test-wcsrtombs.c: New file.
9145
9146         New module 'wcsrtombs'.
9147         * lib/wchar.in.h (wcsrtombs): New declaration.
9148         * lib/wcsrtombs.c: New file.
9149         * m4/wcsrtombs.m4: New file.
9150         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
9151         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
9152         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
9153         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
9154         * modules/wcsrtombs: New file.
9155         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
9156         bugs.
9157
9158 2008-12-21  Bruno Haible  <bruno@clisp.org>
9159
9160         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
9161         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
9162         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
9163         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
9164         if not correct.
9165         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
9166         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
9167         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
9168         m4/locale-zh.m4, m4/codeset.m4.
9169         * doc/posix-functions/wcrtomb.texi: Document the bug.
9170
9171 2008-12-21  Bruno Haible  <bruno@clisp.org>
9172
9173         Work around a btowc() bug on IRIX 6.5.
9174         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
9175         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
9176         REPLACE_WTOBC if not.
9177         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
9178         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
9179         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
9180
9181 2008-12-21  Bruno Haible  <bruno@clisp.org>
9182
9183         * modules/wcrtomb-tests: New file.
9184         * tests/test-wcrtomb.sh: New file.
9185         * tests/test-wcrtomb.c: New file.
9186
9187         New module 'wcrtomb'.
9188         * lib/wchar.in.h (wcrtomb): New declaration.
9189         * lib/wcrtomb.c: New file.
9190         * m4/wcrtomb.m4: New file.
9191         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
9192         HAVE_WCRTOMB.
9193         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
9194         HAVE_WCRTOMB.
9195         * modules/wcrtomb: New file.
9196         * doc/posix-functions/wcrtomb.texi: Mention the new module.
9197
9198 2008-12-21  Bruno Haible  <bruno@clisp.org>
9199
9200         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
9201         * modules/mbsrtowcs (Files): Likewise.
9202         * modules/wctob (Files): Likewise.
9203         * modules/c-strcase-tests (Files): Likewise.
9204         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
9205         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
9206         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
9207         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
9208         * modules/vasnprintf-posix-tests (Files): Likewise.
9209
9210 2008-12-21  William Pursell  <bill.pursell@gmail.com>
9211
9212         gitlog-to-changelog: pass all command-line arguments to git-log
9213         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
9214         it is sometimes convenient to filter the commits in various ways.
9215         gitlog-to-changelog only allows --since to specify a start date,
9216         but git-log itself supports many other filtering mechanisms.
9217         At the moment, I want to filter by branch name.  Rather than
9218         adding a --branch option to gitlog-to-changelog, it seems more
9219         flexible to simply pass all options directly to git-log and let
9220         git do the work.  Notice that this effectively makes --since a
9221         redundant option for gitlog-to-changelog, but removing it would
9222         require current usage to change since calls would then require
9223         an additional '--'.
9224
9225 2008-12-21  Bruno Haible  <bruno@clisp.org>
9226
9227         * modules/mbsnrtowcs-tests: New file.
9228         * tests/test-mbsnrtowcs1.sh: New file.
9229         * tests/test-mbsnrtowcs2.sh: New file.
9230         * tests/test-mbsnrtowcs3.sh: New file.
9231         * tests/test-mbsnrtowcs4.sh: New file.
9232         * tests/test-mbsnrtowcs.c: New file.
9233
9234         New module 'mbsnrtowcs'.
9235         * lib/wchar.in.h (mbsnrtowcs): New declaration.
9236         * lib/mbsnrtowcs.c: New file.
9237         * lib/mbsrtowcs-state.c: New file.
9238         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
9239         (internal_state): Remove variable.
9240         * m4/mbsnrtowcs.m4: New file.
9241         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
9242         compilation units.
9243         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
9244         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
9245         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
9246         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
9247         * modules/mbsnrtowcs: New file.
9248         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
9249         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
9250         portability problem.
9251
9252 2008-12-21  Bruno Haible  <bruno@clisp.org>
9253
9254         Work around mbsrtowcs bug.
9255         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
9256         (gl_FUNC_MBSRTOWCS): Invoke it.
9257         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
9258         m4/locale-zh.m4.
9259         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
9260
9261 2008-12-21  Bruno Haible  <bruno@clisp.org>
9262
9263         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
9264
9265 2008-12-21  Bruno Haible  <bruno@clisp.org>
9266
9267         Update doc for AIX.
9268         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
9269         16-bit wchar_t type.
9270         * doc/posix-functions/btowc.texi: Likewise.
9271         * doc/posix-functions/fgetwc.texi: Likewise.
9272         * doc/posix-functions/fgetws.texi: Likewise.
9273         * doc/posix-functions/fputwc.texi: Likewise.
9274         * doc/posix-functions/fputws.texi: Likewise.
9275         * doc/posix-functions/fwide.texi: Likewise.
9276         * doc/posix-functions/fwprintf.texi: Likewise.
9277         * doc/posix-functions/fwscanf.texi: Likewise.
9278         * doc/posix-functions/getwchar.texi: Likewise.
9279         * doc/posix-functions/getwc.texi: Likewise.
9280         * doc/posix-functions/iswalnum.texi: Likewise.
9281         * doc/posix-functions/iswalpha.texi: Likewise.
9282         * doc/posix-functions/iswblank.texi: Likewise.
9283         * doc/posix-functions/iswcntrl.texi: Likewise.
9284         * doc/posix-functions/iswctype.texi: Likewise.
9285         * doc/posix-functions/iswdigit.texi: Likewise.
9286         * doc/posix-functions/iswgraph.texi: Likewise.
9287         * doc/posix-functions/iswlower.texi: Likewise.
9288         * doc/posix-functions/iswprint.texi: Likewise.
9289         * doc/posix-functions/iswpunct.texi: Likewise.
9290         * doc/posix-functions/iswspace.texi: Likewise.
9291         * doc/posix-functions/iswupper.texi: Likewise.
9292         * doc/posix-functions/iswxdigit.texi: Likewise.
9293         * doc/posix-functions/mbrtowc.texi: Likewise.
9294         * doc/posix-functions/mbsrtowcs.texi: Likewise.
9295         * doc/posix-functions/mbstowcs.texi: Likewise.
9296         * doc/posix-functions/mbtowc.texi: Likewise.
9297         * doc/posix-functions/putwchar.texi: Likewise.
9298         * doc/posix-functions/putwc.texi: Likewise.
9299         * doc/posix-functions/swprintf.texi: Likewise.
9300         * doc/posix-functions/tolower.texi: Likewise.
9301         * doc/posix-functions/toupper.texi: Likewise.
9302         * doc/posix-functions/towctrans.texi: Likewise.
9303         * doc/posix-functions/ungetwc.texi: Likewise.
9304         * doc/posix-functions/vswprintf.texi: Likewise.
9305         * doc/posix-functions/wcrtomb.texi: Likewise.
9306         * doc/posix-functions/wcscat.texi: Likewise.
9307         * doc/posix-functions/wcschr.texi: Likewise.
9308         * doc/posix-functions/wcscmp.texi: Likewise.
9309         * doc/posix-functions/wcscoll.texi: Likewise.
9310         * doc/posix-functions/wcscpy.texi: Likewise.
9311         * doc/posix-functions/wcscspn.texi: Likewise.
9312         * doc/posix-functions/wcsftime.texi: Likewise.
9313         * doc/posix-functions/wcslen.texi: Likewise.
9314         * doc/posix-functions/wcsncat.texi: Likewise.
9315         * doc/posix-functions/wcsncmp.texi: Likewise.
9316         * doc/posix-functions/wcsncpy.texi: Likewise.
9317         * doc/posix-functions/wcspbrk.texi: Likewise.
9318         * doc/posix-functions/wcsrchr.texi: Likewise.
9319         * doc/posix-functions/wcsrtombs.texi: Likewise.
9320         * doc/posix-functions/wcsspn.texi: Likewise.
9321         * doc/posix-functions/wcsstr.texi: Likewise.
9322         * doc/posix-functions/wcstod.texi: Likewise.
9323         * doc/posix-functions/wcstof.texi: Likewise.
9324         * doc/posix-functions/wcstoimax.texi: Likewise.
9325         * doc/posix-functions/wcstok.texi: Likewise.
9326         * doc/posix-functions/wcstold.texi: Likewise.
9327         * doc/posix-functions/wcstoll.texi: Likewise.
9328         * doc/posix-functions/wcstol.texi: Likewise.
9329         * doc/posix-functions/wcstombs.texi: Likewise.
9330         * doc/posix-functions/wcstoull.texi: Likewise.
9331         * doc/posix-functions/wcstoul.texi: Likewise.
9332         * doc/posix-functions/wcstoumax.texi: Likewise.
9333         * doc/posix-functions/wcswidth.texi: Likewise.
9334         * doc/posix-functions/wcsxfrm.texi: Likewise.
9335         * doc/posix-functions/wctob.texi: Likewise.
9336         * doc/posix-functions/wctomb.texi: Likewise.
9337         * doc/posix-functions/wctrans.texi: Likewise.
9338         * doc/posix-functions/wctype.texi: Likewise.
9339         * doc/posix-functions/wcwidth.texi: Likewise.
9340         * doc/posix-functions/wmemchr.texi: Likewise.
9341         * doc/posix-functions/wmemcmp.texi: Likewise.
9342         * doc/posix-functions/wmemcpy.texi: Likewise.
9343         * doc/posix-functions/wmemmove.texi: Likewise.
9344         * doc/posix-functions/wmemset.texi: Likewise.
9345         * doc/posix-functions/wprintf.texi: Likewise.
9346         * doc/posix-functions/wscanf.texi: Likewise.
9347
9348 2008-12-21  Bruno Haible  <bruno@clisp.org>
9349
9350         Update doc for HP-UX 11.11.
9351         * doc/posix-functions/btowc.texi: Clarify that the function is missing
9352         in HP-UX version 11.00, not in all versions of HP-UX 11.
9353         * doc/posix-functions/fwide.texi: Likewise.
9354         * doc/posix-functions/fwprintf.texi: Likewise.
9355         * doc/posix-functions/fwscanf.texi: Likewise.
9356         * doc/posix-functions/inet_ntop.texi: Likewise.
9357         * doc/posix-functions/inet_pton.texi: Likewise.
9358         * doc/posix-functions/mbrlen.texi: Likewise.
9359         * doc/posix-functions/mbrtowc.texi: Likewise.
9360         * doc/posix-functions/mbsinit.texi: Likewise.
9361         * doc/posix-functions/mbsrtowcs.texi: Likewise.
9362         * doc/posix-functions/swprintf.texi: Likewise.
9363         * doc/posix-functions/swscanf.texi: Likewise.
9364         * doc/posix-functions/towctrans.texi: Likewise.
9365         * doc/posix-functions/vfwprintf.texi: Likewise.
9366         * doc/posix-functions/vswprintf.texi: Likewise.
9367         * doc/posix-functions/vwprintf.texi: Likewise.
9368         * doc/posix-functions/wcrtomb.texi: Likewise.
9369         * doc/posix-functions/wcsrtombs.texi: Likewise.
9370         * doc/posix-functions/wcsstr.texi: Likewise.
9371         * doc/posix-functions/wctob.texi: Likewise.
9372         * doc/posix-functions/wctrans.texi: Likewise.
9373         * doc/posix-functions/wmemchr.texi: Likewise.
9374         * doc/posix-functions/wmemcmp.texi: Likewise.
9375         * doc/posix-functions/wmemcpy.texi: Likewise.
9376         * doc/posix-functions/wmemmove.texi: Likewise.
9377         * doc/posix-functions/wmemset.texi: Likewise.
9378         * doc/posix-functions/wprintf.texi: Likewise.
9379         * doc/posix-functions/wscanf.texi: Likewise.
9380
9381 2008-12-21  Bruno Haible  <bruno@clisp.org>
9382
9383         Work around a portability problem.
9384         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
9385         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
9386
9387 2008-12-20  Bruno Haible  <bruno@clisp.org>
9388
9389         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
9390         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
9391         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
9392         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
9393         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
9394
9395         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
9396         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
9397         set.
9398         (GNULIB_defined_mbstate_t): New macro.
9399         (mbsinit): Redefine if REPLACE_MBSINIT is set.
9400         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
9401         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
9402         reuses the system's mbrtowc function but works around the bugs.
9403         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
9404         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
9405         macros.
9406         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
9407         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
9408         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
9409         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
9410         REPLACE_MBSINIT if mbsinit needs to be overridden.
9411         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
9412         REPLACE_MBSINIT, REPLACE_MBRTOWC.
9413         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
9414         REPLACE_MBSINIT, REPLACE_MBRTOWC.
9415         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
9416         m4/locale-zh.m4.
9417         (Depends): Add mbsinit.
9418         * modules/mbsinit (Depends): Add mbrtowc.
9419         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
9420
9421 2008-12-20  Bruno Haible  <bruno@clisp.org>
9422
9423         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
9424         so that there are no conversion errors on AIX.
9425         * tests/test-mbsrtowcs.c (main): LIkewise.
9426
9427 2008-12-20  Bruno Haible  <bruno@clisp.org>
9428
9429         Work around wctob bug on Solaris <= 9.
9430         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
9431         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
9432         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
9433         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
9434         * modules/wctob (Files): Add m4/locale-fr.m4.
9435         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
9436
9437 2008-12-20  Bruno Haible  <bruno@clisp.org>
9438
9439         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
9440         /dev/null.
9441         * tests/test-select-in.sh: Likewise.
9442         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9443
9444 2008-12-20  Bruno Haible  <bruno@clisp.org>
9445
9446         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
9447         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
9448         Cygwin 1.5.x.
9449
9450 2008-12-20  Bruno Haible  <bruno@clisp.org>
9451
9452         Ensure mbstate_t is defined on HP-UX 11.11.
9453         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
9454         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
9455         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
9456         AC_USE_SYSTEM_EXTENSIONS.
9457         * modules/fnmatch (Depends-on): Add extensions.
9458         * modules/mbrlen (Depends-on): Likewise.
9459         * modules/mbrtowc (Depends-on): Likewise.
9460         * modules/mbsinit (Depends-on): Likewise.
9461         * modules/mbsrtowcs (Depends-on): Likewise.
9462         * modules/mbswidth (Depends-on): Likewise.
9463         * modules/quotearg (Depends-on): Likewise.
9464         * modules/strftime (Depends-on): Likewise.
9465
9466 2008-12-20  Bruno Haible  <bruno@clisp.org>
9467
9468         Ensure wctob is declared on IRIX 6.5.
9469         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
9470         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
9471         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
9472         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
9473         of HAVE_WCTOB.
9474         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
9475         HAVE_WCTOB.
9476         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
9477
9478 2008-12-19  Bruno Haible  <bruno@clisp.org>
9479
9480         * modules/mbsrtowcs-tests: New file.
9481         * tests/test-mbsrtowcs1.sh: New file.
9482         * tests/test-mbsrtowcs2.sh: New file.
9483         * tests/test-mbsrtowcs3.sh: New file.
9484         * tests/test-mbsrtowcs4.sh: New file.
9485         * tests/test-mbsrtowcs.c: New file.
9486
9487         New module 'mbsrtowcs'.
9488         * lib/wchar.in.h (mbsrtowcs): New declaration.
9489         * lib/mbsrtowcs.c: New file.
9490         * m4/mbsrtowcs.m4: New file.
9491         * modules/mbsrtowcs: New file.
9492         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
9493         HAVE_MBSRTOWCS.
9494         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
9495         HAVE_MBSRTOWCS.
9496         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
9497
9498 2008-12-19  Bruno Haible  <bruno@clisp.org>
9499
9500         New module 'mbrlen'.
9501         * lib/wchar.in.h (mbrlen): New declaration.
9502         * lib/mbrlen.c: New file.
9503         * m4/mbrlen.m4: New file.
9504         * modules/mbrlen: New file.
9505         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
9506         HAVE_MBRLEN.
9507         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
9508         HAVE_MBRLEN.
9509         * doc/posix-functions/mbrlen.texi: Document the new module.
9510
9511 2008-12-19  Bruno Haible  <bruno@clisp.org>
9512
9513         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
9514         * modules/mbrtowc (Depends-on): Add verify.
9515         Suggested by Paul Eggert.
9516
9517 2008-12-18  Bruno Haible  <bruno@clisp.org>
9518
9519         * modules/mbsinit-tests: New file.
9520         * tests/test-mbsinit.sh: New file.
9521         * tests/test-mbsinit.c: New file.
9522
9523 2008-12-18  Bruno Haible  <bruno@clisp.org>
9524
9525         * modules/mbrtowc-tests: New file.
9526         * tests/test-mbrtowc1.sh: New file.
9527         * tests/test-mbrtowc2.sh: New file.
9528         * tests/test-mbrtowc3.sh: New file.
9529         * tests/test-mbrtowc4.sh: New file.
9530         * tests/test-mbrtowc.c: New file.
9531
9532         New module 'mbrtowc'.
9533         * lib/wchar.in.h (mbstate_t): Override when the system does not have
9534         mbsinit and mbrtowc.
9535         (mbrtowc): New declaration.
9536         * lib/mbrtowc.c: New file.
9537         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
9538         * modules/mbrtowc: New file.
9539         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
9540         HAVE_MBRTOWC.
9541         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
9542         HAVE_MBRTOWC.
9543         * doc/posix-functions/mbrtowc.texi: Document the new module.
9544
9545 2008-12-18  Bruno Haible  <bruno@clisp.org>
9546
9547         New module 'wctob'.
9548         * lib/wchar.in.h (wctob): New declaration.
9549         * lib/wctob.c: New file.
9550         * m4/wctob.m4: New file.
9551         * modules/wctob: New file.
9552         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
9553         HAVE_WCTOB.
9554         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
9555         * doc/posix-functions/wctob.texi: Document the new module.
9556
9557 2008-12-18  Bruno Haible  <bruno@clisp.org>
9558
9559         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
9560         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
9561
9562 2008-12-18  Simon Josefsson  <simon@josefsson.org>
9563
9564         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
9565         G. Christensen" <tgc@jupiterrise.com>.
9566
9567         * lib/flock.c: Need to include errno.h.  Reported by "Tom
9568         G. Christensen" <tgc@jupiterrise.com>.
9569
9570         * lib/flock.c: Need to include string.h.  Reported by "Tom
9571         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
9572         <ebb9@byu.net>.
9573
9574 2008-12-18  Bruno Haible  <bruno@clisp.org>
9575
9576         * m4/locale-ja.m4: New file, from GNU gettext.
9577
9578 2008-12-17  Bruno Haible  <bruno@clisp.org>
9579
9580         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
9581         Suggested by Eric Blake.
9582
9583 2008-12-17  Bruno Haible  <bruno@clisp.org>
9584
9585         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
9586
9587 2008-12-17  Bruno Haible  <bruno@clisp.org>
9588
9589         * lib/mbsinit.c: Include verify.h. Verify an assumption.
9590         * modules/mbsinit (Depends-on): Add verify.
9591         Suggested by Paul Eggert.
9592
9593 2008-12-17  Bruno Haible  <bruno@clisp.org>
9594
9595         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
9596         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
9597         gl_FUNC_MBRTOWC.
9598         * m4/mbiter.m4 (gl_MBITER): LIkewise.
9599         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
9600         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
9601         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
9602         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
9603         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
9604         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
9605         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
9606         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
9607         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
9608         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
9609         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
9610         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
9611         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
9612         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
9613         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
9614         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
9615         * modules/trim (configure.ac): Likewise.
9616
9617 2008-12-17  Bruno Haible  <bruno@clisp.org>
9618
9619         * modules/btowc-tests: New file.
9620         * tests/test-btowc1.sh: New file.
9621         * tests/test-btowc2.sh: New file.
9622         * tests/test-btowc.c: New file.
9623
9624         New module 'btowc'.
9625         * lib/wchar.in.h (btowc): New declaration.
9626         * lib/btowc.c: New file.
9627         * m4/btowc.m4: New file.
9628         * modules/btowc: New file.
9629         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
9630         HAVE_BTOWC.
9631         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
9632         * doc/posix-functions/btowc.texi: Document the new module.
9633
9634 2008-12-17  Bruno Haible  <bruno@clisp.org>
9635
9636         New module 'mbsinit'.
9637         * lib/wchar.in.h (mbsinit): New declaration.
9638         * lib/mbsinit.c: New file.
9639         * m4/mbsinit.m4: New file.
9640         * modules/mbsinit: New file.
9641         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
9642         HAVE_MBSINIT.
9643         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
9644         HAVE_MBSINIT.
9645         * doc/posix-functions/mbsinit.texi: Document the new module.
9646
9647 2008-12-16  Bruno Haible  <bruno@clisp.org>
9648
9649         * lib/unistd.in.h: Add comment.
9650         * tests/test-environ.c: Don't include <stdlib.h>.
9651
9652 2008-12-16  Bruno Haible  <bruno@clisp.org>
9653
9654         * lib/parse-duration.h (parse_duration): Document return value
9655         convention.
9656         * lib/parse-duration.c: Include specification header first. Add
9657         comments.
9658         (_): Remove macro.
9659         (parse_year_month_day, parse_hour_minute_second): Move side effects
9660         outside of strchr call.
9661         (parse_non_iso8601): Move side effects outside of isspace call.
9662         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
9663         call.
9664
9665 2008-12-16  Bruno Haible  <bruno@clisp.org>
9666
9667         * tests/test-parse-duration.sh: Produce no output when the test
9668         succeeds.
9669
9670 2008-12-16  Bruno Haible  <bruno@clisp.org>
9671
9672         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
9673         expressions.
9674
9675 2008-12-15  Bruno Haible  <bruno@clisp.org>
9676
9677         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
9678         * doc/glibc-functions/flistxattr.texi: Likewise.
9679         * doc/glibc-functions/fopencookie.texi: Likewise.
9680         * doc/glibc-functions/fremovexattr.texi: Likewise.
9681         * doc/glibc-functions/fsetxattr.texi: Likewise.
9682         * doc/glibc-functions/getxattr.texi: Likewise.
9683         * doc/glibc-functions/lgetxattr.texi: Likewise.
9684         * doc/glibc-functions/listxattr.texi: Likewise.
9685         * doc/glibc-functions/llistxattr.texi: Likewise.
9686         * doc/glibc-functions/lremovexattr.texi: Likewise.
9687         * doc/glibc-functions/lsetxattr.texi: Likewise.
9688         * doc/glibc-functions/removexattr.texi: Likewise.
9689         * doc/glibc-functions/setxattr.texi: Likewise.
9690         * doc/posix-functions/open_memstream.texi: Likewise.
9691
9692 2008-12-15  Eric Blake  <ebb9@byu.net>
9693
9694         Update doc for cygwin 1.7.
9695         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
9696         functions.
9697         * doc/posix-functions/fchmodat.texi: Likewise.
9698         * doc/posix-functions/fchownat.texi: Likewise.
9699         * doc/posix-functions/fdopendir.texi: Likewise.
9700         * doc/posix-functions/fmemopen.texi: Likewise.
9701         * doc/posix-functions/freeaddrinfo.texi: Likewise.
9702         * doc/posix-functions/fstatat.texi: Likewise.
9703         * doc/posix-functions/futimens.texi: Likewise.
9704         * doc/posix-functions/gai_strerror.texi: Likewise.
9705         * doc/posix-functions/getaddrinfo.texi: Likewise.
9706         * doc/posix-functions/getnameinfo.texi: Likewise.
9707         * doc/posix-functions/if_freenameindex.texi: Likewise.
9708         * doc/posix-functions/if_indextoname.texi: Likewise.
9709         * doc/posix-functions/if_nameindex.texi: Likewise.
9710         * doc/posix-functions/if_nametoindex.texi: Likewise.
9711         * doc/posix-functions/insque.texi: Likewise.
9712         * doc/posix-functions/linkat.texi: Likewise.
9713         * doc/posix-functions/llrint.texi: Likewise.
9714         * doc/posix-functions/llrintf.texi: Likewise.
9715         * doc/posix-functions/llrintl.texi: Likewise.
9716         * doc/posix-functions/lockf.texi: Likewise.
9717         * doc/posix-functions/lrintl.texi: Likewise.
9718         * doc/posix-functions/mkdirat.texi: Likewise.
9719         * doc/posix-functions/mkfifoat.texi: Likewise.
9720         * doc/posix-functions/mknodat.texi: Likewise.
9721         * doc/posix-functions/mq_close.texi: Likewise.
9722         * doc/posix-functions/mq_getattr.texi: Likewise.
9723         * doc/posix-functions/mq_notify.texi: Likewise.
9724         * doc/posix-functions/mq_open.texi: Likewise.
9725         * doc/posix-functions/mq_receive.texi: Likewise.
9726         * doc/posix-functions/mq_send.texi: Likewise.
9727         * doc/posix-functions/mq_setattr.texi: Likewise.
9728         * doc/posix-functions/mq_timedreceive.texi: Likewise.
9729         * doc/posix-functions/mq_timedsend.texi: Likewise.
9730         * doc/posix-functions/mq_unlink.texi: Likewise.
9731         * doc/posix-functions/open_memstream.texi: Likewise.
9732         * doc/posix-functions/openat.texi: Likewise.
9733         * doc/posix-functions/posix_fadvise.texi: Likewise.
9734         * doc/posix-functions/posix_fallocate.texi: Likewise.
9735         * doc/posix-functions/posix_madvise.texi: Likewise.
9736         * doc/posix-functions/posix_memalign.texi: Likewise.
9737         * doc/posix-functions/posix_openpt.texi: Likewise.
9738         * doc/posix-functions/readlinkat.texi: Likewise.
9739         * doc/posix-functions/remque.texi: Likewise.
9740         * doc/posix-functions/renameat.texi: Likewise.
9741         * doc/posix-functions/rintl.texi: Likewise.
9742         * doc/posix-functions/sem_unlink.texi: Likewise.
9743         * doc/posix-functions/shm_open.texi: Likewise.
9744         * doc/posix-functions/shm_unlink.texi: Likewise.
9745         * doc/posix-functions/signgam.texi: Likewise.
9746         * doc/posix-functions/sigset.texi: Likewise.
9747         * doc/posix-functions/stpcpy.texi: Likewise.
9748         * doc/posix-functions/stpncpy.texi: Likewise.
9749         * doc/posix-functions/strerror.texi: Likewise.
9750         * doc/posix-functions/strtod.texi: Likewise.
9751         * doc/posix-functions/symlinkat.texi: Likewise.
9752         * doc/posix-functions/unlinkat.texi: Likewise.
9753         * doc/posix-functions/utimensat.texi: Likewise.
9754         * doc/glibc-functions/bindresvport.texi: Likewise.
9755         * doc/glibc-functions/dn_expand.texi: Likewise.
9756         * doc/glibc-functions/exp10.texi: Likewise.
9757         * doc/glibc-functions/exp10f.texi: Likewise.
9758         * doc/glibc-functions/fgetxattr.texi: Likewise.
9759         * doc/glibc-functions/flistxattr.texi: Likewise.
9760         * doc/glibc-functions/fopencookie.texi: Likewise.
9761         * doc/glibc-functions/freeifaddrs.texi: Likewise.
9762         * doc/glibc-functions/fremovexattr.texi: Likewise.
9763         * doc/glibc-functions/fsetxattr.texi: Likewise.
9764         * doc/glibc-functions/getifaddrs.texi: Likewise.
9765         * doc/glibc-functions/getxattr.texi: Likewise.
9766         * doc/glibc-functions/lgetxattr.texi: Likewise.
9767         * doc/glibc-functions/listxattr.texi: Likewise.
9768         * doc/glibc-functions/llistxattr.texi: Likewise.
9769         * doc/glibc-functions/lremovexattr.texi: Likewise.
9770         * doc/glibc-functions/lsetxattr.texi: Likewise.
9771         * doc/glibc-functions/pow10.texi: Likewise.
9772         * doc/glibc-functions/pow10f.texi: Likewise.
9773         * doc/glibc-functions/rcmd_af.texi: Likewise.
9774         * doc/glibc-functions/removexattr.texi: Likewise.
9775         * doc/glibc-functions/res_init.texi: Likewise.
9776         * doc/glibc-functions/res_mkquery.texi: Likewise.
9777         * doc/glibc-functions/res_query.texi: Likewise.
9778         * doc/glibc-functions/res_querydomain.texi: Likewise.
9779         * doc/glibc-functions/res_send.texi: Likewise.
9780         * doc/glibc-functions/rresvport_af.texi: Likewise.
9781         * doc/glibc-functions/setxattr.texi: Likewise.
9782         * doc/glibc-functions/strcasestr.texi: Likewise.
9783
9784 2008-12-15  Bruno Haible  <bruno@clisp.org>
9785
9786         Fix compilation error on OSF/1 4.0.
9787         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
9788         <sys/time.h>, simply delegate to the system header.
9789         Reported by Daniel Richard G. <oss@teragram.com>.
9790
9791 2008-12-15  Bruno Haible  <bruno@clisp.org>
9792
9793         * doc/posix-functions/openat.texi: Mention the 'openat' module.
9794         * doc/posix-functions/fchmodat.texi: Likewise.
9795         * doc/posix-functions/fchownat.texi: Likewise.
9796         * doc/posix-functions/fdopendir.texi: Likewise.
9797         * doc/posix-functions/fstatat.texi: Likewise.
9798         * doc/posix-functions/mkdirat.texi: Likewise.
9799         * doc/posix-functions/unlinkat.texi: Likewise.
9800
9801 2008-12-14  Bruno Haible  <bruno@clisp.org>
9802
9803         Update doc for POSIX:2008.
9804         * doc/posix-functions/faccessat.texi: New file.
9805         * doc/posix-functions/fchmodat.texi: New file.
9806         * doc/posix-functions/fchownat.texi: New file.
9807         * doc/posix-functions/fdopendir.texi: New file.
9808         * doc/posix-functions/fstatat.texi: New file.
9809         * doc/posix-functions/futimens.texi: New file.
9810         * doc/posix-functions/linkat.texi: New file.
9811         * doc/posix-functions/mkdirat.texi: New file.
9812         * doc/posix-functions/mkfifoat.texi: New file.
9813         * doc/posix-functions/mknodat.texi: New file.
9814         * doc/posix-functions/open_wmemstream.texi: New file.
9815         * doc/posix-functions/openat.texi: New file.
9816         * doc/posix-functions/psiginfo.texi: New file.
9817         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
9818         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
9819         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
9820         * doc/posix-functions/readlinkat.texi: New file.
9821         * doc/posix-functions/renameat.texi: New file.
9822         * doc/posix-functions/strerror_l.texi: New file.
9823         * doc/posix-functions/symlinkat.texi: New file.
9824         * doc/posix-functions/unlinkat.texi: New file.
9825         * doc/posix-functions/utimensat.texi: New file.
9826         * doc/gnulib.texi (Function Substitutes): Add these subsections.
9827
9828 2008-12-14  Bruno Haible  <bruno@clisp.org>
9829
9830         Update doc for POSIX:2008.
9831         * doc/posix-functions/alphasort.texi: Renamed from
9832         doc/glibc-functions/alphasort.texi.
9833         * doc/posix-functions/dirfd.texi: Renamed from
9834         doc/glibc-functions/dirfd.texi.
9835         * doc/posix-functions/dprintf.texi: Renamed from
9836         doc/glibc-functions/dprintf.texi.
9837         * doc/posix-functions/duplocale.texi: Renamed from
9838         doc/glibc-functions/duplocale.texi.
9839         * doc/posix-functions/fexecve.texi: Renamed from
9840         doc/glibc-functions/fexecve.texi.
9841         * doc/posix-functions/fmemopen.texi: Renamed from
9842         doc/glibc-functions/fmemopen.texi.
9843         * doc/posix-functions/freelocale.texi: Renamed from
9844         doc/glibc-functions/freelocale.texi.
9845         * doc/posix-functions/getdate_err.texi: Renamed from
9846         doc/glibc-functions/getdate_err.texi.
9847         * doc/posix-functions/isalnum_l.texi: Renamed from
9848         doc/glibc-functions/isalnum_l.texi.
9849         * doc/posix-functions/isalpha_l.texi: Renamed from
9850         doc/glibc-functions/isalpha_l.texi.
9851         * doc/posix-functions/isblank_l.texi: Renamed from
9852         doc/glibc-functions/isblank_l.texi.
9853         * doc/posix-functions/iscntrl_l.texi: Renamed from
9854         doc/glibc-functions/iscntrl_l.texi.
9855         * doc/posix-functions/isdigit_l.texi: Renamed from
9856         doc/glibc-functions/isdigit_l.texi.
9857         * doc/posix-functions/isgraph_l.texi: Renamed from
9858         doc/glibc-functions/isgraph_l.texi.
9859         * doc/posix-functions/islower_l.texi: Renamed from
9860         doc/glibc-functions/islower_l.texi.
9861         * doc/posix-functions/isprint_l.texi: Renamed from
9862         doc/glibc-functions/isprint_l.texi.
9863         * doc/posix-functions/ispunct_l.texi: Renamed from
9864         doc/glibc-functions/ispunct_l.texi.
9865         * doc/posix-functions/isspace_l.texi: Renamed from
9866         doc/glibc-functions/isspace_l.texi.
9867         * doc/posix-functions/isupper_l.texi: Renamed from
9868         doc/glibc-functions/isupper_l.texi.
9869         * doc/posix-functions/iswalnum_l.texi: Renamed from
9870         doc/glibc-functions/iswalnum_l.texi.
9871         * doc/posix-functions/iswalpha_l.texi: Renamed from
9872         doc/glibc-functions/iswalpha_l.texi.
9873         * doc/posix-functions/iswblank_l.texi: Renamed from
9874         doc/glibc-functions/iswblank_l.texi.
9875         * doc/posix-functions/iswcntrl_l.texi: Renamed from
9876         doc/glibc-functions/iswcntrl_l.texi.
9877         * doc/posix-functions/iswctype_l.texi: Renamed from
9878         doc/glibc-functions/iswctype_l.texi.
9879         * doc/posix-functions/iswdigit_l.texi: Renamed from
9880         doc/glibc-functions/iswdigit_l.texi.
9881         * doc/posix-functions/iswgraph_l.texi: Renamed from
9882         doc/glibc-functions/iswgraph_l.texi.
9883         * doc/posix-functions/iswlower_l.texi: Renamed from
9884         doc/glibc-functions/iswlower_l.texi.
9885         * doc/posix-functions/iswprint_l.texi: Renamed from
9886         doc/glibc-functions/iswprint_l.texi.
9887         * doc/posix-functions/iswpunct_l.texi: Renamed from
9888         doc/glibc-functions/iswpunct_l.texi.
9889         * doc/posix-functions/iswspace_l.texi: Renamed from
9890         doc/glibc-functions/iswspace_l.texi.
9891         * doc/posix-functions/iswupper_l.texi: Renamed from
9892         doc/glibc-functions/iswupper_l.texi.
9893         * doc/posix-functions/iswxdigit_l.texi: Renamed from
9894         doc/glibc-functions/iswxdigit_l.texi.
9895         * doc/posix-functions/isxdigit_l.texi: Renamed from
9896         doc/glibc-functions/isxdigit_l.texi.
9897         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
9898         doc/glibc-functions/mbsnrtowcs.texi.
9899         * doc/posix-functions/mkdtemp.texi: Renamed from
9900         doc/glibc-functions/mkdtemp.texi.
9901         * doc/posix-functions/newlocale.texi: Renamed from
9902         doc/glibc-functions/newlocale.texi.
9903         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
9904         doc/glibc-functions/nl_langinfo_l.texi.
9905         * doc/posix-functions/open_memstream.texi: Renamed from
9906         doc/glibc-functions/open_memstream.texi.
9907         * doc/posix-functions/opterr.texi: Renamed from
9908         doc/glibc-functions/opterr.texi.
9909         * doc/posix-functions/optind.texi: Renamed from
9910         doc/glibc-functions/optind.texi.
9911         * doc/posix-functions/optopt.texi: Renamed from
9912         doc/glibc-functions/optopt.texi.
9913         * doc/posix-functions/psignal.texi: Renamed from
9914         doc/glibc-functions/psignal.texi.
9915         * doc/posix-functions/scandir.texi: Renamed from
9916         doc/glibc-functions/scandir.texi.
9917         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
9918         doc/glibc-functions/sched_get_priority_min.texi.
9919         * doc/posix-functions/signgam.texi: Renamed from
9920         doc/glibc-functions/signgam.texi.
9921         * doc/posix-functions/stpcpy.texi: Renamed from
9922         doc/glibc-functions/stpcpy.texi.
9923         * doc/posix-functions/stpncpy.texi: Renamed from
9924         doc/glibc-functions/stpncpy.texi.
9925         * doc/posix-functions/strcasecmp_l.texi: Renamed from
9926         doc/glibc-functions/strcasecmp_l.texi.
9927         * doc/posix-functions/strcoll_l.texi: Renamed from
9928         doc/glibc-functions/strcoll_l.texi.
9929         * doc/posix-functions/strfmon_l.texi: Renamed from
9930         doc/glibc-functions/strfmon_l.texi.
9931         * doc/posix-functions/strftime_l.texi: Renamed from
9932         doc/glibc-functions/strftime_l.texi.
9933         * doc/posix-functions/strncasecmp_l.texi: Renamed from
9934         doc/glibc-functions/strncasecmp_l.texi.
9935         * doc/posix-functions/strndup.texi: Renamed from
9936         doc/glibc-functions/strndup.texi.
9937         * doc/posix-functions/strnlen.texi: Renamed from
9938         doc/glibc-functions/strnlen.texi.
9939         * doc/posix-functions/strsignal.texi: Renamed from
9940         doc/glibc-functions/strsignal.texi.
9941         * doc/posix-functions/strxfrm_l.texi: Renamed from
9942         doc/glibc-functions/strxfrm_l.texi.
9943         * doc/posix-functions/timer_gettime.texi: Renamed from
9944         doc/glibc-functions/timer_gettime.texi.
9945         * doc/posix-functions/tolower_l.texi: Renamed from
9946         doc/glibc-functions/tolower_l.texi.
9947         * doc/posix-functions/toupper_l.texi: Renamed from
9948         doc/glibc-functions/toupper_l.texi.
9949         * doc/posix-functions/towctrans_l.texi: Renamed from
9950         doc/glibc-functions/towctrans_l.texi.
9951         * doc/posix-functions/towlower_l.texi: Renamed from
9952         doc/glibc-functions/towlower_l.texi.
9953         * doc/posix-functions/towupper_l.texi: Renamed from
9954         doc/glibc-functions/towupper_l.texi.
9955         * doc/posix-functions/uselocale.texi: Renamed from
9956         doc/glibc-functions/uselocale.texi.
9957         * doc/posix-functions/vdprintf.texi: Renamed from
9958         doc/glibc-functions/vdprintf.texi.
9959         * doc/posix-functions/wcpcpy.texi:
9960         Renamed from doc/glibc-functions/wcpcpy.texi.
9961         * doc/posix-functions/wcpncpy.texi: Renamed from
9962         doc/glibc-functions/wcpncpy.texi.
9963         * doc/posix-functions/wcscasecmp.texi: Renamed from
9964         doc/glibc-functions/wcscasecmp.texi.
9965         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
9966         doc/glibc-functions/wcscasecmp_l.texi.
9967         * doc/posix-functions/wcscoll_l.texi: Renamed from
9968         doc/glibc-functions/wcscoll_l.texi.
9969         * doc/posix-functions/wcsdup.texi: Renamed from
9970         doc/glibc-functions/wcsdup.texi.
9971         * doc/posix-functions/wcsncasecmp.texi: Renamed from
9972         doc/glibc-functions/wcsncasecmp.texi.
9973         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
9974         doc/glibc-functions/wcsncasecmp_l.texi.
9975         * doc/posix-functions/wcsnlen.texi: Renamed from
9976         doc/glibc-functions/wcsnlen.texi.
9977         * doc/posix-functions/wcsnrtombs.texi: Renamed from
9978         doc/glibc-functions/wcsnrtombs.texi.
9979         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
9980         doc/glibc-functions/wcsxfrm_l.texi.
9981         * doc/posix-functions/wctrans_l.texi: Renamed from
9982         doc/glibc-functions/wctrans_l.texi.
9983         * doc/posix-functions/wctype_l.texi: Renamed from
9984         doc/glibc-functions/wctype_l.texi.
9985         * doc/gnulib.texi (Function Substitutes): Add these subsections.
9986         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
9987         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
9988         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
9989         these subsections.
9990         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
9991         Remove sections.
9992
9993 2008-12-14  Bruno Haible  <bruno@clisp.org>
9994
9995         Update doc for POSIX:2008.
9996         * doc/posix-functions/*.texi: Update URL of POSIX specification.
9997
9998 2008-12-14  Bruno Haible  <bruno@clisp.org>
9999
10000         Update doc for POSIX:2008.
10001         * doc/pastposix-functions/bcmp.texi: Renamed from
10002         doc/posix-functions/bcmp.texi.
10003         * doc/pastposix-functions/bcopy.texi: Renamed from
10004         doc/posix-functions/bcopy.texi.
10005         * doc/pastposix-functions/bsd_signal.texi: Renamed from
10006         doc/posix-functions/bsd_signal.texi.
10007         * doc/pastposix-functions/bzero.texi: Renamed from
10008         doc/posix-functions/bzero.texi.
10009         * doc/pastposix-functions/ecvt.texi: Renamed from
10010         doc/posix-functions/ecvt.texi.
10011         * doc/pastposix-functions/fcvt.texi: Renamed from
10012         doc/posix-functions/fcvt.texi.
10013         * doc/pastposix-functions/ftime.texi: Renamed from
10014         doc/posix-functions/ftime.texi.
10015         * doc/pastposix-functions/gcvt.texi: Renamed from
10016         doc/posix-functions/gcvt.texi.
10017         * doc/pastposix-functions/getcontext.texi: Renamed from
10018         doc/posix-functions/getcontext.texi.
10019         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
10020         doc/posix-functions/gethostbyaddr.texi.
10021         * doc/pastposix-functions/gethostbyname.texi: Renamed from
10022         doc/posix-functions/gethostbyname.texi.
10023         * doc/pastposix-functions/getwd.texi: Renamed from
10024         doc/posix-functions/getwd.texi.
10025         * doc/pastposix-functions/h_errno.texi: Renamed from
10026         doc/posix-functions/h_errno.texi.
10027         * doc/pastposix-functions/index.texi: Renamed from
10028         doc/posix-functions/index.texi.
10029         * doc/pastposix-functions/makecontext.texi: Renamed from
10030         doc/posix-functions/makecontext.texi.
10031         * doc/pastposix-functions/mktemp.texi: Renamed from
10032         doc/posix-functions/mktemp.texi.
10033         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
10034         doc/posix-functions/pthread_attr_getstackaddr.texi.
10035         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
10036         doc/posix-functions/pthread_attr_setstackaddr.texi.
10037         * doc/pastposix-functions/rindex.texi: Renamed from
10038         doc/posix-functions/rindex.texi.
10039         * doc/pastposix-functions/scalb.texi: Renamed from
10040         doc/posix-functions/scalb.texi.
10041         * doc/pastposix-functions/setcontext.texi: Renamed from
10042         doc/posix-functions/setcontext.texi.
10043         * doc/pastposix-functions/swapcontext.texi: Renamed from
10044         doc/posix-functions/swapcontext.texi.
10045         * doc/pastposix-functions/ualarm.texi: Renamed from
10046         doc/posix-functions/ualarm.texi.
10047         * doc/pastposix-functions/usleep.texi: Renamed from
10048         doc/posix-functions/usleep.texi.
10049         * doc/pastposix-functions/vfork.texi: Renamed from
10050         doc/posix-functions/vfork.texi.
10051         * doc/pastposix-functions/wcswcs.texi: Renamed from
10052         doc/posix-functions/wcswcs.texi.
10053         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
10054         (Function Substitutes): Update.
10055
10056 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10057
10058         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
10059         m4/strerror.m4.
10060
10061 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10062             Bruno Haible  <bruno@clisp.org>
10063
10064         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
10065
10066 2008-12-13  Bruno Haible  <bruno@clisp.org>
10067
10068         * modules/strtoull (Depends-on): Remove unistd.
10069
10070 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10071
10072         * modules/strtoull (Depends-on): Add stdlib.
10073
10074 2008-12-11  Simon Josefsson  <simon@josefsson.org>
10075
10076         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
10077
10078 2008-12-10  Jim Meyering  <meyering@redhat.com>
10079
10080         gl_ASSERT: don't say assertions are disabled when they're not
10081         * m4/assert.m4 (gl_ASSERT): Do not make configure report
10082         "checking whether to enable assertions... no", when they are in
10083         fact enabled.  This is solely a bug in the output of configure.
10084         In spite of saying "no", NDEBUG was not defined in that case.
10085         Also, as noted by Eric Blake, leave assertions enabled upon
10086         --enable-assert=INVALID.
10087
10088 2008-12-10  Bruno Haible  <bruno@clisp.org>
10089
10090         Change MODULES.html to refer to POSIX:2008 where possible.
10091         * MODULES.html.sh (POSIX2008_URL): New variable.
10092         (posix_headers): Remove sys/timeb, ucontext.
10093         (posix2001_headers): New variable.
10094         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
10095         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
10096         index, makecontext, mktemp, pthread_attr_getstackaddr,
10097         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
10098         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
10099         (posix2001_functions): New variable.
10100         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
10101         otherwise.
10102
10103 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10104
10105         add missing include to parse-duration.c
10106         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
10107         * modules/parse-duration (Depends-on): Add xalloc.
10108
10109         fix sed script reading maint.mk
10110         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
10111         (syntax-check-rules): Use it.
10112
10113 2008-12-09  Bruno Haible  <bruno@clisp.org>
10114
10115         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
10116         MacOS X 10.4/PowerPC.
10117         Reported by Simon Josefsson.
10118
10119 2008-12-08  Jim Meyering  <meyering@redhat.com>
10120
10121         work around mingw's lack of some S_IF definitions
10122         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
10123         Reported by Simon Josefsson.
10124
10125 2008-12-08  Bruno Haible  <bruno@clisp.org>
10126
10127         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
10128         applied to variables. Needed on MacOS X 10.4/PowerPC.
10129         Reported by Simon Josefsson.
10130
10131 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
10132         and Eric Blake  <ebb9@byu.net>
10133
10134         assert: honor --enable-assert
10135         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
10136         order to honor --enable-assert, rather than treating it as a
10137         synonym for --disable-assert.
10138
10139 2008-12-08  Jim Meyering  <meyering@redhat.com>
10140
10141         * lib/posixtm.c: Remove now-useless declaration of mktime.
10142
10143         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
10144
10145 2008-12-07  Bruno Haible  <bruno@clisp.org>
10146
10147         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
10148         test_once): Mark functions as static.
10149         * tests/test-tls.c (test_tls): Likewise.
10150
10151 2008-12-07  Bruno Haible  <bruno@clisp.org>
10152
10153         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
10154         iconv_register_autodetect.
10155
10156 2008-12-07  Jim Meyering  <meyering@redhat.com>
10157
10158         posixtm.c: avoid a warning
10159         * lib/posixtm.c (posixtime): Don't initialize tm0.
10160         It's no longer needed to placate gcc4's -Wuninitialized,
10161         and the attempt to placate would elicit a new warning.
10162
10163         unicodeio.c: mark unused parameters
10164         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
10165         (fallback_failure_callback): Likewise.
10166
10167 2008-12-07  Bruno Haible  <bruno@clisp.org>
10168
10169         * gnulib-tool (func_create_testdir): When building the tests
10170         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
10171         Reported by Simon Josefsson.
10172
10173 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10174
10175         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
10176
10177 2008-12-06  Bruno Haible  <bruno@clisp.org>
10178
10179         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
10180         Suggested by Eric Blake.
10181
10182 2008-12-06  Bruno Haible  <bruno@clisp.org>
10183
10184         Fix a c-stack test failure on MacOS X.
10185         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
10186         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
10187         handler for SIGBUS as well.
10188         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
10189         install a signal handler for SIGBUS as well.
10190         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
10191
10192 2008-12-06  Bruno Haible  <bruno@clisp.org>
10193
10194         Advocacy documentation.
10195         * doc/gnulib-intro.texi (Benefits): New section.
10196         * doc/gnulib.texi: Update.
10197
10198 2008-12-06  Bruno Haible  <bruno@clisp.org>
10199
10200         Document the 'manywarnings' module.
10201         * doc/manywarnings.texi: New file.
10202         * doc/gnulib.texi: Include it.
10203
10204 2008-12-05  Eric Blake  <ebb9@byu.net>
10205
10206         tests: silence some gcc warnings
10207         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
10208         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
10209         type mismatches.
10210
10211 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10212             Bruno Haible  <bruno@clisp.org>
10213
10214         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
10215
10216 2008-11-29  Jim Meyering  <meyering@redhat.com>
10217
10218         unicodeio.c: mark unused parameters
10219         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
10220         (fallback_failure_callback): Likewise.
10221
10222         fts: fix a thinko
10223         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
10224         (set_stat_type): Return S_IF*-valued "type" directly.
10225         Prompted by James Youngman's spotting a related bug.
10226         Confirmed by further testing through find.
10227
10228         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
10229         * lib/fts.c (D_TYPE): Define.
10230         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
10231         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
10232         (s_ifmt_shift_bits): New function.
10233         (set_stat_type): New function.
10234         (fts_build): When not calling fts_stat, call set_stat_type
10235         to propagate dirent.d_type info to fts_read caller.
10236         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
10237         fts_statp->st_mode type information may be valid.
10238
10239 2008-11-28  Simon Josefsson  <simon@josefsson.org>
10240
10241         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
10242         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
10243         <sds@gnu.org>.
10244
10245 2008-11-20  Bruno Haible  <bruno@clisp.org>
10246
10247         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
10248         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
10249         INCLUDE_NEXT.
10250         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
10251         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
10252         * modules/math (Makefile.am): Substitute
10253         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
10254         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10255
10256 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
10257             Bruno Haible  <bruno@clisp.org>
10258
10259         * lib/stdint.in.h: Define all type macros so that their expansion is
10260         a single typedef'ed token. Fixes a compilation failure in Boost which
10261         does "using ::int8_t;".
10262
10263 2008-11-18  Simon Josefsson  <simon@josefsson.org>
10264
10265         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
10266         gl_MANYWARN_ALL_GCC.
10267         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
10268         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
10269         * modules/manywarnings: New file.
10270         * MODULES.html.sh: Mention manywarnings module.
10271
10272 2008-11-18  Bruno Haible  <bruno@clisp.org>
10273
10274         * doc/gnulib-tool.texi (Unit tests): New section.
10275
10276 2008-11-18  Simon Josefsson  <simon@josefsson.org>
10277
10278         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
10279         paths like 'lib/po/foo.po'.
10280
10281 2008-11-17  Simon Josefsson  <simon@josefsson.org>
10282
10283         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
10284         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
10285
10286 2008-11-17  Simon Josefsson  <simon@josefsson.org>
10287
10288         * m4/warnings.m4: Use CPPFLAGS to really check whether the
10289         parameter works.
10290
10291 2008-11-17  Simon Josefsson  <simon@josefsson.org>
10292
10293         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
10294
10295 2008-11-17  Bruce Korb  <bkorb@gnu.org>
10296
10297         * modules/parse-duration-tests: New file.
10298         * tests/test-parse-duration.sh: New file.
10299         * tests/test-parse-duration.c: New file.
10300
10301         New module 'parse-duration'.
10302         * lib/parse-duration.h: New file.
10303         * lib/parse-duration.c: New file.
10304         * modules/parse-duration: New file.
10305
10306 2008-11-17  Bruno Haible  <bruno@clisp.org>
10307
10308         * tests/test-select-out.sh: Comment out the first pipe test.
10309         Reported by Simon Josefsson.
10310
10311 2008-11-17  Bruno Haible  <bruno@clisp.org>
10312
10313         * modules/getaddrinfo (Depends-on): Add servent, hostent.
10314         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
10315         gl_HOSTENT.
10316
10317 2008-11-17  Bruno Haible  <bruno@clisp.org>
10318
10319         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
10320         -lnetwork and -lnet. Needed for Haiku and BeOS.
10321
10322 2008-11-16  Bruno Haible  <bruno@clisp.org>
10323
10324         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
10325
10326 2008-11-16  Bruno Haible  <bruno@clisp.org>
10327
10328         Avoid test failure on Haiku.
10329         * tests/test-fsync.c: Include <errno.h>.
10330         (main): Don't require that fsync (0) fails.
10331
10332 2008-11-15  Bruno Haible  <bruno@clisp.org>
10333
10334         New module 'hostent'.
10335         * modules/hostent: New file.
10336         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
10337
10338 2008-11-15  Bruno Haible  <bruno@clisp.org>
10339
10340         New module 'servent'.
10341         * modules/servent: New file.
10342         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
10343
10344 2008-11-15  Bruno Haible  <bruno@clisp.org>
10345
10346         Avoid generating same test program with two different rules.
10347         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
10348         test-frexp to test-frexp-nolibm.
10349         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
10350         test-frexpl to test-frexpl-nolibm.
10351
10352 2008-11-15  Bruno Haible  <bruno@clisp.org>
10353
10354         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
10355         $(FREXPL_LIBM).
10356
10357 2008-11-15  Bruno Haible  <bruno@clisp.org>
10358
10359         * lib/netdb.in.h: Activate the definitions also when the system's
10360         <netdb.h> has 'struct addrinfo'.
10361         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
10362         EAI_OVERFLOW or AI_NUMERICSERV.
10363         * doc/posix-headers/netdb.texi: Document the problem.
10364
10365 2008-11-15  Bruno Haible  <bruno@clisp.org>
10366
10367         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
10368
10369         Make the 'sched' module work on platforms where <sched.h> exists but
10370         is incomplete (such as Haiku).
10371         * lib/sched.in.h; Include the system's <sched.h> if it exists.
10372         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
10373         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
10374         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
10375         HAVE_STRUCT_SCHED_PARAM.
10376         * modules/sched (Depends-on): Add include_next.
10377         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
10378         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
10379         * doc/posix-headers/sched.texi: Document the issue.
10380
10381 2008-11-13  Jim Meyering  <meyering@redhat.com>
10382
10383         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
10384         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
10385         test would fail due to the difference in the Report bugs to ...
10386         line.  The expected address is empty, "<>", while the actual
10387         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
10388
10389 2008-11-12  Bruno Haible  <bruno@clisp.org>
10390
10391         lstat: don't compile lstat.c on systems lacking lstat
10392         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
10393         which don't have lstat; this is handled by lib/sys_stat.in.h already.
10394         Reported by Daniel P. Berrange via Jim Meyering.
10395
10396 2008-11-12  Jim Meyering  <meyering@redhat.com>
10397
10398         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
10399
10400 2008-11-12  Simon Josefsson  <simon@josefsson.org>
10401
10402         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
10403         instead.
10404
10405 2008-11-12  Bruno Haible  <bruno@clisp.org>
10406
10407         * lib/unicodeio.c: Include unistr.h.
10408         (utf8_wctomb): Remove function.
10409         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
10410
10411 2008-11-12  Simon Josefsson  <simon@josefsson.org>
10412
10413         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
10414         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
10415         <bruno@clisp.org>.
10416         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
10417
10418 2008-11-12  Simon Josefsson  <simon@josefsson.org>
10419
10420         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
10421         * doc/gnulib.texi: Add section for warnings.
10422
10423 2008-11-11  Bruno Haible  <bruno@clisp.org>
10424
10425         * lib/sockets.h: Add a comment.
10426
10427 2008-11-11  Karl Berry  <karl@gnu.org>
10428
10429         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
10430
10431 2008-11-11  Eric Blake  <ebb9@byu.net>
10432
10433         fdl.texi: avoid git symlinks
10434         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
10435
10436 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
10437
10438         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
10439
10440 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
10441
10442         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
10443         (gl_WARN_ADD): Substitute $2 if literal.
10444
10445 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
10446
10447         * m4/warning.m4: Remove.
10448
10449 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
10450
10451         * m4/warnings.m4: Almost complete rewrite. :-)
10452
10453 2008-11-10  Simon Josefsson  <simon@josefsson.org>
10454
10455         * modules/warnings: New module.
10456         * m4/warnings.m4: New file.
10457         * MODULES.html.sh: Mention warnings module.
10458         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
10459         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10460
10461 2008-11-10  Eric Blake  <ebb9@byu.net>
10462
10463         fdl.texi: make a symlink to the latest version
10464         * doc/standards.texi: Revert today's earlier change.
10465         * doc/fdl-1.2.texi: Rename from old fdl.texi...
10466         * doc/fdl.texi: ...and replace this with a symlink to the newer
10467         fdl-1.3.texi.
10468
10469 2008-11-10  Bruno Haible  <bruno@clisp.org>
10470
10471         * tests/test-select-fd.c (main): Accept the result file name as fourth
10472         argument.
10473         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
10474         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
10475
10476 2008-11-10  Bruno Haible  <bruno@clisp.org>
10477
10478         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
10479         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
10480         as autoconf-substituted macros.
10481         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
10482         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
10483         gl_NETDB_H_DEFAULTS. Set these variables.
10484         * modules/netdb (Makefile.am): Substitute these variables.
10485
10486 2008-11-10  Eric Blake  <ebb9@byu.net>
10487
10488         standards.texi: include correct file for FDL 1.3
10489         * doc/standards.texi (GNU Free Documentation License): Change
10490         include file to pull in FDL 1.3, not 1.2.
10491
10492         fdl.texi: revert accidental change to license
10493         * doc/fdl.texi: This is FDL 1.2, not 1.3.
10494
10495 2008-11-10  Bruno Haible  <bruno@clisp.org>
10496
10497         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
10498         cross-compiling guesses also when the native compile gives no result.
10499
10500 2008-11-10  Bruno Haible  <bruno@clisp.org>
10501
10502         * lib/spawni.c (__spawni): Force variable into the stack.
10503
10504 2008-11-10  Bruno Haible  <bruno@clisp.org>
10505
10506         Add support for Haiku.
10507         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
10508         glibc and BeOS, but also on Haiku.
10509         * lib/fpurge.c (fpurge): Likewise.
10510         * lib/freadable.c (freadable): Likewise.
10511         * lib/freadahead.c (freadahead): Likewise.
10512         * lib/freading.c (freading): Likewise.
10513         * lib/freadptr.c (freadptr): Likewise.
10514         * lib/freadseek.c (freadptrinc): Likewise.
10515         * lib/fseeko.c (rpl_fseeko): Likewise.
10516         * lib/fseterr.c (fseterr): Likewise.
10517         * lib/fwritable.c (fwritable): Likewise.
10518         * lib/fwriting.c (fwriting): Likewise.
10519         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
10520
10521 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
10522
10523         * lib/config.charset: Treat Haiku like BeOS.
10524
10525 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
10526
10527         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
10528         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
10529
10530 2008-11-08  Bruno Haible  <bruno@clisp.org>
10531
10532         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
10533         AC_CACHE_CHECK.
10534
10535 2008-11-08  Bruno Haible  <bruno@clisp.org>
10536
10537         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
10538
10539 2008-11-08  Bruno Haible  <bruno@clisp.org>
10540
10541         * tests/test-select-fd.c: New file.
10542         * tests/test-select-in.sh: New file.
10543         * tests/test-select-out.sh: New file.
10544         * tests/test-select-stdin.c: New file.
10545         * modules/select-tests (Files): Add the new files.
10546         (Depends-on): Add gettimeofday.
10547         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
10548         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
10549         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
10550
10551 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
10552             Bruno Haible  <bruno@clisp.org>
10553
10554         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
10555
10556 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
10557
10558         * build-aux/pmccabe2html: Added support for C++ source files.
10559
10560 2008-11-05  Ben Pfaff  <blp@gnu.org>
10561
10562         Fix lib/close.c build on Windows.
10563         * modules/close (Files): Add lib/w32sock.h.
10564
10565 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
10566
10567         Accept Bison's NEWS format.
10568         * build-aux/announce-gen (print_news_deltas): Tweak
10569         $re_prefix.
10570
10571 2008-11-04  Bruno Haible  <bruno@clisp.org>
10572
10573         * modules/random_r (Maintainer): Add glibc.
10574
10575 2008-11-04  Simon Josefsson  <simon@josefsson.org>
10576
10577         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
10578         by karl@freefriends.org (Karl Berry).
10579         * doc/alloca.texi: Likewise.
10580         * doc/c-ctype.texi: Likewise.
10581         * doc/c-strcase.texi: Likewise.
10582         * doc/c-strcaseeq.texi: Likewise.
10583         * doc/c-strcasestr.texi: Likewise.
10584         * doc/c-strstr.texi: Likewise.
10585         * doc/c-strtod.texi: Likewise.
10586         * doc/c-strtold.texi: Likewise.
10587         * doc/ctime.texi: Likewise.
10588         * doc/error.texi: Likewise.
10589         * doc/fdl.texi: Likewise.
10590         * doc/gcd.texi: Likewise.
10591         * doc/getdate.texi: Likewise.
10592         * doc/gnulib-intro.texi: Likewise.
10593         * doc/gnulib-tool.texi: Likewise.
10594         * doc/gnulib.texi: Likewise.
10595         * doc/inet_ntoa.texi: Likewise.
10596         * doc/maintain.texi: Likewise.
10597         * doc/make-stds.texi: Likewise.
10598         * doc/quote.texi: Likewise.
10599         * doc/regexprops-generic.texi: Likewise.
10600         * doc/standards.texi: Likewise.
10601         * doc/verify.texi: Likewise.
10602         * doc/visibility.texi: Likewise.
10603         * doc/gnulib.texi (GNU Free Documentation License): Include
10604         fdl-1.3.texi instead of fdl.texi.
10605
10606 2008-11-04  Simon Josefsson  <simon@josefsson.org>
10607
10608         * doc/fdl-1.3.texi: New file, from
10609         <http://www.gnu.org/licenses/fdl-1.3.texi>.
10610         * modules/fdl-1.3: Add.
10611         * MODULES.html.sh: Add fdl-1.3.
10612
10613 2008-11-03  Bruno Haible  <bruno@clisp.org>
10614
10615         Make determination of absolute name of header file work with AIX xlc.
10616         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
10617         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
10618         preprocessing.
10619         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
10620         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
10621
10622 2008-11-03  Simon Josefsson  <simon@josefsson.org>
10623
10624         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
10625         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
10626         <ludo@gnu.org>.
10627
10628 2008-11-02  Bruno Haible  <bruno@clisp.org>
10629
10630         Mark 'strpbrk' obsolete.
10631         * modules/strpbrk (Status, Notice): New sections.
10632         * modules/strtok_r (Depends-on): Add strpbrk.
10633
10634 2008-11-02  Bruno Haible  <bruno@clisp.org>
10635
10636         Mark 'strdup' obsolete.
10637         * modules/strdup (Status, Notice): New sections.
10638         * modules/findprog (Depends-on): Add strdup.
10639         * modules/getaddrinfo (Depends-on): Likewise.
10640         * modules/localename (Depends-on): Likewise.
10641         * modules/relocatable-lib (Depends-on): Likewise.
10642         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
10643         * modules/relocatable-prog (Depends-on): Likewise.
10644         * modules/trim (Depends-on): Likewise.
10645         * modules/unictype/gen-ctype (Depends-on): Likewise.
10646         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
10647
10648 2008-11-02  Bruno Haible  <bruno@clisp.org>
10649
10650         Mark 'strcspn' obsolete.
10651         * modules/strcspn (Status, Notice): New sections.
10652
10653 2008-11-02  Bruno Haible  <bruno@clisp.org>
10654
10655         Mark 'rmdir' obsolete.
10656         * modules/rmdir (Status, Notice): New sections.
10657         * modules/clean-temp (Depends-on): Add rmdir.
10658         * modules/openat (Depends-on): Likewise.
10659
10660 2008-11-02  Bruno Haible  <bruno@clisp.org>
10661
10662         Mark 'raise' obsolete.
10663         * modules/raise (Status, Notice): New sections.
10664         (Include): Specify <signal.h>.
10665         * modules/stdio (Depends-on): Add raise.
10666         * modules/write (Depends-on): Likewise.
10667
10668 2008-11-02  Bruno Haible  <bruno@clisp.org>
10669
10670         Mark 'memset' obsolete.
10671         * modules/memset (Status, Notice): New sections.
10672
10673 2008-11-02  Bruno Haible  <bruno@clisp.org>
10674
10675         Mark 'memmove' obsolete.
10676         * modules/memmove (Status, Notice): New sections.
10677         * modules/argp (Depends-on): Add memmove.
10678         * modules/argz (Depends-on): Likewise.
10679         * modules/canonicalize (Depends-on): Likewise.
10680         * modules/canonicalize-lgpl (Depends-on): Likewise.
10681         * modules/fts (Depends-on): Likewise.
10682         * modules/getcwd (Depends-on): Likewise.
10683         * modules/human (Depends-on): Likewise.
10684         * modules/regex (Depends-on): Likewise.
10685         * modules/striconveh (Depends-on): Likewise.
10686         * modules/trim (Depends-on): Likewise.
10687         * modules/unistr/u8-move (Depends-on): Likewise.
10688         * modules/unistr/u16-move (Depends-on): Likewise.
10689         * modules/unistr/u32-move (Depends-on): Likewise.
10690
10691 2008-11-02  Bruno Haible  <bruno@clisp.org>
10692
10693         Mark 'memcpy' obsolete.
10694         * modules/memcpy (Status, Notice): New sections.
10695
10696 2008-11-02  Bruno Haible  <bruno@clisp.org>
10697
10698         Mark 'memcmp' obsolete.
10699         * modules/memcmp (Status, Notice): New sections.
10700         * modules/argmatch (Depends-on): Add memchr.
10701         * modules/backupfile (Depends-on): Likewise.
10702         * modules/c-strcasestr (Depends-on): Likewise.
10703         * modules/crypto/des (Depends-on): Likewise.
10704         * modules/csharpcomp (Depends-on): Likewise.
10705         * modules/fnmatch (Depends-on): Likewise.
10706         * modules/git-merge-changelog (Depends-on): Likewise.
10707         * modules/isnand (Depends-on): Likewise.
10708         * modules/isnand-nolibm (Depends-on): Likewise.
10709         * modules/isnanf (Depends-on): Likewise.
10710         * modules/isnanf-nolibm (Depends-on): Likewise.
10711         * modules/isnanl (Depends-on): Likewise.
10712         * modules/isnanl-nolibm (Depends-on): Likewise.
10713         * modules/mbchar (Depends-on): Likewise.
10714         * modules/memcoll (Depends-on): Likewise.
10715         * modules/quotearg (Depends-on): Likewise.
10716         * modules/regex (Depends-on): Likewise.
10717         * modules/relocatable-prog (Depends-on): Likewise.
10718         * modules/same (Depends-on): Likewise.
10719         * modules/signbit (Depends-on): Likewise.
10720         * modules/strcasestr-simple (Depends-on): Likewise.
10721         * modules/unictype/gen-ctype (Depends-on): Likewise.
10722         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
10723         * modules/uniname/uniname (Depends-on): Likewise.
10724         * modules/unistr/u8-cmp (Depends-on): Likewise.
10725
10726 2008-11-02  Bruno Haible  <bruno@clisp.org>
10727
10728         Mark 'memchr' obsolete.
10729         * modules/memchr (Status, Notice): New sections.
10730         * modules/argp (Depends-on): Add memchr.
10731         * modules/base64 (Depends-on): Likewise.
10732         * modules/c-strcasestr (Depends-on): Likewise.
10733         * modules/chdir-long (Depends-on): Likewise.
10734         * modules/fnmatch (Depends-on): Likewise.
10735         * modules/getsubopt (Depends-on): Likewise.
10736         * modules/git-merge-changelog (Depends-on): Likewise.
10737         * modules/glob (Depends-on): Likewise.
10738         * modules/strcasestr-simple (Depends-on): Likewise.
10739         * modules/strnlen (Depends-on): Likewise.
10740
10741 2008-11-02  Bruno Haible  <bruno@clisp.org>
10742
10743         Mark 'atexit' obsolete.
10744         * modules/atexit (Status, Notice): New sections.
10745         * modules/chdir-long (Depends-on): Add atexit.
10746         * modules/wait-process (Depends-on): Likewise.
10747
10748 2008-11-02  Bruno Haible  <bruno@clisp.org>
10749
10750         * gnulib-tool: New option --with-obsolete.
10751         (func_usage): Document it.
10752         (func_modules_transitive_closure): Drop obsolete dependencies if
10753         incobsolete is not true.
10754         (func_import): Read and save the incobsolete variable to the cache.
10755
10756 2008-11-02  Bruno Haible  <bruno@clisp.org>
10757
10758         * modules/TEMPLATE-EXTENDED: New field 'Status'.
10759         * gnulib-tool: New option --extract-status.
10760         (func_usage): Document it.
10761         (sed_extract_prog): Recognize it.
10762         (func_get_status): New function.
10763
10764 2008-10-30  Simon Josefsson  <simon@josefsson.org>
10765
10766         * modules/sockets (License): Change from LGPL to LGPLv2+.
10767
10768 2008-10-28  Simon Josefsson  <simon@josefsson.org>
10769
10770         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
10771
10772 2008-10-28  Simon Josefsson  <simon@josefsson.org>
10773
10774         * MODULES.html.sh (Support for systems lacking POSIX:2001):
10775         Mention times and sys_times.
10776         * modules/sys_times, modules/sys_times-tests: New modules.
10777         * modules/times, modules/times-tests: Likewise
10778         * m4/sys_times_h.m4: New file.
10779         * lib/sys_times.in.h: Likewise
10780         * lib/times.c: Likewise.
10781         * tests/test-sys_times.c: Likewise.
10782         * tests/test-times.c: Likewise.
10783         * doc/posix-headers/sys_times.texi: Update.
10784         * doc/posix-functions/times.texi: Update.
10785
10786 2008-10-28  Jim Meyering  <meyering@redhat.com>
10787
10788         * modules/tempname (Depends-on): Add lstat.
10789
10790         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
10791
10792 2008-10-28  Simon Josefsson  <simon@josefsson.org>
10793
10794         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
10795         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
10796         using idiom used elsewhere in gnulib.
10797
10798 2008-10-27  Jim Meyering  <meyering@redhat.com>
10799
10800         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
10801
10802 2008-10-27  Simon Josefsson  <simon@josefsson.org>
10803
10804         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
10805         TESTS_ENVIRONMENT, for shell scripts that needs to call built
10806         programs.
10807         * tests/test-argp-2.sh: Use $EXEEXT when needed.
10808
10809 2008-10-27  Simon Josefsson  <simon@josefsson.org>
10810
10811         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
10812
10813 2008-10-27  Bruno Haible  <bruno@clisp.org>
10814
10815         * tests/test-lstat.c: Include <stdio.h>.
10816
10817 2008-10-27  Simon Josefsson  <simon@josefsson.org>
10818
10819         * modules/lstat-tests: New module.
10820         * tests/test-lstat.c: New file.
10821
10822 2008-10-26  Jim Meyering  <meyering@redhat.com>
10823
10824         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
10825
10826 2008-10-26  Simon Josefsson  <simon@josefsson.org>
10827             Bruno Haible  <bruno@clisp.org>
10828
10829         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
10830         * modules/configmake (Include): Add a note that the include must come
10831         after all system headers.
10832         * lib/javaversion.c: Include configmake.h after all other includes.
10833
10834 2008-10-26  Bruno Haible  <bruno@clisp.org>
10835
10836         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
10837         HAVE_STRUCT_RANDOM_DATA to 1.
10838         (gl_STDLIB_H): Simplify.
10839
10840 2008-10-26  Simon Josefsson  <simon@josefsson.org>
10841
10842         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
10843         substitute HAVE_STRUCT_RANDOM_DATA.
10844         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
10845         random_data.
10846         * modules/stdlib (Makefile.am): Substitute
10847         HAVE_STRUCT_RANDOM_DATA.
10848
10849 2008-10-26  Simon Josefsson  <simon@josefsson.org>
10850
10851         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
10852         * doc/gnulib-intro.texi (Copyright): Likewise.
10853
10854 2008-10-26  Simon Josefsson  <simon@josefsson.org>
10855
10856         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
10857         findings.
10858
10859 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
10860             Bruno Haible  <bruno@clisp.org>
10861
10862         * lib/unistd.in.h: Include <winsock2.h>.
10863         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
10864         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
10865         Provide dummy declarations.
10866         (gethostname): Override.
10867         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
10868         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
10869         gl_PREREQ_SYS_H_WINSOCK2.
10870         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
10871         * doc/posix-functions/gethostname.texi: More details.
10872
10873 2008-10-25  Bruno Haible  <bruno@clisp.org>
10874
10875         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
10876         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
10877         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
10878
10879         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
10880         here ...
10881         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
10882         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
10883         gl_UNISTD_H_DEFAULTS.
10884
10885 2008-10-25  Eric Blake  <ebb9@byu.net>
10886
10887         signbit: avoid spurious compiler failure
10888         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
10889         declarations inside function.
10890
10891 2008-10-24  Simon Josefsson  <simon@josefsson.org>
10892             Bruno Haible  <bruno@clisp.org>
10893
10894         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
10895         * modules/random_r (Depends-on): Add stdint.
10896
10897 2008-10-24  Bruno Haible  <bruno@clisp.org>
10898
10899         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
10900         Eggert.
10901         * modules/strerror (License): Likewise.
10902
10903 2008-10-24  Jim Meyering  <meyering@redhat.com>
10904
10905         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
10906         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
10907
10908 2008-10-24  Eric Blake  <ebb9@byu.net>
10909
10910         getgroups: fix compilation when getgroups is available
10911         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
10912         but with <config.h> override of getgroups disabled.
10913
10914 2008-10-24  Simon Josefsson  <simon@josefsson.org>
10915
10916         * doc/gnulib.texi (Header files): Add note about C++ problems.
10917         Explained by Bruno Haible <bruno@clisp.org>.
10918
10919 2008-10-23  Bruno Haible  <bruno@clisp.org>
10920
10921         Define a dummy SA_NODEFER macro on Interix.
10922         * lib/signal.in.h (SA_NODEFER): Define fallback.
10923         Reported by Aleksey Cheusov <cheusov@tut.by> via
10924         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
10925
10926 2008-10-23  Bruno Haible  <bruno@clisp.org>
10927
10928         * modules/freadahead (License): Change to LGPLv2+.
10929         Suggested by Simon Josefsson.
10930
10931 2008-10-23  Jim Meyering  <meyering@redhat.com>
10932
10933         random_r: new module
10934         * modules/random_r: New file.
10935         * m4/random_r.m4: New file.
10936         * lib/random_r.c: New file, from glibc.
10937         * modules/random_r-tests: New file.
10938         * tests/test-random_r.c: New file.
10939         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
10940          Declare.
10941         (RAND_MAX): Define.
10942         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
10943         * modules/stdlib: Substitute them, too.
10944         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
10945         * doc/glibc-functions/initstate_r.texi: Mention the new module.
10946         * doc/glibc-functions/random_r.texi: Likewise.
10947         * doc/glibc-functions/setstate_r.texi: Likewise.
10948         * doc/glibc-functions/srandom_r.texi: Likewise.
10949         * config/srclist.txt: Mention it.
10950
10951 2008-10-23  David Lutterkort  <lutter@redhat.com>
10952
10953         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
10954         link requirement
10955
10956 2008-10-23  Jim Meyering  <meyering@redhat.com>
10957
10958         selinux-h: mark parameters of stub functions as intentionally unused
10959         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
10960         * lib/se-context.in.h: Likewise.
10961
10962 2008-10-22  Simon Josefsson  <simon@josefsson.org>
10963
10964         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
10965
10966 2008-10-22  Simon Josefsson  <simon@josefsson.org>
10967
10968         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
10969
10970 2008-10-22  Eric Blake  <ebb9@byu.net>
10971
10972         glthread/thread: avoid compiler warning
10973         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
10974         Add unreachable abort to silence compiler.
10975
10976 2008-10-22  Eric Blake  <ebb9@byu.net>
10977
10978         netdb: also supply struct addrinfo for cygwin 1.5.x
10979         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
10980         older cygwin.
10981         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
10982         cygwin.
10983         * doc/posix-headers/netdb.texi (netdb.h): Document this.
10984
10985 2008-10-22  Bruno Haible  <bruno@clisp.org>
10986
10987         * users.txt: Update entry about pspp.
10988
10989 2008-10-21  Bruno Haible  <bruno@clisp.org>
10990
10991         Simplification.
10992         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
10993         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
10994
10995         Simplification.
10996         * lib/ioctl.c (ioctl): Don't undefine.
10997         * lib/socket.c (socket): Don't undefine.
10998
10999         Remove unused module indicator macros.
11000         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
11001         GNULIB_$1 as a C macro.
11002
11003         * doc/posix-functions/close.texi: Undo last change.
11004         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
11005         Windows platforms.
11006
11007 2008-10-21  Bruno Haible  <bruno@clisp.org>
11008
11009         Add gethostname() declaration to <unistd.h>.
11010         * lib/unistd.in.h (gethostname): New declaration.
11011         * lib/gethostname.c: Include <unistd.h>.
11012         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
11013         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
11014         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
11015         and HAVE_GETHOSTNAME.
11016         * modules/gethostname (Depends-on): Add unistd.
11017         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
11018         (Include): Specify <unistd.h>.
11019         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
11020         HAVE_GETHOSTNAME.
11021         * tests/test-gethostname.c: Include <unistd.h> first.
11022
11023 2008-10-21  Bruno Haible  <bruno@clisp.org>
11024
11025         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
11026         * modules/select-tests (Depends-on): Likewise.
11027         Reported by Simon Josefsson.
11028
11029 2008-10-21  Simon Josefsson  <simon@josefsson.org>
11030
11031         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
11032         * lib/accept.c: New file, based on winsock.c.
11033         * lib/bind.c: New file, based on winsock.c.
11034         * lib/connect.c: New file, based on winsock.c.
11035         * lib/getpeername.c: New file, based on winsock.c.
11036         * lib/getsockname.c: New file, based on winsock.c.
11037         * lib/getsockopt.c: New file, based on winsock.c.
11038         * lib/ioctl.c: New file, based on winsock.c.
11039         * lib/listen.c: New file, based on winsock.c.
11040         * lib/recv.c: New file, based on winsock.c.
11041         * lib/recvfrom.c: New file, based on winsock.c.
11042         * lib/send.c: New file, based on winsock.c.
11043         * lib/sendto.c: New file, based on winsock.c.
11044         * lib/setsockopt.c: New file, based on winsock.c.
11045         * lib/shutdown.c: New file, based on winsock.c.
11046         * lib/socket.c: New file, based on winsock.c.
11047         * lib/w32sock.h: New file, based on winsock.c.
11048         * lib/winsock.c: Remove file.
11049         * modules/accept: Likewise.
11050         * modules/bind: Likewise.
11051         * modules/connect: Likewise.
11052         * modules/getpeername: Likewise.
11053         * modules/getsockname: Likewise.
11054         * modules/getsockopt: Likewise.
11055         * modules/ioctl: Likewise.
11056         * modules/listen: Likewise.
11057         * modules/recv: Likewise.
11058         * modules/recvfrom: Likewise.
11059         * modules/send: Likewise.
11060         * modules/sendto: Likewise.
11061         * modules/setsockopt: Likewise.
11062         * modules/shutdown: Likewise.
11063         * modules/socket: Use socket.c instead of winsock.c.
11064         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
11065         * doc/posix-functions/accept.texi: Doc fix.
11066         * doc/posix-functions/bind.texi: Doc fix.
11067         * doc/posix-functions/close.texi: Doc fix.
11068         * doc/posix-functions/connect.texi: Doc fix.
11069         * doc/posix-functions/getpeername.texi: Doc fix.
11070         * doc/posix-functions/getsockname.texi: Doc fix.
11071         * doc/posix-functions/getsockopt.texi: Doc fix.
11072         * doc/posix-functions/ioctl.texi: Doc fix.
11073         * doc/posix-functions/listen.texi: Doc fix.
11074         * doc/posix-functions/recv.texi: Doc fix.
11075         * doc/posix-functions/recvfrom.texi: Doc fix.
11076         * doc/posix-functions/send.texi: Doc fix.
11077         * doc/posix-functions/sendto.texi: Doc fix.
11078         * doc/posix-functions/setsockopt.texi: Doc fix.
11079         * doc/posix-functions/shutdown.texi: Doc fix.
11080         * doc/posix-functions/socket.texi: Doc fix.
11081
11082 2008-10-20  Bruno Haible  <bruno@clisp.org>
11083
11084         Take into account the role of SIGABRT_COMPAT on Windows 2008.
11085         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
11086         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
11087         as an alias for SIGABRT.
11088         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
11089         (sigaction): Map it to SIGABRT.
11090         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
11091
11092 2008-10-20  Bruno Haible  <bruno@clisp.org>
11093
11094         * lib/fts.c: Don't include lstat.h.
11095         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
11096
11097         Move the lstat() declaration to <sys/stat.h>.
11098         * lib/lstat.h: Remove file.
11099         * lib/sys_stat.in.h: Add special invocation convention.
11100         (lstat): New declaration.
11101         * lib/lstat.c (orig_lstat): New function.
11102         (rpl_lstat): Use orig_lstat instead of lstat.
11103         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
11104         AC_C_INLINE. Set REPLACE_LSTAT.
11105         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
11106         and REPLACE_LSTAT.
11107         * modules/lstat (Files): Remove lib/lstat.h.
11108         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
11109         (Include): Specify <sys/stat.h> instead of lstat.h.
11110         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
11111         REPLACE_LSTAT.
11112         * NEWS: Mention the change.
11113
11114 2008-10-20  Bruno Haible  <bruno@clisp.org>
11115
11116         * modules/posix_spawn-tests: New file.
11117         * tests/test-posix_spawn3.c: New file.
11118
11119 2008-10-20  Bruno Haible  <bruno@clisp.org>
11120
11121         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
11122         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
11123         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
11124         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
11125         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
11126
11127 2008-10-20  Bruno Haible  <bruno@clisp.org>
11128
11129         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
11130         of posix_spawn on AIX 5.3.
11131
11132 2008-10-20  Bruno Haible  <bruno@clisp.org>
11133
11134         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
11135
11136 2008-10-20  Bruno Haible  <bruno@clisp.org>
11137
11138         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
11139         of AC_LANG_PROGRAM.
11140
11141 2008-10-20  Simon Josefsson  <simon@josefsson.org>
11142
11143         * lib/netdb.in.h: Don't define GNU specific constants until they
11144         are supported or needed.  Reported by Bruno Haible
11145         <bruno@clisp.org>.
11146
11147 2008-10-20  Simon Josefsson  <simon@josefsson.org>
11148
11149         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
11150
11151 2008-10-20  Simon Josefsson  <simon@josefsson.org>
11152
11153         * lib/getaddrinfo.h: Remove file.
11154         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
11155         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
11156         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
11157         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
11158         * modules/netdb: Substitute GNULIB_GETADDRINFO.
11159         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
11160         * tests/test-getaddrinfo.c: Likewise.
11161         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
11162         * NEWS: Mention change.
11163
11164 2008-10-19  Bruno Haible  <bruno@clisp.org>
11165
11166         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
11167
11168 2008-10-19  Bruno Haible  <bruno@clisp.org>
11169
11170         * lib/wait-process.c: Include simply <sys/wait.h>.
11171         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
11172         WIFSTOPPED): Remove fallback definitions.
11173         * modules/wait-process (Depends-on): Add sys_wait.
11174
11175         New module 'sys_wait'.
11176         * modules/sys_wait: New file.
11177         * lib/sys_wait.in.h: New file, partially copied from
11178         lib/wait-process.c.
11179         * m4/sys_wait_h.m4: New file.
11180         * doc/posix-headers/sys_wait.texi: Mention the new module.
11181
11182 2008-10-19  Bruno Haible  <bruno@clisp.org>
11183
11184         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
11185
11186 2008-10-19  Bruno Haible  <bruno@clisp.org>
11187
11188         Assume that waitpid() fills an 'int' status, not a 'union wait'.
11189         * lib/wait-process.c (WAIT_T): Remove type.
11190         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
11191         (wait_subprocess): Update.
11192
11193 2008-10-19  Bruno Haible  <bruno@clisp.org>
11194
11195         New module 'atoll'.
11196         * modules/atoll: New file.
11197         * lib/stdlib.in.h (atoll): New declaration.
11198         * lib/atoll.c: New file, from glibc with modifications.
11199         * m4/atoll.m4: New file.
11200         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
11201         HAVE_ATOLL.
11202         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
11203         * doc/posix-functions/atoll.texi: Mention the new module.
11204
11205 2008-10-19  Bruno Haible  <bruno@clisp.org>
11206
11207         Add strtoull() declaration to <stdlib.h>.
11208         * lib/stdlib.in.h (strtoull): New declaration.
11209         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
11210         Set HAVE_STRTOULL.
11211         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
11212         HAVE_STRTOULL.
11213         * modules/strtoull (Depends-on): Add stdlib.
11214         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
11215         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
11216         HAVE_STRTOULL.
11217
11218 2008-10-19  Bruno Haible  <bruno@clisp.org>
11219
11220         Add strtoll() declaration to <stdlib.h>.
11221         * lib/stdlib.in.h (strtoll): New declaration.
11222         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
11223         Set HAVE_STRTOLL.
11224         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
11225         HAVE_STRTOLL.
11226         * modules/strtoll (Depends-on): Add stdlib.
11227         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
11228         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
11229
11230 2008-10-19  Bruno Haible  <bruno@clisp.org>
11231
11232         * modules/bcopy (Depends-on): Add strings.
11233         (Include): Specify <strings.h>.
11234
11235 2008-10-19  Bruno Haible  <bruno@clisp.org>
11236
11237         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
11238
11239 2008-10-19  Bruno Haible  <bruno@clisp.org>
11240
11241         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
11242         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
11243         mingw.
11244
11245 2008-10-19  Bruno Haible  <bruno@clisp.org>
11246
11247         * lib/atanl.c: Don't include isnanl.h.
11248         * lib/cosl.c: Likewise.
11249         * lib/ldexpl.c: Likewise.
11250         * lib/logl.c: Likewise.
11251         * lib/sinl.c: Likewise.
11252         * lib/sqrtl.c: Likewise.
11253         * lib/tanl.c: Likewise.
11254
11255         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
11256         * lib/isnanf.h: Remove file.
11257         * lib/isnand.h: Remove file.
11258         * lib/isnanl.h: Remove file.
11259         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
11260         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
11261         macros.
11262         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
11263         HAVE_ISNANF, don't define it as a C macro.
11264         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
11265         HAVE_ISNAND, don't define it as a C macro.
11266         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
11267         HAVE_ISNANL, don't define it as a C macro.
11268         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
11269         HAVE_ISNAN[FDL].
11270         * modules/isnanf (Files): Remove lib/isnanf.h.
11271         (Depends-on): Add math.
11272         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
11273         (Include): Specify <math.h> instead of isnanf.h.
11274         * modules/isnand (Files): Remove lib/isnand.h.
11275         (Depends-on): Add math.
11276         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
11277         (Include): Specify <math.h> instead of isnand.h.
11278         * modules/isnanl (Files): Remove lib/isnanl.h.
11279         (Depends-on): Add math.
11280         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
11281         (Include): Specify <math.h> instead of isnanl.h.
11282         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
11283         HAVE_ISNAN[FDL].
11284         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
11285         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
11286         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
11287         * NEWS: Mention the change.
11288
11289 2008-10-18  Bruno Haible  <bruno@clisp.org>
11290
11291         Add getusershell(), setusershell(), endusershell() declarations to
11292         <unistd.h>.
11293         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
11294         declarations.
11295         * lib/getusershell.c: Include unistd.h.
11296         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
11297         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
11298         HAVE_GETUSERSHELL.
11299         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
11300         and HAVE_GETUSERSHELL.
11301         * modules/getusershell (Depends-on): Add unistd, extensions.
11302         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
11303         (Include): Specify <unistd.h>.
11304         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
11305         HAVE_GETUSERSHELL.
11306
11307 2008-10-18  Bruno Haible  <bruno@clisp.org>
11308
11309         Add a getloadavg() declaration to <stdlib.h>.
11310         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
11311         getloadavg declaration.
11312         (getloadavg): New declaration.
11313         * lib/getloadavg.c: Include <stdlib.h> first.
11314         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
11315         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
11316         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
11317         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
11318         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
11319         * modules/getloadavg (Depends-on): Add stdlib, extensions.
11320         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
11321         (Include): Specify <stdlib.h>.
11322         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
11323         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
11324
11325 2008-10-18  Bruno Haible  <bruno@clisp.org>
11326
11327         * lib/dirchownmod.c: Don't include lchmod.h.
11328
11329         Move the lchmod() declaration to <sys/stat.h>.
11330         * lib/lchmod.h: Remove file.
11331         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
11332         (lchmod): New declaration, moved here from lib/lchown.h.
11333         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
11334         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
11335         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
11336         and HAVE_LCHMOD.
11337         * modules/lchmod (Files): Remove lib/lchmod.h.
11338         (Depends-on): Add sys_stat, extensions.
11339         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
11340         (Include): Specify <sys/stat.h> instead of lchmod.h.
11341         * modules/sys_stat (Depends-on): Add link-warning.
11342         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
11343         definition of GL_LINK_WARNING.
11344         * NEWS: Mention the change.
11345
11346 2008-10-18  Bruno Haible  <bruno@clisp.org>
11347
11348         * lib/fchdir.c: Don't include dirfd.h.
11349         * lib/fts.c: Likewise.
11350         * lib/getcwd.c: Likewise.
11351         * lib/glob.c: Likewise.
11352
11353         Move the dirfd() declaration to <dirent.h>.
11354         * lib/dirfd.h: Remove file.
11355         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
11356         (dirfd): New declaration.
11357         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
11358         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
11359         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
11360         HAVE_DECL_DIRFD.
11361         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
11362         HAVE_DECL_DIRFD.
11363         * modules/dirfd (Files): Remove lib/dirfd.h.
11364         (Depends-on): Add dirent, extensions.
11365         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
11366         (Include): Specify <dirent.h> instead of dirfd.h.
11367         * modules/dirent (Depends-on): Add link-warning.
11368         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
11369         definition of GL_LINK_WARNING.
11370         * NEWS: Mention the change.
11371
11372 2008-10-18  Bruno Haible  <bruno@clisp.org>
11373
11374         Move the euidaccess() declaration to <unistd.h>.
11375         * lib/euidaccess.h: Remove file.
11376         * lib/unistd.in.h (euidaccess): New declaration.
11377         * lib/euidaccess.c: Don't include euidaccess.h.
11378         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
11379         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
11380         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
11381         and HAVE_EUIDACCESS.
11382         * modules/euidaccess (Files): Remove lib/euidaccess.h.
11383         (Depends-on): Add unistd.
11384         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
11385         (Include): Specify <unistd.h> instead of euidaccess.h.
11386         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
11387         HAVE_EUIDACCESS.
11388         * NEWS: Mention the change.
11389
11390 2008-10-18  Bruno Haible  <bruno@clisp.org>
11391
11392         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
11393
11394         Move the getdomainname() declaration to <unistd.h>.
11395         * lib/getdomainname.h: Remove file.
11396         * lib/unistd.in.h (getdomainname): New declaration.
11397         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
11398         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
11399         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
11400         HAVE_GETDOMAINNAME.
11401         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
11402         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
11403         * modules/getdomainname (Files): Remove lib/getdomainname.h.
11404         (Depends-on): Add unistd, extensions.
11405         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
11406         (Includes): Specify <unistd.h> instead of getdomainname.h.
11407         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
11408         HAVE_GETDOMAINNAME.
11409         * NEWS: Mention the change.
11410
11411 2008-10-18  Bruno Haible  <bruno@clisp.org>
11412
11413         * modules/dirent: New file.
11414         * m4/dirent_h.m4: New file.
11415         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
11416         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
11417         * modules/fchdir (Files): Remove lib/dirent.in.h.
11418         (Depends-on): Add dirent.
11419         (Makefile.am): Move rules to modules/dirent.
11420         * doc/posix-headers/dirent.texi: Mention the new module.
11421
11422 2008-10-18  Bruno Haible  <bruno@clisp.org>
11423
11424         Avoid -Wunused-parameter warnings in public gnulib header files.
11425         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
11426         macro.
11427         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
11428
11429 2008-10-18  Bruno Haible  <bruno@clisp.org>
11430
11431         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
11432         * doc/glibc-functions/error.texi: Mention the module 'error'.
11433         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
11434         * doc/glibc-functions/getdomainname.texi: Mention the module
11435         'getdomainname'.
11436         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
11437         * doc/glibc-functions/getpagesize.texi: Mention the module
11438         'getpagesize'.
11439         * doc/glibc-functions/getusershell.texi: Mention the module
11440         'getusershell'.
11441         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
11442         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
11443         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
11444         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
11445         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
11446         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
11447         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
11448         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
11449         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
11450         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
11451         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
11452         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
11453         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
11454         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
11455
11456 2008-10-17  Bruno Haible  <bruno@clisp.org>
11457
11458         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
11459         HP-UX and IRIX, use -0.0L.
11460         * tests/test-ceill.c (minus_zero): Likewise.
11461         * tests/test-floorl.c (minus_zero): Likewise.
11462         * tests/test-frexpl.c (minus_zero): Likewise.
11463         * tests/test-isnan.c (minus_zerol): Likewise.
11464         * tests/test-isnanl.h (minus_zero): Likewise.
11465         * tests/test-ldexpl.c (minus_zero): Likewise.
11466         * tests/test-roundl.c (minus_zero): Likewise.
11467         * tests/test-signbit.c (minus_zerol): Likewise.
11468         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
11469         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
11470         * tests/test-truncl.c (minus_zero): Likewise.
11471         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
11472         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
11473         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
11474         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
11475
11476 2008-10-17  Bruno Haible  <bruno@clisp.org>
11477
11478         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
11479         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
11480         that it gets activated only for gcc >= 3.0.
11481         * lib/dirent.in.h: Likewise.
11482         * lib/errno.in.h: Likewise.
11483         * lib/fcntl.in.h: Likewise.
11484         * lib/float.in.h: Likewise.
11485         * lib/iconv.in.h: Likewise.
11486         * lib/inttypes.in.h: Likewise.
11487         * lib/locale.in.h: Likewise.
11488         * lib/math.in.h: Likewise.
11489         * lib/netdb.in.h: Likewise.
11490         * lib/netinet_in.in.h: Likewise.
11491         * lib/search.in.h: Likewise.
11492         * lib/signal.in.h: Likewise.
11493         * lib/spawn.in.h: Likewise.
11494         * lib/stdarg.in.h: Likewise.
11495         * lib/stdint.in.h: Likewise.
11496         * lib/stdio.in.h: Likewise.
11497         * lib/stdlib.in.h: Likewise.
11498         * lib/string.in.h: Likewise.
11499         * lib/strings.in.h: Likewise.
11500         * lib/sys_file.in.h: Likewise.
11501         * lib/sys_ioctl.in.h: Likewise.
11502         * lib/sys_select.in.h: Likewise.
11503         * lib/sys_socket.in.h: Likewise.
11504         * lib/sys_stat.in.h: Likewise.
11505         * lib/sys_time.in.h: Likewise.
11506         * lib/sysexits.in.h: Likewise.
11507         * lib/time.in.h: Likewise.
11508         * lib/unistd.in.h: Likewise.
11509         * lib/wchar.in.h: Likewise.
11510         * lib/wctype.in.h: Likewise.
11511         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11512
11513 2008-10-17  Jim Meyering  <meyering@redhat.com>
11514
11515         ignore-value: don't depend on inline module
11516         * modules/ignore-value (Depends-on): Remove 'inline'.
11517         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
11518         Suggestion from Bruno Haible.
11519
11520 2008-10-17  Bruno Haible  <bruno@clisp.org>
11521
11522         New implementation of condition variables for Win32.
11523         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
11524         (gl_linked_waitqueue_t): New type.
11525         (gl_cond_t): Use it.
11526         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
11527         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
11528         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
11529         (glthread_cond_init_func, glthread_cond_wait_func,
11530         glthread_cond_timedwait_func, glthread_cond_signal_func,
11531         glthread_cond_broadcast_func, glthread_cond_destroy_func):
11532         Reimplemented on the basis of gl_linked_waitqueue_t.
11533         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
11534         gl_waitqueue_t.
11535         (gl_rwlock_t): Update.
11536         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
11537
11538 2008-10-17  Simon Josefsson  <simon@josefsson.org>
11539
11540         * modules/recvfrom (Depends-on): Add dependency on getpeername.
11541         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
11542
11543 2008-10-17  Jim Meyering  <meyering@redhat.com>
11544
11545         ignore-value: new module
11546         * modules/ignore-value: New file.
11547         * lib/ignore-value.h: New file.
11548         * MODULES.html.sh (Compiler warning management): New section,
11549         just for this module.  More to come.
11550
11551 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
11552
11553         open-safer.c: avoid 'signed and unsigned in conditional...' warning
11554         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
11555         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
11556
11557 2008-10-16  Jim Meyering  <meyering@redhat.com>
11558
11559         openat-die.c: avoid 'no previous prototype' warning
11560         * lib/openat-die.c: Include "openat.h".
11561         Reported by Reuben Thomas <rrt@sc3d.org>.
11562
11563 2008-10-16  Simon Josefsson  <simon@josefsson.org>
11564
11565         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
11566         * lib/netdb.in.h: Fix typo.
11567         Reported by Bruno Haible  <bruno@clisp.org>
11568
11569         * lib/netdb.in.h: Include sys/socket.h for platforms without
11570         netdb.h, to get structures like hostent on MinGW.
11571         * modules/netdb (Depends-on): Add sys_socket.
11572
11573 2008-10-15  Simon Josefsson  <simon@josefsson.org>
11574
11575         * modules/netdb, modules/netdb-tests: New file.
11576         * m4/netdb_h.m4: New file.
11577         * lib/netdb.in.h: Add, currently just an empty file pending
11578         definitions.
11579         * tests/test-netdb.c: New file.
11580         * doc/posix-headers/netdb.texi: Mention that we replace it if
11581         needed.
11582         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
11583         netdb.
11584
11585 2008-10-15  Simon Josefsson  <simon@josefsson.org>
11586
11587         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
11588         with code.
11589
11590 2008-10-13  Bruno Haible  <bruno@clisp.org>
11591
11592         * lib/glthread/cond.c (glthread_cond_wait_func,
11593         glthread_cond_timedwait_func): Add a comment.
11594
11595 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
11596
11597         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
11598         * tests/test-select.c: Likewise,
11599
11600 2008-10-13  Bruno Haible  <bruno@clisp.org>
11601
11602         * lib/glthread/cond.c (glthread_cond_wait_func,
11603         glthread_cond_timedwait_func): Fix variable name.
11604         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
11605
11606 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
11607
11608         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
11609         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
11610         struct sockaddr.sa_len.
11611         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
11612
11613 2008-10-13  Simon Josefsson  <simon@josefsson.org>
11614
11615         * build-aux/pmccabe2html: Add css and css_url parameters.
11616
11617 2008-10-12  Bruno Haible  <bruno@clisp.org>
11618
11619         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
11620         calling aclx_get.
11621         Reported by Rainer Tammer <tammer@tammer.net>.
11622
11623 2008-10-12  Bruno Haible  <bruno@clisp.org>
11624
11625         Use msvcrt aware primitives for creation/termination of Win32 threads.
11626         * lib/glthread/thread.c: Include <process.h>.
11627         (glthread_create_func): Use _beginthreadex instead of CreateThread.
11628         (wrapper_func): Update signature.
11629         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
11630
11631 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
11632             Bruno Haible  <bruno@clisp.org>
11633
11634         Provide a Win32 implementation of the 'cond' module.
11635         * lib/glthread/cond.h [USE_WIN32]: New implementation.
11636         * lib/glthread/cond.c (glthread_cond_init_func,
11637         glthread_cond_wait_func, glthread_cond_timedwait_func,
11638         glthread_cond_signal_func, glthread_cond_broadcast_func,
11639         glthread_cond_destroy_func) [USE_WIN32]: New functions.
11640         * modules/cond (Dependencies): Add gettimeofday.
11641
11642 2008-10-11  Bruno Haible  <bruno@clisp.org>
11643
11644         Make sleep work on older versions of mingw.
11645         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
11646         only whether it exists.
11647         * doc/posix-functions/sleep.texi: Mention the problem with older
11648         versions of mingw.
11649
11650 2008-10-11  Bruno Haible  <bruno@clisp.org>
11651
11652         New module 'shutdown'.
11653         * modules/shutdown: New file.
11654         * lib/sys_socket.in.h (shutdown): New declaration.
11655         * lib/winsock.c (shutdown): New function.
11656         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
11657         GNULIB_SHUTDOWN.
11658         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
11659         * doc/posix-functions/shutdown.texi: Document the new module.
11660
11661 2008-10-11  Jim Meyering  <meyering@redhat.com>
11662
11663         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
11664
11665 2008-10-11  Bruno Haible  <bruno@clisp.org>
11666
11667         New module 'fclose'.
11668         * modules/fclose: New file.
11669         * lib/stdio.in.h (fclose): New declaration.
11670         * lib/fclose.c: New file.
11671         * m4/fclose.m4: New file.
11672         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
11673         REPLACE_FCLOSE.
11674         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
11675         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
11676         REPLACE_FCLOSE.
11677         * modules/close (Depends-on): fclose.
11678         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
11679
11680 2008-10-11  Bruno Haible  <bruno@clisp.org>
11681
11682         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
11683         set errno and don't call _close.
11684
11685 2008-10-10  Bruno Haible  <bruno@clisp.org>
11686
11687         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
11688         ACL, not afterwards. Fixes test failure on Cygwin.
11689
11690 2008-10-09  Ben Pfaff  <blp@gnu.org>
11691
11692         * build-aux/announce-gen: Fix gnulib version related part of usage
11693         message.  Die with a useful error message if no tarballs are
11694         found.
11695
11696 2008-10-10  Jim Meyering  <meyering@redhat.com>
11697
11698         bootstrap: use git's --depth=N option only if it's supported
11699         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
11700         recognize the --depth option.  Reported by Pádraig Brady.
11701
11702 2008-10-09  Bruno Haible  <bruno@clisp.org>
11703
11704         New module 'ioctl'.
11705         * modules/ioctl: New file.
11706         * lib/sys_socket.in.h (ioctl): Remove declaration.
11707         * lib/winsock.c: Include <sys/ioctl.h>.
11708         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
11709         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
11710         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
11711         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
11712         * doc/posix-functions/ioctl.texi: Mention the new module.
11713
11714 2008-10-09  Bruno Haible  <bruno@clisp.org>
11715
11716         New module 'sys_ioctl'.
11717         * lib/sys_ioctl.in.h: New file.
11718         * m4/sys_ioctl_h.m4: New file.
11719         * modules/sys_ioctl: New file.
11720         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
11721
11722 2008-10-09  Bruno Haible  <bruno@clisp.org>
11723
11724         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
11725         * lib/winsock.c: Include <stdarg.h>.
11726         (rpl_ioctl): Change to second argument 'int' and then varargs.
11727
11728 2008-10-09  Bruno Haible  <bruno@clisp.org>
11729
11730         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
11731         when the sys_socket module is present and the system has <winsock2.h>.
11732
11733 2008-10-09  Bruno Haible  <bruno@clisp.org>
11734
11735         * doc/posix-functions/close.texi: Mention module 'close' instead of
11736         module 'sys_socket'.
11737
11738 2008-10-09  Bruno Haible  <bruno@clisp.org>
11739
11740         * doc/glibc-headers/sys_ioctl.texi: New file.
11741         * doc/gnulib.texi: Include it.
11742
11743 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
11744             Bruno Haible  <bruno@clisp.org>
11745
11746         Combine the two replacements of 'close'.
11747         * lib/sys_socket.in.h (close): Define to a reminder to include
11748         <unistd.h>.
11749         (_gl_close_fd_maybe_socket): New declaration.
11750         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
11751         * lib/winsock.c (close): Remove undefinition.
11752         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
11753         needed for the gnulib module 'close'.
11754         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
11755         define to an error symbol or to a warning, if suitable.
11756         * lib/close.c: Include <sys/socket.h>.
11757         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
11758         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
11759         UNISTD_H_HAVE_WINSOCK2_H.
11760         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
11761         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
11762         UNISTD_H_HAVE_WINSOCK2_H.
11763         * modules/sys_socket (Files): Add m4/unistd_h.m4.
11764         (configure.ac): Set a module indicator.
11765         (Makefile.am): Substitute GNULIB_CLOSE.
11766         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
11767         * modules/poll-tests (Depends-on): Add close.
11768         * modules/select-tests (Depends-on): Likewise.
11769
11770 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
11771             Bruno Haible  <bruno@clisp.org>
11772
11773         New module 'close'.
11774         * modules/close: New file.
11775         * lib/unistd.in.h (close): Move declaration out of the
11776         FCHDIR_REPLACEMENT scope.
11777         (_gl_unregister_fd): New declaration.
11778         * lib/close.c: New file.
11779         * lib/fchdir.c (rpl_close): Remove function.
11780         * m4/close.m4: New file.
11781         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
11782         close.
11783         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
11784         REPLACE_CLOSE.
11785         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
11786         REPLACE_CLOSE.
11787         * modules/fchdir (Depends-on): Add close.
11788
11789 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
11790             Bruno Haible  <bruno@clisp.org>
11791
11792         * lib/fcntl.in.h (open): Simplify conditionals.
11793         (_gl_register_fd): New declaration.
11794         * lib/fchdir.c (rpl_open): Remove function.
11795         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
11796         also.
11797         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
11798         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
11799         open.
11800
11801 2008-10-09  Jim Meyering  <meyering@redhat.com>
11802
11803         GNUmakefile: use the more name-space-friendly "_version"
11804         * top/GNUmakefile (_dummy): Update.
11805         (_version): Rename from "version".
11806
11807 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
11808             Bruno Haible  <bruno@clisp.org>
11809
11810         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
11811         rpl_close.
11812         (_gl_register_fd): New function, extracted from rpl_open.
11813         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
11814         (rpl_open, rpl_opendir): Use _gl_register_fd.
11815
11816 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
11817
11818         Fix organization of 'open' replacement.
11819         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
11820         (gl_FUNC_OPEN): Use it.
11821         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
11822
11823 2008-10-08  Bruno Haible  <bruno@clisp.org>
11824
11825         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
11826
11827 2008-10-08  Simon Josefsson  <simon@josefsson.org>
11828
11829         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
11830         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
11831         listen).
11832
11833 2008-10-08  Eric Blake  <ebb9@byu.net>
11834
11835         GNUmakefile: add 'make version' target
11836         * top/GNUmakefile (_curr-ver): Split version update rules...
11837         (version): ...into a target.
11838
11839 2008-10-07  Bruno Haible  <bruno@clisp.org>
11840
11841         Use a more portable replacement expression for -0.0L.
11842         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
11843         instead of -0.0L. Fix m4 quotation.
11844
11845         * tests/test-signbit.c: Include <float.h>.
11846         (minus_zero): New variable.
11847         (test_signbitl): Use minus_zero instead of -zero.
11848         * modules/signbit-tests (Depends-on): Add float.
11849
11850         * tests/test-ceill.c: Include <float.h>.
11851         (zero): Remove variable.
11852         (minus_zero): New variable.
11853         (main): Use minus_zero instead of -zero.
11854         * modules/ceill-tests (Depends-on): Add float.
11855
11856         * tests/test-floorl.c: Include <float.h>.
11857         (zero): Remove variable.
11858         (minus_zero): New variable.
11859         (main): Use minus_zero instead of -zero.
11860         * modules/floorl-tests (Depends-on): Add float.
11861
11862         * tests/test-roundl.c: Include <float.h>.
11863         (zero): Remove variable.
11864         (minus_zero): New variable.
11865         (main): Use minus_zero instead of -zero.
11866         * modules/roundl-tests (Depends-on): Add float.
11867
11868         * tests/test-truncl.c: Include <float.h>.
11869         (zero): Remove variable.
11870         (minus_zero): New variable.
11871         (main): Use minus_zero instead of -zero.
11872         * modules/truncl-tests (Depends-on): Add float.
11873
11874         * tests/test-frexpl.c (zero): Remove variable.
11875         (minus_zero): New variable.
11876         (main): Use minus_zero instead of -zero.
11877         * modules/frexpl-tests (Depends-on): Add float.
11878
11879         * tests/test-isnan.c (zerol): Remove variable.
11880         (minus_zerol): New variable.
11881         (test_long_double): Use minus_zerol instead of -zerol.
11882         * modules/isnan-tests (Depends-on): Add float.
11883
11884         * tests/test-isnanl.h (zero): Remove variable.
11885         (minus_zero): New variable.
11886         (main): Use minus_zero instead of -zero.
11887         * modules/isnanl-nolibm-tests (Depends-on): Add float.
11888         * modules/isnanl-tests (Depends-on): Add float.
11889
11890         * tests/test-ldexpl.c (zero): Remove variable.
11891         (minus_zero): New variable.
11892         (main): Use minus_zero instead of -zero.
11893         * modules/ldexpl-tests (Depends-on): Add float.
11894
11895         * tests/test-snprintf-posix.h (zerol): Remove variable.
11896         (minus_zerol): New variable.
11897         (test_function): Use minus_zerol instead of -zerol.
11898         * modules/snprintf-posix-tests (Depends-on): Add float.
11899         * modules/vsnprintf-posix-tests (Depends-on): Add float.
11900
11901         * tests/test-sprintf-posix.h (zerol): Remove variable.
11902         (minus_zerol): New variable.
11903         (test_function): Use minus_zerol instead of -zerol.
11904         * modules/sprintf-posix-tests (Depends-on): Add float.
11905         * modules/vsprintf-posix-tests (Depends-on): Add float.
11906
11907         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
11908         (minus_zerol): New variable.
11909         (test_function): Use minus_zerol instead of -zerol.
11910         * modules/vasnprintf-posix-tests (Depends-on): Add float.
11911
11912         * tests/test-vasprintf-posix.c (zerol): Remove variable.
11913         (minus_zerol): New variable.
11914         (test_function): Use minus_zerol instead of -zerol.
11915         * modules/vasprintf-posix-tests (Depends-on): Add float.
11916
11917 2008-10-07  Simon Josefsson  <simon@josefsson.org>
11918
11919         * MODULES.html.sh (Support for building documentation): Mention
11920         pmccabe2html.  Sort entries.
11921
11922         Add pmccabe2html module, from gnupdf.
11923         * build-aux/pmccabe.css: New file.
11924         * build-aux/pmccabe2html: New file.
11925         * m4/pmccabe2html.m4: New file.
11926         * modules/pmccabe2html: New file.
11927
11928 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
11929
11930         flock: new module
11931         * MODULES.html.sh: Add to list of modules.
11932         * lib/flock.c: flock implementation for Windows and Unix systems
11933         which have fcntl.
11934         * doc/glibc-functions/flock.texi: Update documentation.
11935         * lib/sys_file.in.h: <sys/file.h> header file.
11936         * m4/flock.m4: M4 macros.
11937         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
11938         * modules/flock: flock module.
11939         * modules/flock-tests: flock tests module.
11940         * modules/sys_file: sys/file.h module.
11941         * tests/test-flock.c: test suite for flock.
11942
11943 2008-10-06  Jim Meyering  <meyering@redhat.com>
11944
11945         bootstrap: check for LT_INIT more portably still ;-)
11946         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
11947         Spotted by Bruno Haible.
11948
11949 2008-10-06  Eric Blake  <ebb9@byu.net>
11950
11951         test-signbit: avoid tripping Irix cc bug on -0.0L
11952         * tests/test-signbit.c (minus_zerol): Delete, and replace with
11953         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
11954         entire testsuite consistent and avoids an Irix 6.2 bug.
11955
11956 2008-10-05  Bruno Haible  <bruno@clisp.org>
11957             Jim Meyering  <jim@meyering.net>
11958
11959         Add an option for ignoring EPIPE during close_stdout.
11960         * lib/closeout.h: Include <stdbool.h>.
11961         (close_stdout_set_ignore_EPIPE): New declaration.
11962         * lib/closeout.c: Include <stdbool.h>.
11963         (ignore_EPIPE): New variable.
11964         (close_stdout_set_ignore_EPIPE): New function.
11965         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
11966         * lib/close-stream.c (close_stream): Mention the possible EPIPE
11967         failure.
11968         * modules/closeout (Depends-on): Add stdbool.
11969
11970 2008-10-05  Bruno Haible  <bruno@clisp.org>
11971
11972         * modules/accept: New file.
11973         * modules/bind: New file.
11974         * modules/connect: New file.
11975         * modules/getpeername: New file.
11976         * modules/getsockname: New file.
11977         * modules/getsockopt: New file.
11978         * modules/listen: New file.
11979         * modules/recv: New file.
11980         * modules/recvfrom: New file.
11981         * modules/send: New file.
11982         * modules/sendto: New file.
11983         * modules/setsockopt: New file.
11984         * modules/socket: New file.
11985         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
11986         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
11987         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
11988         the particular module is requested. Add a link warning when the
11989         particular module is not requested.
11990         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
11991         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
11992         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
11993         the particular module is requested.
11994         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
11995         gl_SYS_SOCKET_H_DEFAULTS): New macros.
11996         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
11997         * modules/sys_socket (Depends-on): Add link-warning.
11998         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
11999         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
12000         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
12001         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
12002         GL_LINK_WARNING.
12003         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
12004         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
12005         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
12006         * doc/posix-functions/getpeername.texi: Mention the new module
12007         'getpeername'.
12008         * doc/posix-functions/getsockname.texi: Mention the new module
12009         'getsockname'.
12010         * doc/posix-functions/getsockopt.texi: Mention the new module
12011         'getsockopt'.
12012         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
12013         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
12014         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
12015         * doc/posix-functions/send.texi: Mention the new module 'send'.
12016         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
12017         * doc/posix-functions/setsockopt.texi: Mention the new module
12018         'setsockopt'.
12019         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
12020         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
12021         listen, connect, accept.
12022         * modules/select-tests (Depends-on): Likewise.
12023
12024 2008-10-05  Bruno Haible  <bruno@clisp.org>
12025
12026         * lib/winsock.c (strerror): Remove unused #undef.
12027         (rpl_close): Remove unused local variable.
12028
12029         * modules/sys_socket (Depends-on); Add errno.
12030
12031 2008-10-05  Bruno Haible  <bruno@clisp.org>
12032
12033         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
12034         (select): Add a link warning when the 'select' module is not used.
12035         * modules/sys_select (Depends-on): Add link-warning.
12036         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
12037         Suggested by Paolo Bonzini.
12038
12039 2008-10-05  Jim Meyering  <meyering@redhat.com>
12040
12041         bootstrap: check for LT_INIT more portably
12042         * build-aux/bootstrap: Avoid using grep -E, since it's not
12043         portable enough.  Suggestion from Bruno Haible.
12044
12045 2008-10-05  Bruno Haible  <bruno@clisp.org>
12046
12047         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
12048         as being fixed by gnulib.
12049
12050 2008-10-05  Bruno Haible  <bruno@clisp.org>
12051
12052         * modules/select-tests: New file, mostly copied from
12053         modules/sys_select-tests.
12054         * tests/test-select.c: New file, mostly copied from
12055         tests/test-sys_select.c.
12056         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
12057         * modules/sys_select-tests (Depends-on): Remove all dependencies.
12058         (Makefile.am): Remove test_sys_select_LDADD.
12059
12060         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
12061         to an undefined symbol, for an error message.
12062         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
12063         (gl_SYS_SELECT_H_DEFAULTS): New macro.
12064         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
12065         winsock-select.c here.
12066         * modules/sys_select (Files): Remove lib/winsock-select.c.
12067         (Depends-on): Remove alloca.
12068         (Makefile.am): Substitute GNULIB_SELECT.
12069         * modules/select: New file.
12070         * doc/posix-functions/select.texi: Update.
12071
12072 2008-10-05  Bruno Haible  <bruno@clisp.org>
12073
12074         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
12075         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
12076         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
12077         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
12078         getdtablesize.
12079         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
12080         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
12081
12082 2008-10-05  Bruno Haible  <bruno@clisp.org>
12083
12084         * modules/getdtablesize-tests: New file.
12085         * tests/test-getdtablesize.c: New file.
12086
12087         New module 'getdtablesize'.
12088         * lib/unistd.in.h (getdtablesize): New declaration.
12089         * lib/getdtablesize.c: New file.
12090         * m4/getdtablesize.m4: New file.
12091         * modules/getdtablesize: New file.
12092         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
12093         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
12094         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
12095         HAVE_GETDTABLESIZE.
12096         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
12097
12098 2008-10-05  Bruno Haible  <bruno@clisp.org>
12099
12100         * modules/sched (Makefile.am): Fix typo.
12101         Reported by Simon Josefsson.
12102
12103 2008-10-05  Jim Meyering  <meyering@redhat.com>
12104
12105         bootstrap: check for LT_INIT, too
12106         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
12107         are deprecated.  Suggestion from Ralf Wildenhues.
12108
12109 2008-10-05  Bruno Haible  <bruno@clisp.org>
12110
12111         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
12112         overriding them by ours.
12113         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
12114
12115 2008-10-05  Jim Meyering  <meyering@redhat.com>
12116
12117         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
12118         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
12119         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
12120
12121 2008-10-04  Bruno Haible  <bruno@clisp.org>
12122
12123         * modules/dup2 (License): Change to LGPLv2+.
12124         * modules/sleep (License): Likewise.
12125         * modules/perror (License): Likewise.
12126         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
12127         Blake.
12128         * modules/signal (License): Likewise.
12129         * modules/sigprocmask (License): Likewise.
12130         * modules/raise (License): Change to LGPLv2+, with approval by Jim
12131         Meyering.
12132
12133 2008-10-04  Bruno Haible  <bruno@clisp.org>
12134
12135         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
12136         Reported by Rainer Tammer <tammer@tammer.net>.
12137
12138 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
12139             Bruno Haible  <bruno@clisp.org>
12140
12141         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
12142         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
12143         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
12144
12145 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
12146
12147         filevercmp: new module
12148         * lib/filevercmp.h: New function filevercmp comparing version strings.
12149         * lib/filevercmp.c: Implementation of filevercmp function.
12150         * modules/filevercmp: Module metadata.
12151         * tests/test-filevercmp.c: Unit test for new module.
12152         * modules/filevercmp-tests: Unit test metadata.
12153         * MODULES.html.sh: Add filevercmp module.
12154
12155 2008-10-03  Bruno Haible  <bruno@clisp.org>
12156
12157         * lib/c-ctype.h: Add comment.
12158         Reported by Jim Meyering.
12159
12160 2008-10-02  Bruno Haible  <bruno@clisp.org>
12161
12162         * modules/posix_spawn-internal (Depends-on): Add 'open'.
12163
12164 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
12165
12166         * build-aux/bootstrap: Allow renaming bootstrap, and change the
12167         name of bootstrap.conf accordingly.
12168
12169 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
12170
12171         * build-aux/bootstrap: Install git-merge-changelog configuration
12172         items into .gitconfig if needed.
12173
12174 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
12175
12176         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
12177         git repository, and initialize/update it accordingly.
12178
12179 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
12180
12181         * modules/fsync-tests: New file.
12182         * tests/test-fsync.c: New file.
12183
12184         New module 'fsync'.
12185         * lib/fsync.c: New file.
12186         * m4/fsync.m4: New file.
12187         * modules/fsync: New file.
12188         * lib/unistd.in.h (fsync): New declaration.
12189         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
12190         GNULIB_FSYNC and HAVE_FSYNC.
12191         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
12192         * MODULES.html.sh (posix_functions): Add fsync.
12193         * doc/posix-functions/fsync.texi: Mention the new module.
12194
12195 2008-10-02  Jim Meyering  <meyering@redhat.com>
12196
12197         fts.c: sync with similar code from coreutils' remove.c
12198         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
12199         Guard also with "#if defined __linux__", since for now at least,
12200         this code is Linux-kernel-specific.
12201
12202 2008-10-02  Jim Meyering  <meyering@redhat.com>
12203
12204         fts: bug fixes
12205         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
12206         Include <sys/vfs.h>, not <sys/statfs.h>.
12207
12208         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
12209         Include <sys/vfs.h>, not <sys/statfs.h>.
12210
12211 2008-10-01  Bruno Haible  <bruno@clisp.org>
12212
12213         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
12214         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
12215         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
12216         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
12217         * doc/posix-functions/posix_spawnp.texi: Likewise.
12218         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
12219         whether posix_spawn actually works.
12220         * m4/pipe.m4 (gl_PIPE): Likewise.
12221         * modules/execute (Files): Add m4/posix_spawn.m4.
12222         * modules/pipe (Files): Add m4/posix_spawn.m4.
12223         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
12224
12225 2008-10-01  Jim Meyering  <meyering@redhat.com>
12226
12227         remove trailing spaces
12228         * NEWS: Likewise.
12229         * lib/poll.c (poll): Likewise.
12230         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
12231         * lib/winsock.c (rpl_close): Likewise.
12232         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
12233         * modules/yield: Likewise.
12234         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
12235         * tests/test-sys_select.c (connect_to_socket): Likewise.
12236
12237         fts.c: adjust a new interface to be more generally useful
12238         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
12239         (fts_build): Adjust caller.
12240
12241 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12242
12243         * modules/cond-tests: New file.
12244         * tests/test-cond.c: New file.
12245
12246 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12247             Bruno Haible  <bruno@clisp.org>
12248
12249         * modules/cond (Dependencies): Add errno, time.
12250         * lib/glthread/cond.h: Include <time.h>.
12251         (gl_cond_define, gl_cond_define_initialized): Use the same definition
12252         across platforms.
12253
12254 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12255             Bruno Haible  <bruno@clisp.org>
12256
12257         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
12258
12259 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12260             Bruno Haible  <bruno@clisp.org>
12261
12262         * modules/tls-tests (Depends-on): Add thread, yield.
12263         (configure.ac): Remove all checks.
12264         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
12265         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
12266         gl_thread_self): Remove definitions. Include glthread/thread.h and
12267         glthread/yield.h instead.
12268         (test_tls): Pass an additional NULL argument to gl_thread_join.
12269
12270 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12271             Bruno Haible  <bruno@clisp.org>
12272
12273         * modules/lock-tests (Depends-on): Add thread, yield.
12274         (configure.ac): Remove all checks.
12275         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
12276         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
12277         gl_thread_self): Remove definitions. Include glthread/thread.h and
12278         glthread/yield.h instead.
12279         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
12280         additional NULL argument to gl_thread_join.
12281
12282 2008-09-30  Bruno Haible  <bruno@clisp.org>
12283
12284         Fix the Win32 implementation of the 'thread' module.
12285         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
12286         pointer type.
12287         (gl_thread_self): Invoke gl_thread_self_func.
12288         (gl_thread_self_func): New declaration.
12289         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
12290         (do_init_self_key, init_self_key): New functions.
12291         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
12292         Remove some fields.
12293         (running_threads, running_lock): Remove variables.
12294         (get_current_thread_handle): New function.
12295         (gl_thread_self_func, wrapper_func, glthread_create_func,
12296         glthread_join_func, gl_thread_exit_func): Largely rewritten and
12297         simplified.
12298
12299 2008-09-30  Bruno Haible  <bruno@clisp.org>
12300
12301         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
12302         files.
12303
12304 2008-09-30  Jim Meyering  <meyering@redhat.com>
12305
12306         fts.m4: correct the test for statfs.f_type
12307         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
12308         when checking for statfs.f_type.
12309
12310 2008-09-15  Simon Josefsson  <simon@josefsson.org>
12311
12312         tests: avoid some compiler warnings
12313         * tests/test-memchr.c (main): Pass NULL indirectly.
12314         * tests/test-getdate.c (main): Remove unused variable 'ret'.
12315
12316 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
12317
12318         getdate.y: disallow countable dayshifts like "4 yesterday ago"
12319         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
12320         exactly specified dayshifts.
12321         (dayshift): New rule.
12322         (rel): Add dayshift.
12323         (relative_time_table) [tomorrow, yesterday, today, now]:
12324         Use tDAY_SHIFT in place of tDAY_UNIT.
12325         * tests/test-getdate.c: Add tests for now-disallowed countable
12326         dayshifts, e.g., "4 yesterday ago".
12327
12328 2008-09-29  Bruno Haible  <bruno@clisp.org>
12329
12330         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
12331         * tests/test-posix_spawn1.in.sh: Renamed from
12332         tests/test-posix_spawn.in.sh.
12333         * tests/test-posix_spawn2.c: New file.
12334         * tests/test-posix_spawn2.in.sh: New file.
12335         * modules/posix_spawnp-tests (Files): Update.
12336         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
12337
12338 2008-09-29  Bruno Haible  <bruno@clisp.org>
12339
12340         Propagate effects of putenv/setenv/unsetenv to child processes.
12341         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
12342         * lib/pipe.c (create_pipe): Likewise.
12343
12344 2008-09-29  Bruno Haible  <bruno@clisp.org>
12345
12346         Enable use of shell scripts as executables in mingw.
12347         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
12348         run the program as a shell script.
12349         * lib/pipe.c (create_pipe): Likewise.
12350         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
12351         resulting array.
12352
12353 2008-09-29  Eric Blake  <ebb9@byu.net>
12354
12355         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
12356
12357 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
12358
12359         * doc/posix-functions/accept.texi: Update mingw problems.
12360         * doc/posix-functions/bind.texi: Update mingw problems.
12361         * doc/posix-functions/close.texi: Update mingw problems.
12362         * doc/posix-functions/connect.texi: Update mingw problems.
12363         * doc/posix-functions/getpeername.texi: Update mingw problems.
12364         * doc/posix-functions/getsockname.texi: Update mingw problems.
12365         * doc/posix-functions/getsockopt.texi: Update mingw problems.
12366         * doc/posix-functions/ioctl.texi: Update mingw problems.
12367         * doc/posix-functions/listen.texi: Update mingw problems.
12368         * doc/posix-functions/recv.texi: Update mingw problems.
12369         * doc/posix-functions/recvfrom.texi: Update mingw problems.
12370         * doc/posix-functions/select.texi: Update mingw problems.
12371         * doc/posix-functions/send.texi: Update mingw problems.
12372         * doc/posix-functions/sendto.texi: Update mingw problems.
12373         * doc/posix-functions/setsockopt.texi: Update mingw problems.
12374         * doc/posix-functions/socket.texi: Update mingw problems.
12375
12376 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
12377             Bruno Haible  <bruno@clisp.org>
12378
12379         * lib/sys_select.in.h: Include sys/time.h.
12380         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
12381         * modules/sys_select: Depend on sys_time.
12382         * tests/test-sys_select.c: Test that sys/select.h defines struct
12383         timeval fully.
12384
12385 2008-09-29  Bruno Haible  <bruno@clisp.org>
12386
12387         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
12388         * lib/sys_select.in.h: Likewise.
12389
12390 2008-09-29  Bruno Haible  <bruno@clisp.org>
12391
12392         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
12393
12394 2008-09-29  Bruno Haible  <bruno@clisp.org>
12395
12396         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
12397         Set LIBSOCKET instead of augmenting LIBS.
12398         * modules/sockets (Link): New section.
12399         * modules/sockets-tests (test_sockets_LDADD): New variable.
12400         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
12401         * modules/poll-tests (test_poll_LDADD): New variable.
12402         * NEWS: Document the change.
12403
12404 2008-09-29  Bruno Haible  <bruno@clisp.org>
12405
12406         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
12407         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
12408         ARPA_INET_H directly.
12409         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
12410
12411 2008-09-28  Bruno Haible  <bruno@clisp.org>
12412
12413         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
12414         from gl_HEADER_SYS_SOCKET.
12415         (gl_HEADER_SYS_SOCKET): Invoke it.
12416         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
12417
12418 2008-09-28  Bruno Haible  <bruno@clisp.org>
12419
12420         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
12421         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
12422         Needed on OSF/1 4.0.
12423
12424 2008-09-28  Bruno Haible  <bruno@clisp.org>
12425
12426         Override open more carefully.
12427         * lib/open.c (orig_open): New function.
12428         (rpl_open): Use orig_open instead of open.
12429         * lib/fcntl.in.h: Add special invocation convention.
12430         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
12431         (gl_FUNC_OPEN): Invoke it.
12432
12433         Override freopen more carefully.
12434         * lib/freopen.c (orig_freopen): New function.
12435         (rpl_freopen): Use orig_freopen instead of freopen.
12436         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
12437         (gl_FUNC_FREOPEN): Invoke it.
12438
12439         Override fopen more carefully.
12440         * lib/fopen.c (orig_fopen): New function.
12441         (rpl_fopen): Use orig_fopen instead of fopen.
12442         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
12443         (gl_FUNC_FOPEN): Invoke it.
12444         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
12445
12446 2008-09-28  Bruno Haible  <bruno@clisp.org>
12447
12448         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
12449         SIGPIPE.
12450
12451 2008-09-28  Bruno Haible  <bruno@clisp.org>
12452
12453         * tests/test-sigaction.c (handler, main): Disable the check whether
12454         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
12455         glibc systems with LinuxThreads.
12456
12457 2008-09-28  Bruno Haible  <bruno@clisp.org>
12458
12459         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
12460
12461         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
12462         with AIX xlc.
12463         * lib/fcntl.in.h (open): Likewise.
12464         Reported by Rainer Tammer <tammer@tammer.net>.
12465
12466 2008-09-28  Bruno Haible  <bruno@clisp.org>
12467
12468         * modules/posix_spawnp-tests: New file.
12469         * tests/test-posix_spawn.c: New file.
12470         * tests/test-posix_spawn.in.sh: New file.
12471
12472         New module 'posix_spawnp'.
12473         * modules/posix_spawnp: New file.
12474         * lib/spawnp.c: New file, from GNU libc with modifications.
12475         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
12476
12477         New module 'posix_spawn'.
12478         * modules/posix_spawn: New file.
12479         * lib/spawn.c: New file, from GNU libc with modifications.
12480         * doc/posix-functions/posix_spawn.texi: Mention the new module.
12481
12482         New module 'posix_spawnattr_destroy'.
12483         * modules/posix_spawnattr_destroy: New file.
12484         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
12485         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
12486         module.
12487
12488         New module 'posix_spawnattr_setsigmask'.
12489         * modules/posix_spawnattr_setsigmask: New file.
12490         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
12491         modifications.
12492         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
12493         new module.
12494
12495         New module 'posix_spawnattr_getsigmask'.
12496         * modules/posix_spawnattr_getsigmask: New file.
12497         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
12498         modifications.
12499         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
12500         new module.
12501
12502         New module 'posix_spawnattr_setsigdefault'.
12503         * modules/posix_spawnattr_setsigdefault: New file.
12504         * lib/spawnattr_setdefault.c: New file, from GNU libc with
12505         modifications.
12506         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
12507         new module.
12508
12509         New module 'posix_spawnattr_getsigdefault'.
12510         * modules/posix_spawnattr_getsigdefault: New file.
12511         * lib/spawnattr_getdefault.c: New file, from GNU libc with
12512         modifications.
12513         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
12514         new module.
12515
12516         New module 'posix_spawnattr_setschedpolicy'.
12517         * modules/posix_spawnattr_setschedpolicy: New file.
12518         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
12519         modifications.
12520         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
12521         new module.
12522
12523         New module 'posix_spawnattr_getschedpolicy'.
12524         * modules/posix_spawnattr_getschedpolicy: New file.
12525         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
12526         modifications.
12527         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
12528         new module.
12529
12530         New module 'posix_spawnattr_setschedparam'.
12531         * modules/posix_spawnattr_setschedparam: New file.
12532         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
12533         modifications.
12534         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
12535         new module.
12536
12537         New module 'posix_spawnattr_getschedparam'.
12538         * modules/posix_spawnattr_getschedparam: New file.
12539         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
12540         modifications.
12541         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
12542         new module.
12543
12544         New module 'posix_spawnattr_setpgroup'.
12545         * modules/posix_spawnattr_setpgroup: New file.
12546         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
12547         modifications.
12548         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
12549         module.
12550
12551         New module 'posix_spawnattr_getpgroup'.
12552         * modules/posix_spawnattr_getpgroup: New file.
12553         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
12554         modifications.
12555         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
12556         module.
12557
12558         New module 'posix_spawnattr_setflags'.
12559         * modules/posix_spawnattr_setflags: New file.
12560         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
12561         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
12562         module.
12563
12564         New module 'posix_spawnattr_getflags'.
12565         * modules/posix_spawnattr_getflags: New file.
12566         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
12567         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
12568         module.
12569
12570         New module 'posix_spawnattr_init'.
12571         * modules/posix_spawnattr_init: New file.
12572         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
12573         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
12574         module.
12575
12576         New module 'posix_spawn_file_actions_destroy'.
12577         * modules/posix_spawn_file_actions_destroy: New file.
12578         * lib/spawn_faction_destroy.c: New file, from GNU libc with
12579         modifications.
12580         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
12581         the new module.
12582
12583         New module 'posix_spawn_file_actions_addopen'.
12584         * modules/posix_spawn_file_actions_addopen: New file.
12585         * lib/spawn_faction_addopen.c: New file, from GNU libc with
12586         modifications.
12587         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
12588         the new module.
12589
12590         New module 'posix_spawn_file_actions_adddup2'.
12591         * modules/posix_spawn_file_actions_adddup2: New file.
12592         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
12593         modifications.
12594         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
12595         the new module.
12596
12597         New module 'posix_spawn_file_actions_addclose'.
12598         * modules/posix_spawn_file_actions_addclose: New file.
12599         * lib/spawn_faction_addclose.c: New file, from GNU libc with
12600         modifications.
12601         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
12602         the new module.
12603
12604         New module 'posix_spawn_file_actions_init'.
12605         * modules/posix_spawn_file_actions_init: New file.
12606         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
12607         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
12608         new module.
12609
12610         New module 'posix_spawn-internal'.
12611         * modules/posix_spawn-internal: New file.
12612         * lib/spawn_int.h: New file, from GNU libc with modifications.
12613         * lib/spawni.c: New file, from GNU libc with modifications.
12614         * m4/posix_spawn.m4: New file.
12615
12616         New module 'spawn'.
12617         * modules/spawn: New file.
12618         * lib/spawn.in.h: New file, from GNU libc with modifications.
12619         * m4/spawn_h.m4: New file.
12620         * doc/posix-headers/spawn.texi: Mention the new module.
12621
12622 2008-09-28  Bruno Haible  <bruno@clisp.org>
12623
12624         * modules/sched-tests: New file.
12625         * tests/test-sched.c: New file.
12626
12627         New module 'sched'.
12628         * modules/sched: New file.
12629         * lib/sched.in.h: New file.
12630         * m4/sched_h.m4: New file.
12631         * doc/posix-headers/sched.texi: Mention the new module.
12632
12633 2008-09-27  Eric Blake  <ebb9@byu.net>
12634
12635         Fix previous patch, and tweak references to $0.
12636         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
12637         (func_version, func_gnulib_dir): Don't call this program
12638         gnulib-tool.
12639         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
12640         with using $0 in function.
12641         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
12642         (func_fatal_error): Reuse the name the user invoked us with.
12643
12644 2008-09-27  Bruno Haible  <bruno@clisp.org>
12645
12646         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
12647         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
12648         (gl_ICONV_H): Not here.
12649         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
12650         instead of assigning ICONV_H directly.
12651
12652         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
12653         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
12654         WCHAR_H directly.
12655
12656 2008-09-27  Bruno Haible  <bruno@clisp.org>
12657
12658         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
12659         * modules/arpa_inet (Depends-on): Add link-warning.
12660         (Makefile.am): Insert the definition of GL_LINK-WARNING.
12661         * modules/unistd (Makefile.am): Likewise.
12662
12663 2008-09-26  Bruno Haible  <bruno@clisp.org>
12664
12665         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
12666         variables.
12667         (func_version): Essentially copied from gnulib-tool.
12668         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
12669         func_readlink): Copied from gnulib-tool.
12670
12671 2008-09-26  Bruno Haible  <bruno@clisp.org>
12672
12673         * gnulib-tool (func_version): Change directory to $gnulib_dir before
12674         invoking git-version-gen.
12675
12676 2008-09-26  Bruno Haible  <bruno@clisp.org>
12677
12678         * posix-modules: Update to directory names changed on 2008-01-19.
12679         Remove commas in output before splitting into words. No more need to
12680         avoid 'ftruncate' since 2007-02-19.
12681
12682 2008-09-26  Bruno Haible  <bruno@clisp.org>
12683
12684         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
12685
12686 2008-09-26  Bruno Haible  <bruno@clisp.org>
12687
12688         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
12689         * modules/fwriteerror (Depends-on): Add errno.
12690
12691 2008-09-26  Bruno Haible  <bruno@clisp.org>
12692
12693         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
12694         * tests/test-vc-list-files-cvs.sh: Likewise.
12695
12696 2008-09-26  Bruno Haible  <bruno@clisp.org>
12697
12698         * doc/posix-headers/sys_resource.texi: Reorder items.
12699
12700 2008-09-26  Jim Meyering  <meyering@redhat.com>
12701
12702         fts: tweak inode comparison function
12703         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
12704         inode numbers, as documented.
12705
12706         fts: sort dirent entries on inode number before traversing
12707         This avoids a quadratic, seek-related performance penalty when
12708         operating on a directory containing many entries (measurable at 10k;
12709         3.5 hours at 2 million entries with a cold cache) on certain types
12710         of file systems, including ext3 and ext4, but not tmpfs.
12711         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
12712         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
12713         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
12714         (fs_handles_readdir_ordered_dirents_efficiently): New function.
12715         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
12716         (fts_build): Set the stat.st_ino member from D_INO.
12717         If it is likely to be useful, sort dirent entries on inode number.
12718
12719         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
12720         and the struct statfs.f_type member.
12721         * modules/fts (Depends-on): Add d-ino.
12722
12723 2008-09-26  Bruno Haible  <bruno@clisp.org>
12724
12725         * modules/sigpipe-die (Depends-on): Add sigpipe.
12726
12727         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
12728         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
12729         and GNULIB_STDIO_H_SIGPIPE are set.
12730         * lib/stdio-write.c: New file.
12731         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
12732         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
12733         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
12734         REPLACE_STDIO_WRITE_FUNCS.
12735         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
12736         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
12737         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
12738         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
12739         * modules/stdio (Files): Add lib/stdio-write.c.
12740         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
12741         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
12742         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
12743         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
12744         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
12745         REPLACE_FPRINTF_POSIX.
12746         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
12747         REPLACE_PRINTF_POSIX.
12748         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
12749         REPLACE_VFPRINTF_POSIX.
12750         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
12751         REPLACE_VPRINTF_POSIX.
12752         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
12753         SIGPIPE issue.
12754         * doc/posix-functions/fputc.texi: Likewise.
12755         * doc/posix-functions/fputs.texi: Likewise.
12756         * doc/posix-functions/fwrite.texi: Likewise.
12757         * doc/posix-functions/printf.texi: Likewise.
12758         * doc/posix-functions/putc.texi: Likewise.
12759         * doc/posix-functions/putchar.texi: Likewise.
12760         * doc/posix-functions/puts.texi: Likewise.
12761         * doc/posix-functions/vfprintf.texi: Likewise.
12762         * doc/posix-functions/vprintf.texi: Likewise.
12763
12764         * modules/safe-write (Depends-on): Add write.
12765
12766         * modules/sigpipe-tests: New file.
12767         * tests/test-sigpipe.c: New file.
12768         * tests/test-sigpipe.sh: New file.
12769
12770         * modules/write: New file.
12771         * lib/unistd.in.h: Include <sys/types.h>.
12772         (write): New declaration.
12773         * lib/write.c: New file.
12774         * m4/write.m4: New file.
12775         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
12776         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
12777         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
12778         GNULIB_WRITE, REPLACE_WRITE.
12779         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
12780         and the SIGPIPE issue.
12781
12782         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
12783         (raise): New declaration.
12784         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
12785         (ext_signal): New function.
12786         (rpl_raise): New function.
12787         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
12788         GNULIB_SIGNAL_H_SIGPIPE.
12789         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
12790         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
12791
12792         * modules/sigpipe: New file.
12793         * m4/sigpipe.m4: New file.
12794
12795 2008-09-25  Derek Price  <derek@ximbiot.com>
12796             Bruno Haible  <bruno@clisp.org>
12797
12798         * gnulib-tool (func_import): Report all license incompatibilities, not
12799         just the first one.
12800
12801 2008-09-25  Bruno Haible  <bruno@clisp.org>
12802
12803         * gnulib-tool (func_import): When computing the edits, consider not
12804         only the Makefile.ams that exist but also those that will be generated.
12805
12806 2008-09-25  Simon Josefsson  <simon@josefsson.org>
12807
12808         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
12809         fixes gnulib-tool --test warning about duplicate dependency.
12810
12811 2008-09-25  Bruno Haible  <bruno@clisp.org>
12812
12813         * gnulib-tool: Don't ask the user to perform edits in the generated
12814         Makefile.ams.
12815         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
12816         apply to the Makefile.am being generated.
12817         (func_emit_tests_Makefile_am): Execute edits that apply to the
12818         Makefile.am being generated.
12819         (func_import): Setup list of Makefile.am edits before emitting the
12820         Makefile.ams, not at the end.
12821         (func_create_testdir): Update.
12822         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12823
12824 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12825
12826         * gnulib-tool (func_import): Store the --tests-base option in the
12827         comment in gnulib-cache.m4.
12828
12829 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
12830
12831         * NEWS: Document increased portability that sys_select now provides.
12832
12833         * lib/sys_select.in.h: Install select wrapper.
12834         * lib/sys_socket.in.h: Use more descriptive name when there is no
12835         select wrapper.
12836         * lib/winsock-select.c: New.
12837         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
12838         Require gl_HEADER_SYS_SOCKET.
12839         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
12840         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
12841         * tests/test-sys_select.c: Add functional tests.
12842
12843 2008-09-24  Eric Blake  <ebb9@byu.net>
12844
12845         open, fopen: close fd leak in last patch
12846         * lib/open.c (rpl_open): Close fd before returning error.
12847         * lib/fopen.c (rpl_fopen): Close fd before returning error.
12848         * doc/posix-functions/open.texi (open): Document that Irix also
12849         has the bug.
12850         * doc/posix-functions/fopen.texi (fopen): Likewise.
12851         Reported by Paolo Bonzini.
12852
12853 2008-09-24  Bruno Haible  <bruno@clisp.org>
12854
12855         Ensure that a filename ending in a slash cannot be used to access a
12856         non-directory.
12857         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
12858         to check whether it's really a directory.
12859         * lib/fopen.c: Include fcntl.h, unistd.h.
12860         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
12861         and fdopen().
12862         * modules/fopen (Depends-on): Add unistd.
12863         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
12864         * tests/test-fopen.c (main): Likewise.
12865         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
12866         * doc/posix-functions/fopen.texi: Likewise.
12867         Reported by Eric Blake.
12868
12869 2008-09-23  Eric Blake  <ebb9@byu.net>
12870
12871         c-stack: avoid compiler optimizations when provoking overflow
12872         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
12873         recursion harder to optimize, to ensure a stack overflow occurs.
12874         * tests/test-c-stack.c (recurse): Likewise.
12875         Borrowed from libsigsegv.
12876
12877         c-stack: work around Irix sigaltstack bug
12878         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
12879         whether sigaltstack uses wrong end of stack_t (copied in part from
12880         libsigsegv).
12881         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
12882         Irix bug, without requiring an over-allocation.
12883         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
12884         bug.
12885
12886         fopen: document mingw bug on directories
12887         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
12888         not allowing a stream visiting a directory, even though reading
12889         from such a stream is not portable.
12890
12891 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
12892
12893         * lib/poll.c: Rewrite.
12894         * modules/poll: Depend on alloca.
12895
12896 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
12897
12898         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
12899         instead define prototypes for a full set of wrappers.  Ensure
12900         that Cygwin does not use the compatibility code, which is only
12901         for MinGW.
12902         * lib/winsock.c: New.
12903         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
12904         * modules/sys_socket: Add lib/winsock.c.
12905
12906         * modules/poll-tests: Add errno and perror.
12907         * tests/test-poll.c: Use ioctl, not ioctlsocket.
12908
12909 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
12910
12911         * tests/test-poll.c: Downgrade minimum needed Winsock version.
12912
12913 2008-09-23  Bruno Haible  <bruno@clisp.org>
12914
12915         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
12916         * doc/glibc-functions/*: Likewise.
12917
12918 2008-09-23  Simon Josefsson  <simon@josefsson.org>
12919
12920         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
12921         success.
12922
12923 2008-09-22  Eric Blake  <ebb9@byu.net>
12924             Bruno Haible  <bruno@clisp.org>
12925
12926         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
12927         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
12928         supply %A but mishandle pseudo-NaN.
12929         Reported by Simon Josefsson.
12930
12931 2008-09-21  Bruno Haible  <bruno@clisp.org>
12932
12933         * tests/test-lock.c (main): Tweak skip message.
12934         * tests/test-tls.c (main): Likewise.
12935
12936 2008-09-21  Bruno Haible  <bruno@clisp.org>
12937
12938         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
12939         whether 'struct sigaction' has sa_sigaction here...
12940         (gl_PREREQ_SIG_HANDLER_H): ... not here.
12941         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
12942
12943 2008-09-21  Bruno Haible  <bruno@clisp.org>
12944
12945         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
12946         section.
12947         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
12948         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
12949         the new section.
12950         (Support for obsolete systems lacking POSIX:2001): New section.
12951         (String handling <string.h>): Move strdup to the new section.
12952         Suggested by Simon Josefsson and Paolo Bonzini.
12953
12954 2008-09-21  Bruno Haible  <bruno@clisp.org>
12955
12956         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
12957         exponents in %e and %g results on 'long double'. Needed for mingw's
12958         improved *printf functions.
12959         * tests/test-vasprintf-posix.c (test_function): Likewise.
12960         * tests/test-snprintf-posix.h (test_function): Likewise.
12961         * tests/test-sprintf-posix.h (test_function): Likewise.
12962         Reported by Eric Blake.
12963
12964 2008-09-21  Bruno Haible  <bruno@clisp.org>
12965
12966         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
12967         * tests/test-sprintf-posix.h (test_function): Likewise.
12968
12969 2008-09-21  Bruno Haible  <bruno@clisp.org>
12970
12971         * modules/getpass (Depends-on): Add strdup-posix.
12972
12973         New module 'strdup-posix'.
12974         * modules/strdup-posix: New file.
12975         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
12976         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
12977         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
12978         REPLACE_STRDUP.
12979         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
12980         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
12981         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12982         strdup-posix.
12983
12984         * modules/strdup (Depends-on): Remove malloc-posix.
12985
12986 2008-09-20  Bruno Haible  <bruno@clisp.org>
12987
12988         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
12989         Wildenhues.
12990
12991 2008-09-20  Bruno Haible  <bruno@clisp.org>
12992
12993         Ensure that wint_t gets defined on IRIX 5.3.
12994         * lib/wchar.in.h (wint_t): Define if not defined by the system.
12995         * lib/wctype.in.h (wint_t): Likewise.
12996         (__wctype_wint_t): Remove type.
12997         (isw*): Use wint_t instead of __wctype_wint_t.
12998         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
12999         * modules/wchar (Files): Add m4/wint_t.m4.
13000         (Makefile.am): Substitute HAVE_WINT_T.
13001         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
13002         * tests/test-wctype.c: Check that wint_t is defined.
13003         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
13004         * doc/posix-headers/wctype.texi: Likewise.
13005         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
13006
13007 2008-09-18  Bruno Haible  <bruno@clisp.org>
13008
13009         * gnulib-tool (func_exit): Update comment.
13010
13011 2008-09-18  Simon Josefsson  <simon@josefsson.org>
13012
13013         * modules/getaddrinfo (Depends-on): Remove strdup, this module
13014         assumes strdup exists and does not depend on strdup to return
13015         ENOMEM on out of memory conditions.
13016
13017 2008-09-18  Bruno Haible  <bruno@clisp.org>
13018
13019         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
13020         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
13021         digits for the exponent.
13022
13023 2008-09-18  Jim Meyering  <meyering@redhat.com>
13024             Bruno Haible  <bruno@clisp.org>
13025
13026         * lib/vasnprintf.c (decimal_point_char): Define also if
13027         NEED_PRINTF_INFINITE_LONG_DOUBLE.
13028
13029 2008-09-16  Bruno Haible  <bruno@clisp.org>
13030         and Eric Blake  <ebb9@byu.net>
13031
13032         vasnprintf: support Irix 5.3
13033         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
13034         that mishandle long double infinity.
13035         Reported by Tom G. Christensen.
13036
13037 2008-09-16  Bruno Haible  <bruno@clisp.org>
13038
13039         * doc/glibc-functions/scandir.texi: Mention the function is missing on
13040         Solaris 9.
13041         * doc/glibc-functions/alphasort.texi: Likewise.
13042         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
13043
13044 2008-09-16  Jim Meyering  <meyering@redhat.com>
13045
13046         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
13047         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
13048         a umask modification leak out of a subshell.  Otherwise, the
13049         opensolaris /bin/sh would be accepted and thus cause unwarranted
13050         failures in the coreutils test suite.
13051
13052 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
13053
13054         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
13055         to succeed.
13056
13057 2008-09-16  Jim Meyering  <meyering@redhat.com>
13058
13059         avoid spurious test failure when library is built without ACL support
13060         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
13061         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
13062         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
13063         * tests/test-copy-acl.sh: Likewise.
13064
13065 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13066
13067         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
13068         based on character occurrence counts.
13069
13070 2008-09-15  Eric Blake  <ebb9@byu.net>
13071
13072         tests: avoid some compiler warnings
13073         * tests/test-memchr.c (main): Pass NULL indirectly.
13074         * tests/test-closein.c (main): Avoid unused variable.
13075
13076 2008-09-15  Bruno Haible  <bruno@clisp.org>
13077
13078         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
13079         are missing on OpenBSD 4.0 individually.
13080         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
13081
13082 2008-09-15  Bruno Haible  <bruno@clisp.org>
13083
13084         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
13085         * doc/posix-functions/strerror.texi: Mention also Cygwin.
13086         * doc/posix-functions/perror.texi: Likewise.
13087         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
13088         is missing.
13089         Reported by Eric Blake.
13090
13091         * lib/errno.in.h: Use replacement values >= 2000.
13092         Reported by Eric Blake.
13093
13094 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13095
13096         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
13097         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
13098         limit.
13099         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
13100         compareseq was aborted.
13101
13102 2008-09-14  Bruno Haible  <bruno@clisp.org>
13103
13104         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
13105         yvec_edit_count.
13106         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
13107         (fstrcmp_bounded): Simplify result computation accordingly.
13108
13109 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13110
13111         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
13112         (fstrcmp): Define in terms of fstrcmp_bounded.
13113         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
13114         lower_bound argument.
13115         Return quickly if the result is certainly < lower_bound.
13116         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
13117
13118 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13119
13120         * lib/diffseq.h (EARLY_ABORT): New macro.
13121         (compareseq): Change return type to bool. Return true when EARLY_ABORT
13122         evaluates to true.
13123
13124 2008-09-14  Bruno Haible  <bruno@clisp.org>
13125
13126         * modules/perror-tests: New file.
13127         * tests/test-perror.sh: New file.
13128         * tests/test-perror.c: New file.
13129
13130         New module 'perror'.
13131         * lib/stdio.in.h (perror): New declaration.
13132         * lib/perror.c: New file.
13133         * m4/perror.m4: New file.
13134         * modules/perror: New file.
13135         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
13136         * doc/posix-functions/perror.texi: Mention the perror module.
13137         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
13138         REPLACE_PERROR.
13139         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
13140         REPLACE_PERROR.
13141
13142 2008-09-14  Bruno Haible  <bruno@clisp.org>
13143
13144         * modules/stdio (Makefile.am): Reorder to match the order in
13145         lib/stdio.in.h.
13146         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
13147
13148 2008-09-13  Bruno Haible  <bruno@clisp.org>
13149
13150         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
13151
13152 2008-09-13  Bruno Haible  <bruno@clisp.org>
13153
13154         Extend strerror to cover the added errno values.
13155         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
13156         (rpl_strerror): Provide error messages for the added errno values and
13157         for the WSA* values.
13158         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
13159         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
13160         strerror.
13161         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
13162         * modules/strerror (Depends-on): Add errno.
13163         * doc/posix-functions/strerror.texi: Document the change.
13164         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
13165         and EOVERFLOW.
13166
13167 2008-09-13  Bruno Haible  <bruno@clisp.org>
13168
13169         * modules/EOVERFLOW: Remove file.
13170         * m4/eoverflow.m4: Remove file.
13171         * modules/EOVERFLOW-tests: Remove file.
13172         * tests/test-EOVERFLOW.c: Remove file.
13173         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
13174         * modules/ftell (Depends-on): Likewise.
13175         * modules/getdelim (Depends-on): Likewise.
13176         * modules/getugroups (Depends-on): Likewise.
13177         * modules/poll (Depends-on): Likewise.
13178         * modules/snprintf (Depends-on): Likewise.
13179         * modules/sprintf-posix (Depends-on): Likewise.
13180         * modules/vasnprintf (Depends-on): Likewise.
13181         * modules/vasprintf (Depends-on): Likewise.
13182         * modules/vfprintf-posix (Depends-on): Likewise.
13183         * modules/vsnprintf (Depends-on): Likewise.
13184         * modules/vsprintf-posix (Depends-on): Likewise.
13185         * modules/xvasprintf (Depends-on): Likewise.
13186         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
13187         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
13188         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
13189         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
13190         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
13191         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
13192         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
13193         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
13194         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
13195         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
13196         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
13197         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
13198         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
13199         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
13200         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
13201         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
13202         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
13203         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
13204         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
13205         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
13206         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
13207         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
13208         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
13209         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
13210         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
13211         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
13212         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
13213         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
13214         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
13215         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
13216         * MODULES.html.sh: Remove EOVERFLOW.
13217         * NEWS: Mention the change.
13218
13219 2008-09-13  Bruno Haible  <bruno@clisp.org>
13220
13221         * modules/errno-tests: New file.
13222         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
13223
13224         * lib/errno.in.h: New file.
13225         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
13226         * modules/errno: New file.
13227         * doc/posix-headers/errno.texi: Update documentation.
13228         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
13229
13230 2008-09-13  Bruno Haible  <bruno@clisp.org>
13231
13232         * tests/test-poll.c: Use #if for native Windows, rather than testing
13233         __MSVCRT__.
13234
13235 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13236             Bruno Haible  <bruno@clisp.org>
13237
13238         * lib/glob.c: Don't include <pwd.h> on native Windows.
13239         (WINDOWS32): New macro.
13240         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
13241
13242 2008-09-13  Bruno Haible  <bruno@clisp.org>
13243
13244         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
13245         (ETIMEDOUT): Remove macro.
13246         (glthread_cond_timedwait_multithreaded): New declaration.
13247         (glthread_cond_timedwait): Use it.
13248         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
13249         (glthread_cond_timedwait_multithreaded): New function.
13250
13251 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
13252
13253         * modules/poll-tests: Do not check for io.h.
13254         * tests/test-poll.c: Check for __MSVCRT__ instead.
13255
13256 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
13257
13258         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
13259         * modules/poll-tests: Add inet_pton, stdbool, sockets.
13260         * tests/test-poll.c: Use them.  Use _pipe on Windows.
13261
13262 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
13263
13264         * modules/poll-tests: New.
13265         * tests/test-poll.c: New.
13266
13267 2008-09-12  Eric Blake  <ebb9@byu.net>
13268
13269         frexp: test for NetBSD failure on -0.0
13270         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
13271         not all, bugs from NetBSD 3.0 have been fixed.
13272         * doc/posix-functions/frexp.texi (frexp): Document bug.
13273         Reported by Thomas Klausner.
13274
13275         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
13276         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
13277         literal -0.0.
13278         Reported by Jonathan C. Patschke <jp@centtech.com>.
13279
13280 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13281
13282         * lib/glthread/cond.h: Use dummy implementation also if
13283         USE_WIN32_THREADS.
13284
13285 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13286
13287         * modules/fnmatch-posix (License): Change to LGPLv2+.
13288         * modules/fnmatch-gnu (License): Likewise.
13289
13290 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13291
13292         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
13293
13294 2008-09-11  Jim Meyering  <meyering@redhat.com>
13295
13296         * users.txt: Add gtk-vnc.
13297
13298 2008-09-08  Simon Josefsson  <simon@josefsson.org>
13299
13300         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
13301         rotate amounts.
13302
13303         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
13304         required for 16-bit and 8-bit rotates.
13305         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
13306         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
13307         UINT8_MAX instead of hard-coded constants.
13308         Suggested by Paul Eggert.
13309
13310 2008-09-07  Bruno Haible  <bruno@clisp.org>
13311
13312         * tests/test-striconveh.c (main): Check behaviour when converting from
13313         UTF-7.
13314
13315         Make striconveh work better with stateful encodings.
13316         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
13317         that iconv does not increment the inptr when returning -1/EINVAL.
13318
13319 2008-09-07  Bruno Haible  <bruno@clisp.org>
13320
13321         * build-aux/config.rpath: Update according to libtool-2.2.6.
13322         * build-aux/config.libpath: Likewise.
13323
13324 2008-09-06  Bruno Haible  <bruno@clisp.org>
13325
13326         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
13327         * lib/freadptr.c (freadptr): Likewise.
13328         * lib/freadseek.c (freadptrinc): Likewise.
13329         Reported by Simon Josefsson.
13330
13331 2008-09-06  Bruno Haible  <bruno@clisp.org>
13332
13333         * modules/freadptr (License): Change to LGPLv2+.
13334         * modules/freadseek (License): Likewise.
13335         Suggested by Eric Blake.
13336
13337         * modules/memchr2 (License): Change to LGPLv2+.
13338         Approved by Eric Blake.
13339
13340 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13341             Bruno Haible  <bruno@clisp.org>
13342
13343         Make gnulib-tool work with native 'sed' on AIX.
13344         * gnulib-tool (sed_noop): New variable.
13345         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
13346         func_add_or_update, func_create_testdir): Use it to initialize sed
13347         script variables.
13348         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
13349
13350 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
13351             Bruno Haible  <bruno@clisp.org>
13352
13353         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
13354         also works after #include directives.
13355
13356 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
13357
13358         getdate.y: reject an out-of-range timezone value
13359         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
13360         the range [-24...+24].  When specified with only one or two digits,
13361         * tests/test-getdate.c: Tests for the fix.
13362         * doc/getdate.texi: Document this change.
13363
13364 2008-09-03  Bruno Haible  <bruno@clisp.org>
13365
13366         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
13367
13368 2008-09-02  Simon Josefsson  <simon@josefsson.org>
13369
13370         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
13371         <bruce.korb@gmail.com> with ideas from Ben Pfaff
13372         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
13373         Blake <ebb9@byu.net>.
13374
13375         * tests/test-bitrotate.c: Add more test vectors.
13376
13377 2008-09-02  Eric Blake  <ebb9@byu.net>
13378
13379         vasnprintf-posix: handle large precision via %.*d
13380         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
13381         when handling it ourselves.
13382         * tests/test-vasnprintf-posix.c (test_function): Add test.
13383         * tests/test-snprintf-posix.h (test_function): Likewise.
13384         * tests/test-sprintf-posix.h (test_function): Likewise.
13385         * tests/test-vasprintf-posix.c (test_function): Likewise.
13386         Reported by Alain Guibert.
13387
13388 2008-09-01  Eric Blake  <ebb9@byu.net>
13389
13390         c-stack: make configure-time check more robust
13391         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
13392         successful sigaction call.
13393         Reported by Tom G. Christensen.
13394
13395 2008-09-01  Bruno Haible  <bruno@clisp.org>
13396
13397         New module 'findprog-lgpl'.
13398         * modules/findprog-lgpl: New file.
13399         * lib/findprog-lgpl.c: New file.
13400         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
13401         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
13402         to decide whether to use strdup or xstrdup, concatenated_filename or
13403         xconcatenated_filename.
13404
13405 2008-09-01  Bruno Haible  <bruno@clisp.org>
13406
13407         Split module 'concat-filename' into 'concat-filename' (LGPL) and
13408         'xconcat-filename' (GPL).
13409         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
13410         (License): Change to LGPLv2+.
13411         * modules/xconcat-filename: New file.
13412         * lib/concat-filename.h (concatenated_filename): Change specification.
13413         (xconcatenated_filename): New declaration.
13414         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
13415         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
13416         memory situations.
13417         * lib/xconcat-filename.c: New file.
13418         * NEWS: Mention the change.
13419         * lib/findprog.c: Include concat-filename.h, not filename.h.
13420         (find_in_path): Use xconcatenated_filename instead of
13421         concatenated_filename.
13422         * lib/javacomp.c: Include concat-filename.h, not filename.h.
13423         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
13424         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
13425         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
13426         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
13427         instead of concatenated_filename.
13428         * lib/javaexec.c: Include concat-filename.h, not filename.h.
13429         (execute_java_class): Use xconcatenated_filename instead of
13430         concatenated_filename.
13431         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
13432         * modules/javacomp (Depends-on): Likewise.
13433         * modules/javaexec (Depends-on): Likewise.
13434
13435 2008-09-01  Bruno Haible  <bruno@clisp.org>
13436
13437         Split module 'filename' into 'filename' and 'concat-filename'.
13438         * modules/filename: Keep only lib/filename.h.
13439         (License): Change to LGPLv2+.
13440         * modules/concat-filename: New file, extracted from modules/filename.
13441         * lib/filename.h (concatenated_filename): Remove declaration.
13442         * lib/concat-filename.h: New file, extracted from lib/filename.h.
13443         * lib/concat-filename.c: Include concat-filename.h.
13444         * NEWS: Mention the change.
13445
13446 2008-09-01  Simon Josefsson  <simon@josefsson.org>
13447
13448         * lib/bitrotate.h (rotl8, rotr8): Add.
13449
13450         * modules/bitrotate (configure.ac): Need
13451         AC_REQUIRE([AC_C_INLINE]).
13452         (Description): Mention stdint.h.  Reported by Bruno Haible
13453         <bruno@clisp.org>.
13454
13455         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
13456         Paolo Bonzini <bonzini@gnu.org>.
13457
13458 2008-08-31  Bruno Haible  <bruno@clisp.org>
13459
13460         Assume Solaris specific bi-arch conventions on Solaris systems.
13461         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
13462         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
13463         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
13464         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
13465         like acl_libdirstem.
13466         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
13467         acl_libdirstem.
13468         * NEWS: Mention the change.
13469         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
13470
13471 2008-08-31  Jim Meyering  <meyering@redhat.com>
13472
13473         * lib/strftime.h: Add comments describing the two added arguments.
13474
13475         remove duplicate #include directives
13476         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
13477         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
13478
13479 2008-08-31  Bruno Haible  <bruno@clisp.org>
13480
13481         New module 'sigpipe-die'.
13482         * modules/sigpipe-die: New file.
13483         * lib/sigpipe-die.h: New file.
13484         * lib/sigpipe-die.c: New file.
13485         * MODULES.html.sh (Signal handling): Add sigpipe-die.
13486
13487 2008-08-31  Bruno Haible  <bruno@clisp.org>
13488
13489         Don't override previously installed signal handlers.
13490         * lib/fatal-signal.c (saved_sigactions): New variable.
13491         (uninstall_handlers): Reset the signal to the saved handler, not
13492         to SIG_DFL (except when ignored).
13493         (install_handlers): Save the previous handlers.
13494
13495 2008-08-30  Bruno Haible  <bruno@clisp.org>
13496
13497         * gnulib-tool (func_reset_sigpipe): New function.
13498         (func_get_automake_snippet, func_modules_transitive_closure,
13499         func_import): Invoke it before a join command that reads from stdin,
13500         to avoid "echo: write error: Broken pipe" error messages on stderr.
13501         Reported by Sam Steingold <sds@gnu.org>.
13502
13503 2008-08-30  Bruno Haible  <bruno@clisp.org>
13504
13505         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
13506         Code copied from m4/open.m4.
13507         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
13508         access and the filename ends in a slash. Code copied from lib/open.c.
13509         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
13510         * tests/test-fopen.c (main): Check against bug with trailing slash.
13511
13512 2008-08-29  Bruno Haible  <bruno@clisp.org>
13513
13514         Avoid some "gcc -pedantic" warnings.
13515         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
13516         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
13517         * lib/dirent.in.h: Likewise.
13518         * lib/fcntl.in.h: Likewise.
13519         * lib/float.in.h: Likewise.
13520         * lib/iconv.in.h: Likewise.
13521         * lib/inttypes.in.h: Likewise.
13522         * lib/locale.in.h: Likewise.
13523         * lib/math.in.h: Likewise.
13524         * lib/netinet_in.in.h: Likewise.
13525         * lib/search.in.h: Likewise.
13526         * lib/signal.in.h: Likewise.
13527         * lib/stdarg.in.h: Likewise.
13528         * lib/stdint.in.h: Likewise.
13529         * lib/stdio.in.h: Likewise.
13530         * lib/stdlib.in.h: Likewise.
13531         * lib/string.in.h: Likewise.
13532         * lib/strings.in.h: Likewise.
13533         * lib/sys_select.in.h: Likewise.
13534         * lib/sys_socket.in.h: Likewise.
13535         * lib/sys_stat.in.h: Likewise.
13536         * lib/sys_time.in.h: Likewise.
13537         * lib/sysexits.in.h: Likewise.
13538         * lib/time.in.h: Likewise.
13539         * lib/unistd.in.h: Likewise.
13540         * lib/wchar.in.h: Likewise.
13541         * lib/wctype.in.h: Likewise.
13542         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
13543         * modules/fchdir (Makefile.am): Likewise.
13544         * modules/fcntl (Makefile.am): Likewise.
13545         * modules/float (Makefile.am): Likewise.
13546         * modules/iconv_open (Makefile.am): Likewise.
13547         * modules/inttypes (Makefile.am): Likewise.
13548         * modules/locale (Makefile.am): Likewise.
13549         * modules/math (Makefile.am): Likewise.
13550         * modules/netinet_in (Makefile.am): Likewise.
13551         * modules/search (Makefile.am): Likewise.
13552         * modules/signal (Makefile.am): Likewise.
13553         * modules/stdarg (Makefile.am): Likewise.
13554         * modules/stdint (Makefile.am): Likewise.
13555         * modules/stdio (Makefile.am): Likewise.
13556         * modules/stdlib (Makefile.am): Likewise.
13557         * modules/string (Makefile.am): Likewise.
13558         * modules/strings (Makefile.am): Likewise.
13559         * modules/sys_select (Makefile.am): Likewise.
13560         * modules/sys_socket (Makefile.am): Likewise.
13561         * modules/sys_stat (Makefile.am): Likewise.
13562         * modules/sys_time (Makefile.am): Likewise.
13563         * modules/sysexits (Makefile.am): Likewise.
13564         * modules/time (Makefile.am): Likewise.
13565         * modules/unistd (Makefile.am): Likewise.
13566         * modules/wchar (Makefile.am): Likewise.
13567         * modules/wctype (Makefile.am): Likewise.
13568         Reported by Reuben Thomas <rrt@sc3d.org>.
13569
13570 2008-08-29  Bruno Haible  <bruno@clisp.org>
13571
13572         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
13573         any more.
13574
13575 2008-08-29  Simon Josefsson  <simon@josefsson.org>
13576
13577         * MODULES.html.sh (Misc): Add bitrotate.
13578
13579         * modules/bitrotate: New file.
13580
13581         * lib/bitrotate.h: New file.
13582
13583         * modules/bitrotate-tests: New file.
13584
13585         * tests/test-bitrotate.c: New file.
13586
13587         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
13588         on the bitrotate module.
13589
13590         * lib/arctwo.c: Use new bitrotate module.
13591
13592 2008-08-29  Jim Meyering  <meyering@redhat.com>
13593
13594         bootstrap: merge changes from coreutils
13595         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
13596         of copied files.  Remove a kludge, now that this is fixed.
13597         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
13598         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
13599         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
13600
13601 2008-08-29  Bruno Haible  <bruno@clisp.org>
13602
13603         * MODULES.html.sh: Remove --cvs-urls option.
13604
13605 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
13606
13607         maint.mk: adjust to file name change
13608         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
13609
13610 2008-08-28  Jim Meyering  <meyering@redhat.com>
13611
13612         * modules/getndelim2 (License): Relicense to LGPLv2+.
13613         Approved by Richard Stallman for the version of 1995, and by
13614         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
13615
13616 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
13617
13618         * lib/getdelim.c (flockfile, funlockfile): Make all of them
13619         dummy if one is not available.  Do not touch them if
13620         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
13621         (getc_maybe_unlocked): New.
13622         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
13623
13624 2008-08-26  Eric Blake  <ebb9@byu.net>
13625
13626         doc/INSTALL: resync from autoconf
13627         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
13628         (INSTALL_PRELUDE): Delete; this is done more efficiently by
13629         moving...
13630         * install.texi [!autoconf]: ...here.  Resync from autoconf.
13631         * INSTALL: Regenerate.
13632         * INSTALL.ISO: New file.
13633         * INSTALL.UTF-8: Likewise.
13634
13635 2008-08-26  Jim Meyering  <meyering@redhat.com>
13636
13637         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
13638         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
13639         these definitions conditional, so that they may be overridden, too.
13640
13641 2008-08-26  Bruno Haible  <bruno@clisp.org>
13642
13643         Generate INSTALL file variants with prettier quotes.
13644         * doc/Makefile (INSTALL_PRELUDE): New macro.
13645         (INSTALL): Use it.
13646         (INSTALL.ISO, INSTALL.UTF-8): New rules.
13647
13648 2008-08-26  Bruno Haible  <bruno@clisp.org>
13649
13650         Run makeinfo in an English locale.
13651         * doc/Makefile (MAKEINFO): New variable.
13652
13653 2008-08-26  Bruno Haible  <bruno@clisp.org>
13654
13655         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
13656         Suggested by Eric Blake.
13657
13658 2008-08-25  Bruno Haible  <bruno@clisp.org>
13659
13660         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
13661
13662 2008-08-25  Eric Blake  <ebb9@byu.net>
13663
13664         c-stack: test that stack overflow can be caught
13665         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
13666         that platform allows handling stack overflow; at least OS/2 EMX
13667         has sigaltstack, but crashes before transferring control to
13668         handler on stack overflow.
13669         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
13670         check for HAVE_STACK_OVERFLOW_HANDLING.
13671         Reported by Elbert Pol.
13672
13673 2008-08-25  Bruno Haible  <bruno@clisp.org>
13674
13675         * doc/posix-functions/strftime.texi: Fix description of strftime
13676         module.
13677
13678 2008-08-24  Bruno Haible  <bruno@clisp.org>
13679
13680         * tests/uniwidth/test-uc_width2.c: New file.
13681         * tests/uniwidth/test-uc_width2.sh: New file.
13682         * modules/uniwidth/width-tests (Files): Add the new files.
13683         (TESTS): Add uniwidth/test-uc_width2.sh.
13684         (TESTS_ENVIRONMENT): New variable.
13685         (check_PROGRAMS): Add test-uc_width2.
13686         (test_uc_width2_SOURCES): New variable.
13687
13688         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
13689         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
13690         not 0x00AB.
13691         Reported by Alexander V. Lukyanov <lav@netis.ru>.
13692
13693 2008-08-22  Eric Blake  <ebb9@byu.net>
13694
13695         test-lock, test-tls: mention why a test is skipped
13696         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
13697         skipped.
13698         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
13699
13700         count-one-bits: relax license
13701         * modules/count-one-bits (License): Relicense to LGPLv2+.
13702         Suggested by Ludovic Courtès, approved by Ben Pfaff.
13703
13704 2008-08-22  Andreas Schwab  <schwab@suse.de>
13705
13706         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
13707         Remove spurious space in assignment.
13708
13709 2008-08-21  Simon Josefsson  <simon@josefsson.org>
13710
13711         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
13712         Paul Eggert <eggert@CS.UCLA.EDU>.
13713
13714 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
13715
13716         * modules/gettext: Add m4/threadlib.m4.
13717
13718 2008-08-19  Eric Blake  <ebb9@byu.net>
13719
13720         test-c-stack: fix compilation failure on FreeBSD 5.0
13721         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
13722         headers before <sys/resource.h>.
13723         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
13724         the bug.
13725         Reported by Nelson H. F. Beebe.
13726
13727         strverscmp: migrate from "strverscmp.h" to <string.h>
13728         * modules/string (Makefile.am): Add new hooks.
13729         * modules/strverscmp (Files): Remove strverscmp.h.
13730         (Depends-on): Add string.
13731         (configure.ac): Add indicator.
13732         (Include): Mention new header.
13733         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
13734         defaults.
13735         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
13736         results.
13737         * lib/strverscmp.h: Delete.
13738         * lib/string.in.h (strverscmp): Provide declaration, when needed.
13739         * tests/test-strverscmp.c (includes): Adjust client.
13740         * lib/check-version.c (includes): Likewise.
13741         * NEWS: Document the change.
13742
13743         strverscmp: add unit test
13744         * modules/strverscmp-tests: New file.
13745         * tests/test-strverscmp.c: Likewise.
13746
13747 2008-08-19  Simon Josefsson  <simon@josefsson.org>
13748
13749         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
13750         regarding Windows crypto stuff, from Mono.
13751
13752 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
13753
13754         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
13755         if present, for intel RND.  Return error on failures.
13756
13757 2008-08-18  Ben Pfaff  <blp@gnu.org>
13758
13759         gitlog-to-changelog: give better diagnostic for failed pipe-open
13760         * build-aux/gitlog-to-changelog: Improve error message: suggest
13761         that the version of Git may be too old.
13762
13763 2008-08-18  Simon Josefsson  <simon@josefsson.org>
13764
13765         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
13766         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
13767
13768 2008-08-18  Bruno Haible  <bruno@clisp.org>
13769
13770         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
13771         pthread_in_use().
13772
13773 2008-08-18  Bruno Haible  <bruno@clisp.org>
13774
13775         * lib/glthread/threadlib.c: Include <pthread.h>.
13776
13777 2008-08-18  Bruno Haible  <bruno@clisp.org>
13778
13779         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
13780         glthread_recursive_lock_* macros.
13781         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
13782         Fix syntax error.
13783
13784 2008-08-18  Bruno Haible  <bruno@clisp.org>
13785
13786         * lib/glthread/thread.c: Avoid forcing a context switch right after
13787         thread creation.
13788
13789 2008-08-17  Bruno Haible  <bruno@clisp.org>
13790
13791         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
13792         * lib/glthread/thread.h: Provide Win32 specific implementation.
13793         * modules/thread (Files): Add lib/glthread/thread.c.
13794         (Depends-on): Add lock.
13795         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
13796
13797 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13798
13799         New module 'yield'.
13800         * modules/yield: New file.
13801         * lib/glthread/yield.h: New file.
13802         * m4/yield.m4: New file.
13803         * MODULES.html.sh (Multithreading): Add yield.
13804
13805 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13806
13807         New module 'thread'.
13808         * modules/thread: New file.
13809         * lib/glthread/thread.h: New file.
13810         * m4/thread.m4: New file.
13811         * MODULES.html.sh (Multithreading): Add thread.
13812
13813 2008-08-17  Bruno Haible  <bruno@clisp.org>
13814
13815         * lib/glthread/lock.h: Include <stdlib.h> always.
13816         * lib/glthread/tls.h: Likewise.
13817         * lib/glthread/cond.h: Likewise.
13818
13819 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13820
13821         New module 'cond'.
13822         * modules/cond: New file.
13823         * lib/glthread/cond.h: New file.
13824         * lib/glthread/cond.c: New file.
13825         * m4/cond.m4: New file.
13826         * MODULES.html.sh (Multithreading): Add cond.
13827
13828 2008-08-16  Eric Blake  <ebb9@byu.net>
13829
13830         c-stack: fix regression on Irix 5.3 from 2008-06-21
13831         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
13832         sa_sigaction...
13833         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
13834         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
13835         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
13836         * modules/signal (Makefile.am): Use the value.
13837         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
13838         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
13839         * doc/posix-headers/signal.texi (signal.h): Document this
13840         portability issue.
13841         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
13842         Reported by Tom G. Christensen.
13843
13844 2008-08-17  Bruno Haible  <bruno@clisp.org>
13845
13846         New module 'threadlib'.
13847         * modules/threadlib: New file.
13848         * lib/glthread/threadlib.c: New file, extracted from
13849         lib/glthread/lock.c.
13850         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
13851         functions.
13852         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
13853         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
13854         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
13855         macros.
13856         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
13857         (gl_DISABLE_THREADS): Remove macro.
13858         * modules/lock (Files): Remove build-aux/config.rpath.
13859         (Depends-on): Remove havelib. Add threadlib.
13860         (configure.ac-early): Remove section.
13861         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
13862         * modules/tls (Depends-on): Remove lock. Add threadlib.
13863         (Link): New section, copied from threadlib.
13864         * MODULES.html.sh (Multithreading): Add threadlib.
13865
13866 2008-08-14  Bruno Haible  <bruno@clisp.org>
13867
13868         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
13869         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
13870         glthread_rwlock_unlock, glthread_rwlock_destroy,
13871         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
13872         glthread_recursive_lock_destroy): Define as macros always.
13873         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
13874         glthread_lock_lock.
13875         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
13876         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
13877         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
13878         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
13879         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
13880         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
13881         (glthread_recursive_lock_lock_func): Renamed from
13882         glthread_recursive_lock_lock.
13883         (glthread_recursive_lock_unlock_func): Renamed from
13884         glthread_recursive_lock_unlock.
13885         (glthread_recursive_lock_destroy_func): Renamed from
13886         glthread_recursive_lock_destroy.
13887
13888 2008-08-14  Bruno Haible  <bruno@clisp.org>
13889
13890         * lib/glthread/lock.h: Renamed from lib/lock.h.
13891         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
13892         * lib/glthread/tls.h: Renamed from lib/tls.h.
13893         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
13894         * lib/fstrcmp.c: Update includes.
13895         * lib/strsignal.c: Update includes.
13896         * modules/lock (Files, Makefile.am): Update.
13897         (Include): Change to "glthread/lock.h".
13898         * modules/tls (Files, Makefile.am): Update.
13899         (Include): Change to "glthread/tls.h".
13900         * tests/test-lock.c: Update includes.
13901         * tests/test-tls.c: Update includes.
13902         * NEWS: Mention the renamed header files.
13903
13904 2008-08-11  Jim Meyering  <meyering@redhat.com>
13905
13906         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
13907
13908 2008-08-11  Eric Blake  <ebb9@byu.net>
13909
13910         test-c-stack: avoid C99-ism
13911         * tests/test-c-stack.c (main): Fix whitespace, move declaration
13912         before statement.
13913         Reported by Alain Guibert.
13914
13915 2008-08-10  Jim Meyering  <meyering@redhat.com>
13916
13917         ensure that return value of uinttostr et al are not ignored
13918         * lib/inttostr.h (__GNUC_PREREQ): Define.
13919         (__attribute_warn_unused_result__): Define.
13920         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
13921
13922 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
13923
13924         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
13925         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
13926
13927 2008-08-07  Jim Meyering  <meyering@redhat.com>
13928
13929         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
13930
13931         * modules/mkstemp (License): Relicense under LGPLv2+.
13932         * modules/tempname (License): Likewise.
13933
13934 2008-08-06  Bruno Haible  <bruno@clisp.org>
13935
13936         * lib/poll.c (poll): Further micro-optimization.
13937
13938 2008-08-06  Jim Meyering  <meyering@redhat.com>
13939
13940         inet_pton.c: use locale-independent tolower
13941         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
13942         (inet_pton6): Use c_tolower rather than tolower.
13943         * modules/inet_pton (Depends-on): Add c-ctype.
13944
13945 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
13946
13947         * lib/poll.c (poll): Avoid division when timeout is 0, cache
13948         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
13949
13950 2008-08-06  Jim Meyering  <meyering@redhat.com>
13951
13952         * modules/inet_pton (License): Relicense under LGPLv2+.
13953
13954 2008-08-03  Bruno Haible  <bruno@clisp.org>
13955
13956         Additional non-aborting API for lock and tls.
13957         * lib/lock.h: Include <errno.h>.
13958         (glthread_lock_init): New macro/function.
13959         (gl_lock_init): Define as wrapper around glthread_lock_init.
13960         (glthread_lock_lock): New macro/function.
13961         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
13962         (glthread_lock_unlock): New macro/function.
13963         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
13964         (glthread_lock_destroy): New macro/function.
13965         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
13966         (glthread_rwlock_init): New macro/function.
13967         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
13968         (glthread_rwlock_rdlock): New macro/function.
13969         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
13970         (glthread_rwlock_wrlock): New macro/function.
13971         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
13972         (glthread_rwlock_unlock): New macro/function.
13973         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
13974         (glthread_rwlock_destroy): New macro/function.
13975         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
13976         (glthread_recursive_lock_init): New macro/function.
13977         (gl_recursive_lock_init): Define as wrapper around
13978         glthread_recursive_lock_init.
13979         (glthread_recursive_lock_lock): New macro/function.
13980         (gl_recursive_lock_lock): Define as wrapper around
13981         glthread_recursive_lock_lock.
13982         (glthread_recursive_lock_unlock): New macro/function.
13983         (gl_recursive_lock_unlock): Define as wrapper around
13984         glthread_recursive_lock_unlock.
13985         (glthread_recursive_lock_destroy): New macro/function.
13986         (gl_recursive_lock_destroy): Define as wrapper around
13987         glthread_recursive_lock_destroy.
13988         (glthread_once): New macro/function.
13989         (gl_once): Define as wrapper around glthread_once.
13990         Update function declarations.
13991         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
13992         glthread_rwlock_init. Return error code.
13993         (glthread_rwlock_rdlock_multithreaded): Renamed from
13994         glthread_rwlock_rdlock. Return error code.
13995         (glthread_rwlock_wrlock_multithreaded): Renamed from
13996         glthread_rwlock_wrlock. Return error code.
13997         (glthread_rwlock_unlock_multithreaded): Renamed from
13998         glthread_rwlock_unlock. Return error code.
13999         (glthread_rwlock_destroy_multithreaded): Renamed from
14000         glthread_rwlock_destroy. Return error code.
14001         (glthread_recursive_lock_init_multithreaded): Renamed from
14002         glthread_recursive_lock_init. Return error code.
14003         (glthread_recursive_lock_lock_multithreaded): Renamed from
14004         glthread_recursive_lock_lock. Return error code.
14005         (glthread_recursive_lock_unlock_multithreaded): Renamed from
14006         glthread_recursive_lock_unlock. Return error code.
14007         (glthread_recursive_lock_destroy_multithreaded): Renamed from
14008         glthread_recursive_lock_destroy. Return error code.
14009         (glthread_once_call): Make static.
14010         (glthread_once_multithreaded): Renamed from glthread_once.
14011         * lib/tls.h: Include <errno.h>.
14012         (glthread_tls_key_init): New macro/function.
14013         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
14014         (glthread_tls_set): New macro/function.
14015         (gl_tls_set): Define as wrapper around glthread_tls_set.
14016         (glthread_tls_key_destroy): New macro/function.
14017         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
14018         Update function declarations.
14019         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
14020         glthread_tls_get.
14021         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14022
14023 2008-08-04  Eric Blake  <ebb9@byu.net>
14024
14025         gnumakefile: use space, not TAB, outside of targets
14026         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
14027
14028 2008-08-02  Jim Meyering  <meyering@redhat.com>
14029
14030         getdate.y: avoid locale-dependent date parsing failure
14031         In Turkish locales, getdate would fail to recognize keywords
14032         containing a lowercase "i".  The solution is not to rely on
14033         locale-sensitive case-conversion.
14034         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
14035         (lookup_word): Use c_toupper in place of toupper.
14036         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
14037         Reported by Vefa Bicakci <bicave@superonline.com> in
14038         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
14039         * modules/getdate (Depends-on): Add c-ctype.
14040
14041 2008-08-02  Bruno Haible  <bruno@clisp.org>
14042
14043         * gnulib-tool (func_import): When updating or creating a .gitignore
14044         file, prepend each added line with a slash, and ignore leading slashes
14045         from the existing lines.
14046         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
14047
14048 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14049
14050         Portability fix for GNU make 3.79.1.
14051         * top/GNUmakefile: Avoid 'else COND', which older GNU make
14052         versions do not understand.
14053
14054 2008-08-01  Bruno Haible  <bruno@clisp.org>
14055
14056         Work around bug of HP-UX 10.20 cc with -0.0 literal.
14057         * tests/test-isnanf.h (zero): New variable.
14058         (main): Avoid literal -0.0f.
14059         * tests/test-isnand.h (zero): New variable.
14060         (main): Avoid literal -0.0.
14061         * tests/test-isnanl.h (zero): New variable.
14062         (main): Avoid literal -0.0L.
14063         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
14064         (test_float, test_double, test_long_double): Avoid literals -0.0f,
14065         -0.0, -0.0L.
14066         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
14067         (test_signbitd): Avoid literal -0.0.
14068         (test_signbitl): Avoid literal -0.0L.
14069         * tests/test-ceilf1.c (zero): New variable.
14070         (main): Avoid literal -0.0f.
14071         * tests/test-ceill.c (zero): New variable.
14072         (main): Avoid literal -0.0L.
14073         * tests/test-floorf1.c (zero): New variable.
14074         (main): Avoid literal -0.0f.
14075         * tests/test-floorl.c (zero): New variable.
14076         (main): Avoid literal -0.0L.
14077         * tests/test-roundf1.c (zero): New variable.
14078         (main): Avoid literal -0.0f.
14079         * tests/test-round1.c (zero): New variable.
14080         (main): Avoid literal -0.0.
14081         * tests/test-roundl.c (zero): New variable.
14082         (main): Avoid literal -0.0L.
14083         * tests/test-truncf1.c (zero): New variable.
14084         (main): Avoid literal -0.0f.
14085         * tests/test-trunc1.c (zero): New variable.
14086         (main): Avoid literal -0.0.
14087         * tests/test-truncl.c (zero): New variable.
14088         (main): Avoid literal -0.0L.
14089         * tests/test-frexp.c (zero): New variable.
14090         (main): Avoid literal -0.0.
14091         * tests/test-frexpl.c (zero): New variable.
14092         (main): Avoid literal -0.0L.
14093         * tests/test-ldexpl.c (zero): New variable.
14094         (main): Avoid literal -0.0L.
14095         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
14096         (zerod, zerol): New variables.
14097         (test_function): Avoid literals -0.0, -0.0L.
14098         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
14099         (zerod, zerol): New variables.
14100         (test_function): Avoid literals -0.0, -0.0L.
14101         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
14102         (zerod, zerol): New variables.
14103         (test_function): Avoid literals -0.0, -0.0L.
14104         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
14105         (zerod, zerol): New variables.
14106         (test_function): Avoid literals -0.0, -0.0L.
14107         * tests/test-strtod.c (zero): New variable.
14108         (main): Avoid literal -0.0.
14109         Reported by Jonathan C. Patschke <jp@centtech.com>.
14110
14111 2008-07-31  Jim Meyering  <meyering@redhat.com>
14112
14113         sha256.h: correct definition of SHA224_DIGEST_SIZE
14114         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
14115         Reported by Paulie Pena IV <paulie4@gmail.com>.
14116         Define as 224 / 8, rather than as a literal.
14117         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
14118         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
14119         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
14120
14121 2008-07-31  Bruno Haible  <bruno@clisp.org>
14122
14123         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
14124         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
14125         Reported by Jonathan Patschke <jp@centtech.com>.
14126
14127 2008-07-31  Bruno Haible  <bruno@clisp.org>
14128
14129         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
14130         Reported by Paolo Bonzini <bonzini@gnu.org>.
14131
14132 2008-07-30  Eric Blake  <ebb9@byu.net>
14133
14134         test-strtod: allow compilation without -lm
14135         * tests/test-strtod.c (main): Avoid link dependence on fabs.
14136         Reported by Dennis Clarke <blastwave@gmail.com>.
14137
14138 2008-07-28  Jim Meyering  <meyering@redhat.com>
14139
14140         bootstrap: work also when there are no .po files in po/
14141         * build-aux/bootstrap (update_po_files): Complete the change
14142         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
14143
14144 2008-07-27  Jim Meyering  <meyering@redhat.com>
14145
14146         * users.txt: Add zile.
14147
14148 2008-07-26  Ben Pfaff  <blp@gnu.org>
14149
14150         Add missing dependencies on new m4/exponent[fdl].m4 files.
14151         * modules/isnanf-nolibm: Add m4/exponentf.m4.
14152         * modules/isnand-nolibm: Add m4/exponentd.m4.
14153         * modules/isnanl-nolibm: Add m4/exponentl.m4.
14154         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
14155         m4/isnan[fdl].m4, because the macros actually used moved.
14156         Reported by Jim Meyering.
14157
14158 2008-07-14  Ben Pfaff  <blp@gnu.org>
14159
14160         Add isinf module.
14161         * lib/isinf.c: New file.
14162         * lib/math.in.h: Define isinf macro if we have decided to replace
14163         it.
14164         * m4/isinf.m4: New file.
14165         * m4/math_h.m4: Initialize and substitute variables for isinf
14166         module.
14167         * modules/isinf: New file.
14168         * modules/isinf-tests: New file.
14169         * modules/math: Add substitutions for new module.
14170         * tests/test-isinf.c: New file.
14171         * doc/posix-functions/isinf.texi: Mention new module.
14172         * MODULES.html.sh: Mention new module.
14173
14174 2008-07-14  Ben Pfaff  <blp@gnu.org>
14175
14176         Factor out some macros for use by additional modules.
14177         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
14178         exponentf.m4.
14179         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
14180         exponentd.m4.
14181         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
14182         file exponentl.m4.
14183         * m4/exponentf.m4: New file.
14184         * m4/exponentd.m4: New file.
14185         * m4/exponentl.m4: New file.
14186         * modules/isnanf: Use new file m4/exponentf.m4.
14187         * modules/isnand: Use new file m4/exponentd.m4.
14188         * modules/isnanl: Use new file m4/exponentl.m4.
14189
14190 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
14191
14192         mktime.c: normalize tp->tm_isdst value to -1/0/1.
14193         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
14194         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
14195         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
14196
14197         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
14198         readlink on platforms without PATH_MAX.
14199
14200 2008-07-21  Eric Blake  <ebb9@byu.net>
14201
14202         Warn, not fail, on stale version.
14203         * top/GNUmakefile (_curr-ver): Tone down previous patch.
14204
14205         Don't allow installation with stale devel version number.
14206         * top/GNUmakefile (_is-install-target): New macro.
14207         (_curr-ver): Forbid installation with stale version number.
14208
14209 2008-07-20  Bruno Haible  <bruno@clisp.org>
14210
14211         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
14212         TESTS_ENVIRONMENT.
14213         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
14214
14215 2008-07-20  Bruno Haible  <bruno@clisp.org>
14216
14217         * lib/c-stack.h (c_stack_action): Add documentation.
14218         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
14219
14220 2008-07-20  Bruno Haible  <bruno@clisp.org>
14221
14222         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
14223         * modules/readlink (License): Likewise.
14224
14225 2008-07-17  Eric Blake  <ebb9@byu.net>
14226
14227         * modules/c-stack (Link): Fix typo.
14228
14229         Make c-stack use libsigsegv, when available.
14230         * modules/c-stack (Depends-on): Add libsigsegv.
14231         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
14232         needed.
14233         * lib/c-stack.c (SIGSTKSZ): Define fallback.
14234         (segv_handler, overflow_handler, c_stack_action)
14235         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
14236         implementation when libsigsegv is available, but only when using
14237         the library is necessary.
14238         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
14239         comment, explaining why XSI check fails on Linux.
14240         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
14241         * tests/test-c-stack2.sh: Tweak skip message.
14242         * NEWS: Document new link-time requirements.
14243
14244 2008-07-16  Eric Blake  <ebb9@byu.net>
14245
14246         c-stack: Expose false positives when not using libsigsegv.
14247         * modules/c-stack-tests (Files): Expand test.
14248         * tests/test-c-stack.c (main): Add means to conditionally trigger
14249         non-overflow SIGSEGV.
14250         * tests/test-c-stack2.sh: New file.
14251
14252 2008-07-14  Bruno Haible  <bruno@clisp.org>
14253
14254         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
14255         Reported by Eric Blake.
14256
14257 2008-07-14  Sam Steingold  <sds@gnu.org>
14258             Bruno Haible  <bruno@clisp.org>
14259
14260         New module libsigsegv.
14261         * modules/libsigsegv: New file.
14262         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
14263         modifications.
14264         * MODULES.html.sh (Signal handling): New section.
14265
14266 2008-07-14  Bruno Haible  <bruno@clisp.org>
14267
14268         * modules/unictype/ctype-* (Description): Add the word "function".
14269         Improves the resulting doc in MODULES.html.
14270
14271 2008-07-12  Ben Pfaff  <blp@gnu.org>
14272
14273         Add longlong module.
14274         * modules/longlong: New file.
14275
14276 2008-07-12  Bruno Haible  <bruno@clisp.org>
14277
14278         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
14279         to empty.
14280
14281 2008-07-10  Ben Pfaff  <blp@gnu.org>
14282
14283         Add isnan module.
14284         * doc/posix-functions/isnan.texi: Mention new module.
14285         * lib/math.in.h: Define isnan macro if we have decided to replace
14286         it.
14287         * m4/isnan.m4: New file.
14288         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
14289         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
14290         also.
14291         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
14292         redundancy.
14293         * m4/math_h.m4: Initialize and substitute variables for isnan
14294         module.
14295         * modules/isnan: New file.
14296         * modules/isnan-tests: New file.
14297         * modules/math: Add substitutions for new module.
14298         * tests/test-isnan.c: New file.
14299         * MODULES.html.sh: Mention new module.
14300
14301 2008-07-10  Ben Pfaff  <blp@gnu.org>
14302
14303         Add isnanf module.
14304         * lib/isnanf.m4: New file.
14305         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
14306         (gl_HAVE_ISNANF_IN_LIBM): New macro.
14307         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
14308         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
14309         * modules/isnanf: New file.
14310         * modules/isnanf-tests: New file.
14311         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
14312         files.
14313         * tests/test-isnanf-nolibm.c: factored most of its contents into
14314         new file tests/test-isnanf.h.
14315         * tests/test-isnanf.h: New file.
14316         * tests/test-isnanf.c: New file.
14317         * MODULES.html.sh: Mention new module.
14318         * doc/glibc-functions/isnanf.texi: Mention new module.
14319
14320 2008-07-10  Ben Pfaff  <blp@gnu.org>
14321
14322         Add isnand module.
14323         * lib/isnand.h: New file.
14324         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
14325         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
14326         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
14327         functionality also.
14328         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
14329         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
14330         (gl_HAVE_ISNAND_IN_LIBM): New macro.
14331         * modules/isnand: New file.
14332         * modules/isnand-tests: New file.
14333         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
14334         files.
14335         * tests/test-isnand-nolibm.c: factored most of its contents into
14336         new file tests/test-isnand.h.
14337         * tests/test-isnand.h: New file.
14338         * tests/test-isnand.c: New file.
14339         * MODULES.html.sh: Mention new module.
14340
14341 2008-07-10  Ben Pfaff  <blp@gnu.org>
14342
14343         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
14344         * lib/isnand.h: Rename lib/isnand-nolibm.h.
14345         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
14346         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
14347         * modules/isnanf-nolibm: Update references to renamed files.
14348         * modules/isnand-nolibm: Likewise.
14349         * modules/isnanf-nolibm-tests: Likewise.
14350         * modules/isnand-nolibm-tests: Likewise.
14351         * lib/frexp.c: Likewise.
14352         * lib/isfinite.c: Likewise.
14353         * lib/signbitd.c: Likewise.
14354         * lib/signbitf.c: Likewise.
14355         * lib/vasnprintf.c: Likewise.
14356         * tests/test-ceilf1.c: Likewise.
14357         * tests/test-ceilf2.c: Likewise.
14358         * tests/test-floorf1.c: Likewise.
14359         * tests/test-floorf2.c: Likewise.
14360         * tests/test-frexp.c: Likewise.
14361         * tests/test-round1.c: Likewise.
14362         * tests/test-round2.c: Likewise.
14363         * tests/test-roundf1.c: Likewise.
14364         * tests/test-strtod.c: Likewise.
14365         * tests/test-trunc1.c: Likewise.
14366         * tests/test-trunc2.c: Likewise.
14367         * tests/test-truncf1.c: Likewise.
14368         * tests/test-truncf2.c: Likewise.
14369         * NEWS: Mention the renamed header files.
14370
14371 2008-07-11  Jim Meyering  <meyering@redhat.com>
14372
14373         vc-list-files: make the last-resort awk code more portable
14374         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
14375         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
14376         does not support it.
14377
14378 2008-07-10  Eric Blake  <ebb9@byu.net>
14379
14380         Work with tar's bootstrap.
14381         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
14382         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
14383         an m4 comment.
14384
14385 2008-07-09  Jim Meyering  <meyering@redhat.com>
14386
14387         posix-shell.m4: fix typo that made this test malfunction
14388         * m4/posix-shell.m4: Remove capitalization in variable name.
14389
14390 2008-07-08  Bruno Haible  <bruno@clisp.org>
14391
14392         * m4/onceonly.m4: Update comments.
14393         Reported by Ben Pfaff <blp@cs.stanford.edu>.
14394
14395 2008-07-04  Jim Meyering  <meyering@redhat.com>
14396
14397         * users.txt: Add vc-dwim.
14398         (bison, coreutils): Use the gitweb URL.
14399
14400 2008-07-03  Jim Meyering  <meyering@redhat.com>
14401
14402         * users.txt: Add libffcall.  From Sam Steingold.
14403
14404 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
14405
14406         getdate.y: do not ignore TZ with relative day, month or year offset
14407         * lib/getdate.y (get_date): Move the tz-handling block to follow the
14408         relative-date-handling, since otherwise, the latter would clobber the
14409         sole output (an updated Start value) of the tz-handling block.
14410         * tests/test-getdate.c: Tests for the fix
14411
14412 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14413
14414         Recognize 'foo_LIBRARIES += libgnu.a'.
14415         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
14416         makefile snippet has already specified an installation location,
14417         also using '+='.
14418
14419 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
14420
14421         getdate.y: factor out common actions
14422         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
14423         Use them in place of open-coded actions.
14424
14425 2008-07-01  Simon Josefsson  <simon@josefsson.org>
14426
14427         Add self-test for getdate module.
14428         * modules/getdate-tests: New file.
14429         * tests/test-getdate.c: New file.
14430
14431 2008-06-29  Bruno Haible  <bruno@clisp.org>
14432
14433         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
14434         .gitignore.
14435         Reported by Sylvain Beucler <beuc@beuc.net>.
14436
14437 2008-06-29  Bruno Haible  <bruno@clisp.org>
14438
14439         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
14440         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
14441
14442 2008-06-29  Bruno Haible  <bruno@clisp.org>
14443
14444         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
14445         EXTRA_DIST.
14446         Reported by Sylvain Beucler <beuc@beuc.net>.
14447
14448 2008-06-26  Jim Meyering  <meyering@redhat.com>
14449
14450         make several modules depend on the "open" module
14451         This provides slightly increased consistency when opening-for-write
14452         the name of a non-directory spelled with a trailing slash.
14453         * modules/chdir-safer: Likewise.
14454         * modules/chown: Likewise.
14455         * modules/clean-temp: Likewise.
14456         * modules/copy-file: Likewise.
14457         * modules/fchdir: Likewise.
14458         * modules/fcntl-safer: Likewise.
14459         * modules/pipe: Likewise.
14460         * modules/utime: Likewise.
14461         Prompted by Eric Blake and Bruno Haible.
14462
14463 2008-06-24  Andreas Schwab  <schwab@suse.de>
14464
14465         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
14466         literals can be used as initializers for global variables.
14467
14468 2008-06-23  Eric Blake  <ebb9@byu.net>
14469
14470         Make gnulib-cache.m4 easier to diff.
14471         * gnulib-tool (func_import): Allow newlines when reading cached
14472         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
14473
14474 2008-06-23  Bruno Haible  <bruno@clisp.org>
14475
14476         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
14477         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
14478         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
14479         m4/signalblocking.m4.
14480         (gl_PREREQ_SIGACTION): Don't invoke it.
14481         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
14482         gl_PREREQ_SIG_HANDLER_H.
14483         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
14484         Don't check for sigaction here.
14485
14486 2008-06-23  Bruno Haible  <bruno@clisp.org>
14487
14488         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
14489         (install_handlers): Don't set the SA_RESETHAND flag.
14490
14491 2008-06-23  Bruno Haible  <bruno@clisp.org>
14492
14493         * m4/sigaction.m4: Comment fixes.
14494         * lib/signal.in.h: Likewise.
14495
14496 2008-06-23  Eric Blake  <ebb9@byu.net>
14497
14498         Fix typo.
14499         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
14500
14501         Avoid SA_ namespace.
14502         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
14503         Reported by Ralf Wildenhues.
14504
14505         Avoid test failure due to SA_RESTORER.
14506         * tests/test-sigaction.c (SA_MASK): New macro.
14507         (main): Avoid failing due to extension flags being set.
14508         Reported by Jim Meyering.
14509
14510         Revert use of sig-handler.h in sigprocmask.c.
14511         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
14512         it requires the existence of struct sigaction.
14513         * lib/sigprocmask.c (handler_t): Restore typedef.
14514         (rpl_signal, old_handlers): Use local type.
14515
14516 2008-06-22  Bruno Haible  <bruno@clisp.org>
14517
14518         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
14519         conditionally.
14520         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
14521
14522 2008-06-22  Bruno Haible  <bruno@clisp.org>
14523
14524         * doc/posix-functions/siginterrupt.texi: Move note.
14525
14526         * lib/signal.in.h (SA_RESTART): New macro.
14527         * lib/sigaction.c: Update comment.
14528
14529         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
14530
14531         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
14532         (gl_PREREQ_SIGPROCMASK): Invoke it.
14533         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
14534
14535         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
14536
14537         * lib/sigprocmask.c: Update a comment.
14538
14539 2008-06-21  Eric Blake  <ebb9@byu.net>
14540
14541         Use sigaction module rather than signal().
14542         * modules/c-stack (Depends-on): Add sigaction.
14543         * modules/fatal-signal (Depends-on): Likewise.
14544         * modules/nanosleep (Depends-on): Likewise.
14545         * modules/sigprocmask (Files): Add sig-handler.h.
14546         * modules/sigaction (Files): Likewise.
14547         * lib/sig-handler.h (get_handler): New file, suggested by Paul
14548         Eggert.
14549         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
14550         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
14551         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
14552         (init_fatal_signals): Likewise.
14553         * lib/nanosleep.c (rpl_nanosleep): Likewise.
14554         (siginterrupt): Delete fallback.
14555         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
14556         instead.
14557         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
14558         siginterrupt.
14559
14560         New module sigaction, for mingw.
14561         * modules/sigaction: New module...
14562         * modules/sigaction-tests: ...and its test.
14563         * m4/sigaction.m4: New file.
14564         * lib/sigaction.c: Likewise.
14565         * tests/test-sigaction.c: Likewise.
14566         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
14567         * modules/signal (Makefile.am): Likewise.
14568         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
14569         needed.
14570         * doc/posix-headers/signal.texi (signal.h): Mention provided
14571         types.
14572         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
14573         that sigaction is preferable.
14574         * doc/posix-functions/sigaction.texi (sigaction): Mention new
14575         module.
14576         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14577         sigaction.
14578
14579         Improve robustness of sigprocmask by overriding signal.
14580         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
14581         is in use.
14582         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
14583         (SIGKILL, SIGSTOP): Provide fallbacks.
14584         (rpl_signal): Implement.
14585         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
14586         signal can be called inside handlers.
14587
14588         Fix nanosleep module on mingw.
14589         * modules/nanosleep (Depends-on): Add sys_select.
14590         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
14591
14592         Fix licensing of sigprocmask.
14593         * modules/raise (License): Relicense as LGPL.
14594
14595 2008-06-21  Bruno Haible  <bruno@clisp.org>
14596
14597         * lib/propername.c (proper_name_utf8): Don't use the transliterated
14598         result if it contains question marks.
14599         Reported by Michael Geng <linux@michaelgeng.de>.
14600
14601 2008-06-19  Bruno Haible  <bruno@clisp.org>
14602
14603         Fix CVS-ism.
14604         * doc/gnulib.texi: Include updated-stamp.texi.
14605         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
14606         (updated-stamp.texi): New rule.
14607         (gnulib.info): Depend on it.
14608         * doc/.gitignore: Add updated-stamp.texi.
14609         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
14610
14611 2008-06-19  Bruno Haible  <bruno@clisp.org>
14612
14613         * doc/Makefile (gnulib.info): Update and simplify dependencies.
14614         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
14615
14616 2008-06-19  Eric Blake  <ebb9@byu.net>
14617
14618         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
14619         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
14620         Reported by Stepan Kasal.
14621
14622 2008-06-18  Bruno Haible  <bruno@clisp.org>
14623
14624         * lib/fatal-signal.c (init_fatal_signals): Add comment.
14625         Reported by Eric Blake.
14626
14627 2008-06-18  Eric Blake  <ebb9@byu.net>
14628
14629         Work around cygwin 1.5.25 strsignal bug.
14630         * tests/test-strsignal.c: Allow for const char *.
14631         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
14632
14633 2008-06-18  Simon Josefsson  <simon@josefsson.org>
14634
14635         * users.txt: Update URL to article and add author/date
14636         information.
14637
14638 2008-06-17  Bruno Haible  <bruno@clisp.org>
14639
14640         New macro gl_DISABLE_THREADS.
14641         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
14642         if the user did not pass --enable-threads or --disable-threads option.
14643         (gl_DISABLE_THREADS): New macro.
14644         Reported by Eric Blake <ebb9@byu.net>.
14645
14646 2008-06-17  Bruno Haible  <bruno@clisp.org>
14647
14648         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
14649         when the macro ignores it.
14650         Based on a patch by Eric Blake <ebb9@byu.net>.
14651
14652 2008-06-17  Bruno Haible  <bruno@clisp.org>
14653
14654         * modules/tls (License): Change to LGPLv2+.
14655         Reported by Eric Blake.
14656
14657 2008-06-17  Eric Blake  <ebb9@byu.net>
14658
14659         Simplify c-stack prerequisites.
14660         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
14661         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
14662         no longer requires <ucontext.h> to exist.  Optimize setrlimit
14663         check.
14664         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
14665         <sys/resource.h>.
14666
14667         Move c-stack test into testsuite.
14668         * modules/c-stack-tests: New file.
14669         * lib/c-stack.c [DEBUG]: Move test program...
14670         * tests/test-c-stack.c: ...into this new file.  Skip rather than
14671         fail test if sigaltstack is lacking.
14672         * tests/test-c-stack.sh: New driver file.
14673
14674 2008-06-16  Eric Blake  <ebb9@byu.net>
14675
14676         Use raise module consistently.
14677         * modules/fatal-signal (Depends-on): Add raise.
14678         * modules/sigprocmask (Depends-on): Likewise.
14679         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
14680         * lib/sigprocmask.c (sigprocmask): Likewise.
14681         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
14682         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
14683
14684         Fix compliance bug in sigpending.
14685         * lib/sigprocmask.c (sigpending): Return pending array via
14686         parameter, not return value.
14687
14688 2008-06-14  Eric Blake  <ebb9@byu.net>
14689
14690         Improve obstack-printf test code.
14691         * tests/test-obstack-printf.c (test_function): Fix comment, and
14692         simplify usage of obstack_* in macros.  Add a test for coverage.
14693         Reported by Bruno Haible.
14694
14695 2008-06-14  Bruno Haible  <bruno@clisp.org>
14696
14697         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
14698         array size as a constant, not as a const variable.
14699         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
14700         AC_USE_SYSTEM_EXTENSIONS.
14701         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
14702         Test whether the obstack_printf function actually exists.
14703         * modules/obstack-printf (Depends-on): Add extensions.
14704         (Include): Remove obstack.h.
14705         * modules/obstack-printf-posix (Depends-on): Add extensions.
14706         (Include): Remove obstack.h.
14707
14708 2008-06-13  Eric Blake  <ebb9@byu.net>
14709
14710         Add obstack-printf and obstack-printf-posix modules.
14711         * modules/obstack-printf: New file.
14712         * modules/obstack-printf-posix: Likewise.
14713         * MODULES.html.sh (Misc): Mention them.
14714         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
14715         Likewise.
14716         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
14717         Likewise.
14718         * modules/stdio (Makefile.am): Accomodate new modules.
14719         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
14720         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
14721         Declare.
14722         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
14723         functions.
14724         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
14725         (gl_REPLACE_OBSTACK_PRINTF): New macros
14726         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
14727         * tests/test-obstack-printf.c: New file.
14728         * modules/obstack-printf-tests: Likewise.
14729         * modules/obstack-printf-posix-tests: Likewise.
14730
14731 2008-06-11  Bruno Haible  <bruno@clisp.org>
14732
14733         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
14734         * lib/open.c: Include errno.h.
14735         (open): Fail when attempting to write to a file that has a trailing
14736         slash.
14737         * tests/test-open.c (main): Test against trailing slash bug.
14738         * doc/posix-functions/open.texi: Mention the trailing slash bug.
14739
14740 2008-06-10  Bruno Haible  <bruno@clisp.org>
14741
14742         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
14743         for $? to work inside the trap command, with various /bin/sh-s.
14744         * tests/test-vc-list-files-cvs.sh: Likewise.
14745
14746 2008-06-10  Bruno Haible  <bruno@clisp.org>
14747
14748         * lib/acl-internal.h: Don't include gettext.h here.
14749         * lib/set-mode-acl.c: Include gettext.h here.
14750         * lib/copy-acl.c: Likewise.
14751
14752 2008-06-10  Bruno Haible  <bruno@clisp.org>
14753
14754         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
14755         * lib/wait-process.c (wait_subprocess): Likewise.
14756         * lib/execute.h (execute): Add termsigp argument.
14757         * lib/execute.c (execute): Likewise.
14758         * lib/csharpcomp.c (compile_csharp_using_pnet,
14759         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
14760         * lib/csharpexec.c (execute_csharp_using_pnet,
14761         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
14762         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
14763         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
14764         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
14765         is_jikes_present): Update.
14766         * lib/javaexec.c (execute_java_class): Update.
14767         * lib/javaversion.c (execute_and_read_line): Update.
14768         * NEWS: Document the changes.
14769         Reported by Eric Blake.
14770
14771 2008-06-10  Eric Blake  <ebb9@byu.net>
14772
14773         Add missing include.
14774         * tests/test-strstr.c (includes): Add <signal.h>.
14775         * tests/test-strcasestr.c (includes): Likewise.
14776         * tests/test-memmem.c (includes): Likewise.
14777
14778 2008-06-10  Bruno Haible  <bruno@clisp.org>
14779
14780         * lib/wait-process.c (wait_subprocess): Add an assertion.
14781
14782 2008-06-10  Bruno Haible  <bruno@clisp.org>
14783
14784         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
14785
14786 2008-06-10  Bruno Haible  <bruno@clisp.org>
14787
14788         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
14789         using alarm().
14790         * tests/test-strcasestr.c (main): Likewise.
14791         * tests/test-strstr.c (main): Likewise.
14792
14793 2008-06-09  Bruno Haible  <bruno@clisp.org>
14794
14795         Work around the Solaris 10 ACE ACLs ABI change.
14796         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
14797         declare if ACL_NO_TRIVIAL is present.
14798         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
14799         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
14800         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
14801         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
14802         define if ACL_NO_TRIVIAL is present.
14803         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
14804         and use the current ABI.
14805         (file_has_acl): Use same #if condition as elsewhere.
14806         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
14807         in use, and use the current ABI.
14808         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
14809         Reported by Jim Meyering.
14810
14811 2008-06-09  Eric Blake  <ebb9@byu.net>
14812
14813         Work around environments that (stupidly) ignore SIGALRM.
14814         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
14815         before using alarm().
14816         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
14817         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
14818         Reported by Ian Beckwith <ianb@erislabs.net>.
14819
14820         Produce autobuild blurb earlier in log.
14821         * modules/autobuild (configure.ac-early): Move AB_INIT here.
14822
14823 2008-06-09  Jim Meyering  <meyering@redhat.com>
14824         and OndÅ™ej Vašík  <ovasik@redhat.com>
14825
14826         utimens.c: correct kernel bug work-around
14827         OndÅ™ej Vašík found that the invalid return value of 280 indicates
14828         failure, not success, and the kernel bug we're trying to work
14829         around affects not just the utimensat call, but also the fallback
14830         futimens call.
14831         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
14832         not success.
14833         [HAVE_FUTIMENS]: Use the same work-around, here.
14834
14835 2008-06-09  Jim Meyering  <meyering@redhat.com>
14836
14837         add more guards around definition of ACE_-related code
14838         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
14839         ALLOW and ACE_OWNER are also defined.
14840
14841 2008-06-08  Bruno Haible  <bruno@clisp.org>
14842
14843         * lib/acl-internal.h: Add me as co-author.
14844         * lib/file-has-acl.c: Likewise.
14845         * lib/set-mode-acl.c: Likewise.
14846         * lib/copy-acl.c: Likewise.
14847
14848 2008-06-08  Bruno Haible  <bruno@clisp.org>
14849
14850         Add support for AIX ACLs.
14851         * lib/acl-internal.h (acl_nontrivial): New declaration.
14852         * lib/file-has-acl.c (acl_nontrivial): New function.
14853         (file_has_acl): Add implementation using AIX 4 ACL API.
14854         * lib/set-mode-acl.c (qset_acl): Likewise.
14855         * lib/copy-acl.c (qcopy_acl): Likewise.
14856
14857 2008-06-08  Bruno Haible  <bruno@clisp.org>
14858
14859         Add support for HP-UX ACLs.
14860         * lib/acl-internal.h (acl_nontrivial): New declaration.
14861         * lib/file-has-acl.c (acl_nontrivial): New function.
14862         (file_has_acl): Add implementation using HP-UX 11 ACL API.
14863         * lib/set-mode-acl.c (qset_acl): Likewise.
14864         * lib/copy-acl.c (qcopy_acl): Likewise.
14865
14866 2008-06-08  Bruno Haible  <bruno@clisp.org>
14867
14868         Add support for Cygwin ACLs.
14869         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
14870         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
14871         the chmod_or_fchmod call.
14872         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
14873
14874 2008-06-08  Bruno Haible  <bruno@clisp.org>
14875
14876         Fix bug with setuid modes in Solaris 10+ code.
14877         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
14878         succeeded, when the mode contains some special bits.
14879
14880 2008-06-08  Bruno Haible  <bruno@clisp.org>
14881
14882         Add support for Solaris 7..10 ACLs.
14883         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
14884         declarations.
14885         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
14886         functions.
14887         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
14888         * lib/set-mode-acl.c (qset_acl): Likewise.
14889         * lib/copy-acl.c (qcopy_acl): Likewise.
14890
14891 2008-06-08  Bruno Haible  <bruno@clisp.org>
14892
14893         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
14894         declaration.
14895         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
14896         (acl_access_nontrivial): Remove MacOS X case.
14897         (file_has_acl): Use acl_extended_nontrivial.
14898         * lib/copy-acl.c (qcopy_acl): Likewise.
14899
14900 2008-06-08  Bruno Haible  <bruno@clisp.org>
14901
14902         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
14903
14904 2008-06-08  Jim Meyering  <meyering@redhat.com>
14905
14906         * modules/acl (Maintainer): Add Bruno Haible.
14907
14908 2008-06-07  Bruno Haible  <bruno@clisp.org>
14909
14910         Improve support for Tru64 ACLs.
14911         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
14912         ACL on OSF/1.
14913
14914 2008-06-07  Bruno Haible  <bruno@clisp.org>
14915
14916         Add support for MacOS X ACLs.
14917         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
14918         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
14919         * lib/set-mode-acl.c (qset_acl): Likewise.
14920         * lib/copy-acl.c (qcopy_acl): Likewise.
14921
14922 2008-06-07  Bruno Haible  <bruno@clisp.org>
14923
14924         Fix memory leak introduced on 2008-05-22.
14925         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
14926         use.
14927
14928 2008-06-07  Bruno Haible  <bruno@clisp.org>
14929
14930         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
14931         to construct an empty ACL.
14932
14933 2008-06-07  Bruno Haible  <bruno@clisp.org>
14934
14935         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
14936         precisely.
14937         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
14938
14939 2008-06-07  Bruno Haible  <bruno@clisp.org>
14940
14941         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
14942         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
14943
14944 2008-06-07  Bruno Haible  <bruno@clisp.org>
14945
14946         * doc/posix-functions/_setjmp.texi: Explain the use of this function
14947         regardless of POSIX.
14948         * doc/posix-functions/_longjmp.texi: Likewise.
14949         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
14950         SystemV platform in this case.
14951
14952 2008-06-06  Eric Blake  <ebb9@byu.net>
14953
14954         Document abort() bugs.
14955         * doc/posix-functions/abort.texi (abort): Mention anomalies.
14956
14957         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
14958         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
14959         sigsetjmp.
14960         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
14961         siglongjmp, but only as a macro.
14962         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
14963         is obsolete.
14964         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
14965
14966         Tweak documentation to cover cygwin argz bugs.
14967         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
14968         argz bug fix; no code change needed since no cygwin releases
14969         occurred between the last fix and the bug being tested.
14970         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
14971         module and recently fixed cygwin bugs.
14972         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
14973         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
14974         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
14975         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
14976         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
14977         Likewise.
14978         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
14979         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
14980         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
14981         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
14982         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
14983         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
14984         Likewise.
14985
14986         Avoid gcc warning on cygwin.
14987         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
14988         !ACL_NO_TRIVIAL]: Avoid unused variable.
14989
14990 2008-06-05  Eric Blake  <ebb9@byu.net>
14991
14992         Be tolerant of UNKNOWN version in gnulib-tool test dir.
14993         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
14994         git-version-gen fails to come up with a version.
14995         Reported by Simon Josefsson.
14996
14997 2008-06-05  Jim Meyering  <meyering@redhat.com>
14998             Paul Eggert  <eggert@cs.ucla.edu>
14999
15000         utimens.c: work around a probable Linux kernel bug
15001         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
15002         appears to be a kernel bug that causes utimensat to return 280
15003         instead of 0, indicating success.
15004
15005 2008-06-04  Bruno Haible  <bruno@clisp.org>
15006
15007         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
15008         2008-06-01 commit.
15009
15010 2008-06-04  Bruno Haible  <bruno@clisp.org>
15011
15012         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
15013         * lib/file-has-acl.c (acl_access_nontrivial): New function.
15014         (file_has_acl): Use it. Save errno afterwards.
15015         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
15016
15017 2008-06-03  Bruno Haible  <bruno@clisp.org>
15018
15019         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
15020         draft code. Simplify #ifs.
15021         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
15022         Put Solaris code after POSIX-draft code. Fix comments regarding
15023         Solaris 10, HP-UX. Mention Cygwin.
15024         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
15025
15026 2008-06-03  Eric Blake  <ebb9@byu.net>
15027
15028         Provide fallback for older kernels.
15029         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
15030         Provide runtime fallback if kernel lacks support.
15031         Reported by Mike Frysinger.
15032
15033 2008-06-02  Bruno Haible  <bruno@clisp.org>
15034
15035         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
15036         it exists.
15037
15038 2008-06-02  Bruno Haible  <bruno@clisp.org>
15039
15040         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
15041         * lib/copy-acl.c (qcopy_acl): Update comment.
15042
15043 2008-06-02  Bruno Haible  <bruno@clisp.org>
15044
15045         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
15046         like ACL APIs.
15047
15048 2008-06-02  Bruno Haible  <bruno@clisp.org>
15049
15050         * tests/test-file-has-acl.sh: Use different code for Cygwin.
15051         * tests/test-set-mode-acl.sh: Likewise.
15052         * tests/test-copy-acl.sh: Likewise.
15053         * tests/test-copy-file.sh: Likewise.
15054
15055 2008-06-02  Bruno Haible  <bruno@clisp.org>
15056
15057         * tests/test-file-has-acl.sh: Remove unused code.
15058
15059 2008-06-01  Bruno Haible  <bruno@clisp.org>
15060
15061         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
15062         (copy_acl): Just a wrapper around qcopy_acl that emits the error
15063         messages.
15064         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
15065
15066 2008-06-01  Bruno Haible  <bruno@clisp.org>
15067
15068         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
15069         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
15070         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
15071         APIs.
15072         * modules/acl-tests (configure.ac): Remove tests now contained in
15073         m4/acl.m4.
15074
15075 2008-06-02  Jim Meyering  <meyering@redhat.com>
15076
15077         announce-gen: use a better key-server host name
15078         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
15079         it may be more consistently reliable.  Suggested by Werner Koch
15080         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
15081
15082 2008-06-01  Bruno Haible  <bruno@clisp.org>
15083
15084         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
15085         Reported by Voroskoi Andras <voroskoi@gmail.com>.
15086
15087 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
15088
15089         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
15090
15091 2008-06-01  Bruno Haible  <bruno@clisp.org>
15092
15093         New ACL tests.
15094         * tests/test-file-has-acl.sh: New file.
15095         * tests/test-file-has-acl.c: New file.
15096         * tests/test-set-mode-acl.sh: New file.
15097         * tests/test-set-mode-acl.c: New file.
15098         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
15099         * tests/test-copy-acl.c: New file.
15100         * modules/acl-tests: New file, based on modules/copy-file-tests.
15101         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
15102         (Depends-on): Add acl-tests.
15103         (configure.ac): Remove checks.
15104         (Makefile.am): Don't create test-sameacls program here any more.
15105
15106 2008-06-01  Bruno Haible  <bruno@clisp.org>
15107
15108         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
15109         * tests/test-sameacls.c: Include progname.h.
15110         (main): Invoke set_program_name. Portability fixes for MacOS X,
15111         Solaris, HP-UX.
15112
15113 2008-06-01  Bruno Haible  <bruno@clisp.org>
15114
15115         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
15116         function.
15117         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
15118
15119 2008-06-01  Bruno Haible  <bruno@clisp.org>
15120
15121         * modules/rpmatch (Depends-on): Add strdup.
15122
15123 2008-06-01  Bruno Haible  <bruno@clisp.org>
15124
15125         * lib/pipe.c: Include unistd-safer.h.
15126         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
15127         * modules/pipe (Depends-on): Add unistd-safer.
15128
15129 2008-05-30  Simon Josefsson  <simon@josefsson.org>
15130
15131         * modules/autobuild (configure.ac): Call AB_INIT.
15132
15133 2008-05-30  Simon Josefsson  <simon@josefsson.org>
15134
15135         * tests/test-getaddrinfo.c: Don't print debug messages by default.
15136         Suggested by Bruno Haible <bruno@clisp.org>.
15137
15138 2008-05-30  Simon Josefsson  <simon@josefsson.org>
15139
15140         * tests/test-base64.c: Cast size_t to unsigned long when invoking
15141         printf.  Use %lu instead of %d.  Reported by Bruno Haible
15142         <bruno@clisp.org>.
15143
15144 2008-05-29  Eric Blake  <ebb9@byu.net>
15145
15146         Prefer new POSIX 200x interfaces over futimesat.
15147         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
15148         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
15149         when available.
15150         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
15151
15152 2008-05-28  Bruno Haible  <bruno@clisp.org>
15153
15154         * modules/stpcpy (License): Change to LGPLv2+.
15155         Requested by David Lutterkort <dlutter@redhat.com>.
15156
15157 2008-05-27  Bruno Haible  <bruno@clisp.org>
15158
15159         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
15160         current mingw.
15161         Reported by Jose E. Marchesi <jemarch@gnu.org>.
15162
15163 2008-05-27  Bruno Haible  <bruno@clisp.org>
15164
15165         * modules/iconv_open (Link): New section, from module 'iconv'.
15166         * modules/striconv (Link): Likewise.
15167         * modules/striconveh (Link): Likewise.
15168         * modules/xstriconv (Link): Likewise.
15169         * modules/unicodeio (Link): Likewise.
15170         * modules/propername (Link): Likewise.
15171         Reported by Jim Meyering.
15172
15173 2008-05-26  Jim Meyering  <meyering@redhat.com>
15174
15175         sha256: do not artificially restrict buffer length to be < 2^32
15176         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
15177         uint32_t to size_t.
15178         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
15179         to match.
15180
15181         avoid unaligned access errors, e.g., on sparc
15182         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
15183         direct access through a possibly-unaligned uint64* pointer.
15184         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
15185         direct access through a possibly-unaligned uint32* pointer.
15186         Prompted by this patch from Tom "spot" Callaway:
15187         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
15188
15189         sha512.c: fix typo in comment
15190         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
15191
15192 2008-05-25  Bruno Haible  <bruno@clisp.org>
15193
15194         * lib/set-mode-acl.c: Renamed from lib/acl.c.
15195         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
15196         (Makefile.am): Update lib_SOURCES.
15197
15198 2008-05-25  Bruno Haible  <bruno@clisp.org>
15199
15200         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
15201
15202 2008-05-25  Jim Meyering  <meyering@redhat.com>
15203
15204         useless-if-before-free: freed expr may have white-space differences
15205         * build-aux/useless-if-before-free: Recognize cases in which the
15206         freed expression differs from the tested one in embedded white
15207         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
15208         $1 was used, so we can't make any regexp shy.  Improved tests now
15209         detect this.
15210
15211         useless-if-before-free: accept white space in the expression.
15212         * build-aux/useless-if-before-free: For now, any white space
15213         in the expression must be identical in the free argument.
15214
15215         useless-if-before-free: efficiency tweak
15216         * build-aux/useless-if-before-free: Make the expression-matching
15217         regexp "shy".
15218         Make the *outer* regexp shy, not the expr-matching one.
15219
15220         update code-in-comment to accept cast of free arg
15221         * build-aux/useless-if-before-free: Update regexp.
15222
15223 2008-05-25  Bruno Haible  <bruno@clisp.org>
15224
15225         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
15226         * modules/copy-file-tests (Files, Makefile.am): Update.
15227         * tests/test-copy-file.c (func_test_copy): Update.
15228
15229 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
15230
15231         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
15232
15233 2008-05-23  Bruno Haible  <bruno@clisp.org>
15234
15235         Improve support for ACLs on OSF/1.
15236         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
15237         Remove fallback for unknown flavors of ACLs.
15238
15239 2008-05-22  Bruno Haible  <bruno@clisp.org>
15240
15241         Add support for ACLs on OSF/1.
15242         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
15243         replacements.
15244         (acl_free_text): New macro fallback.
15245         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
15246         acl_free.
15247         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
15248         acl_free_text function. Require AC_C_INLINE.
15249
15250 2008-05-22  Bruno Haible  <bruno@clisp.org>
15251
15252         Make copy_acl work on MacOS X 10.5.
15253         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
15254         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
15255         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
15256         If MODE_INSIDE_ACL, don't assume that every system has the same text
15257         representation for ACLs as FreeBSD.
15258         * lib/copy-acl.c (copy_acl): Add support for platforms with
15259         !MODE_INSIDE_ACL.
15260         * lib/file-has-acl.c (file_has_acl): Likewise.
15261         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
15262         FreeBSD, MacOS X, or IRIX, respectively.
15263
15264 2008-05-22  Bruno Haible  <bruno@clisp.org>
15265
15266         * lib/acl.h: Don't include <sys/acl.h>.
15267         (GETACLCNT): Move fallback to lib/acl-internal.h.
15268         * lib/acl-internal.h: Include <sys/acl.h> here.
15269         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
15270
15271 2008-05-22  Bruno Haible  <bruno@clisp.org>
15272
15273         Split off copy_acl function to separate file.
15274         * lib/copy-acl.c: New file, extracted from lib/acl.c.
15275         * lib/acl.c (copy_acl): Moved function to separate file.
15276         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
15277         * modules/acl (Files): Add lib/copy-acl.c.
15278         (Makefiles.am): Augment lib_SOURCES.
15279
15280 2008-05-22  Bruno Haible  <bruno@clisp.org>
15281
15282         * modules/copy-file-tests: New file.
15283         * tests/test-copy-file.sh: New file.
15284         * tests/test-copy-file.c: New file.
15285         * tests/test-copy-file-sameacls.c: New file.
15286
15287 2008-05-22  Eric Blake  <ebb9@byu.net>
15288
15289         Avoid gcc warning.
15290         * tests/test-memcmp.c (main): Pass NULL indirectly.
15291
15292 2008-05-21  Bruno Haible  <bruno@clisp.org>
15293
15294         Add reference doc about ACLs.
15295         * doc/acl-resources.txt: New file.
15296         * doc/acl-cygwin.txt: New file.
15297
15298 2008-05-21  Bruno Haible  <bruno@clisp.org>
15299
15300         Avoid one more warning from gcc.
15301         * lib/vasnprintf.c (IF_LINT): Update comments.
15302         (VASNPRINTF): Use it also for the 'prefix' array initializer.
15303
15304 2008-05-21  Jim Meyering  <meyering@redhat.com>
15305
15306         avoid a warning from gcc
15307         * lib/vasnprintf.c (IF_LINT): Define.
15308         (scale10_round_decimal_long_double):
15309         Use it to avoid a "may be used uninitialized" warning.
15310         (scale10_round_decimal_double): Likewise.
15311
15312 2008-05-21  Simon Josefsson  <simon@josefsson.org>
15313
15314         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
15315         declared.
15316
15317 2008-05-20  Bruno Haible  <bruno@clisp.org>
15318
15319         * tests/test-memcmp.c (main): Test also the sign of the result. Test
15320         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
15321
15322 2008-05-20  Simon Josefsson  <simon@josefsson.org>
15323
15324         * modules/memcmp-tests: New file.
15325         * tests/test-memcmp.c: New file.
15326
15327 2008-05-19  Bruno Haible  <bruno@clisp.org>
15328
15329         * modules/propername (Notice, configure.ac): Put quoted "..." into
15330         --keyword option.
15331         * lib/propername.h: Update comments accordingly.
15332         Reported by Eric Blake.
15333
15334 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
15335
15336         * modules/getpass-gnu (Depends-on): Add fseeko.
15337
15338 2008-05-19  Simon Josefsson  <simon@josefsson.org>
15339
15340         * modules/base64-tests: New file.
15341
15342 2008-05-19  Bo Borgerson <gigabo@gmail.com>
15343
15344         * lib/base64.c (base64_decode_ctx): If a decode context structure
15345         was passed in use it to ignore newlines.  If a context structure
15346         was _not_ passed in, continue to treat newlines as garbage (this
15347         is the historical behavior).  Formerly base64_decode.
15348         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
15349         takes a decode context structure.
15350         * lib/base64.h (base64_decode): Macro for four-argument calls.
15351         (base64_decode_alloc): Likewise.
15352         * lib/base64.c (base64_decode_ctx): If a decode context structure
15353         was passed in use it to ignore newlines.  If a context structure
15354         was _not_ passed in, continue to treat newlines as garbage (this
15355         is the historical behavior).  Formerly base64_decode.
15356         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
15357         takes a decode context structure.
15358         * lib/base64.h (base64_decode): Macro for four-argument calls.
15359         (base64_decode_alloc): Likewise.
15360
15361 2008-05-19  Jim Meyering  <meyering@redhat.com>
15362
15363         avoid a warning from gcc
15364         * lib/trim.c (IF_LINT): Define.
15365         (trim2): Use it to avoid a "may be used uninitialized" warning.
15366
15367         Fix doc typo.
15368         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
15369
15370 2008-05-19  Bruno Haible  <bruno@clisp.org>
15371
15372         * doc/glibc-functions/getpass.texi: Document limits of other
15373         implementations.
15374
15375 2008-05-19  Simon Josefsson  <simon@josefsson.org>
15376             Bruno Haible <bruno@clisp.org>
15377
15378         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
15379
15380 2008-05-18  Bruno Haible  <bruno@clisp.org>
15381
15382         * modules/propername: New file, from GNU gettext.
15383         * lib/propername.h: New file, from GNU gettext.
15384         * lib/propername.c: New file, from GNU gettext.
15385         * MODULES.html.sh (Internationalization functions): Add propername.
15386
15387 2008-05-16  Jim Meyering  <meyering@redhat.com>
15388             Bruno Haible  <bruno@clisp.org>
15389
15390         Avoid some warnings from "gcc -Wshadow".
15391         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
15392
15393 2008-05-15  Eric Blake  <ebb9@byu.net>
15394
15395         Extend previous patch to cygwin 1.7.0.
15396         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
15397         fast implementation in cygwin >= 1.7.0.
15398         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
15399         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
15400
15401 2008-05-15  Bruno Haible  <bruno@clisp.org>
15402
15403         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
15404         implementation in glibc >= 2.9.
15405         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
15406         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
15407
15408 2008-05-15  Bruno Haible  <bruno@clisp.org>
15409
15410         * MODULES.html.sh (Internationalization functions): Remove linebreak.
15411         (Unicode string functions): Add unilbrk/*.
15412         Reported by Karl Berry.
15413
15414 2008-05-15  Eric Blake  <ebb9@byu.net>
15415
15416         Fix violation of <stdbool.h> replacement in regex.
15417         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
15418         * lib/regexec.c (re_search_internal): Likewise.
15419         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
15420
15421 2008-05-15  Jim Meyering  <meyering@redhat.com>
15422
15423         avoid distracting test output when git or cvs is not found
15424         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
15425         * tests/test-vc-list-files-git.sh: Likewise.
15426
15427 2008-05-15  Eric Blake  <ebb9@byu.net>
15428
15429         Glibc finally accepted the memmem speedup code, bugzilla #5514.
15430         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
15431         glibc version.
15432         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
15433         * doc/posix-functions/strstr.texi (strstr): Likewise.
15434         * lib/str-two-way.h (MAX): Sychronize with glibc.
15435
15436 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
15437
15438         * lib/regcomp.c (optimize_utf8): Add a note on why we test
15439         opr.ctx_type.
15440         (calc_first): Initialize constraint field.
15441         (duplicate_node_closure): Use it instead of special casing ANCHORS.
15442         Fix grammar.
15443         (duplicate_node): Merge constraint field for all node types.
15444         (calc_eclosure_iter): Look at constraint field for all node types.
15445         * lib/regex_internal.c (create_cd_newstate): Don't look at
15446         opr.ctx_type.
15447
15448 2008-05-14  Bruno Haible  <bruno@clisp.org>
15449
15450         Help GCC to do better code generation.
15451         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
15452         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
15453         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
15454         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
15455         Declare with attribute 'malloc' if supported.
15456
15457 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
15458
15459         use "echo STR|wc -c" rather than unportable "expr length STR"
15460         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
15461         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
15462
15463 2008-05-14  Jim Meyering  <meyering@redhat.com>
15464
15465         use dd ibs=$n count=1 ... rather than less-portable head -c$n
15466         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
15467         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
15468         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
15469         via Collin Lasse.
15470
15471 2008-05-14  Eric Blake  <ebb9@byu.net>
15472
15473         Avoid quadratic growth in gl_LIBSOURCES.
15474         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
15475         Suggested by Bruno Haible.
15476
15477         Test xmemdup0.
15478         * modules/xmemdup0-tests: New file.
15479         * tests/test-xmemdup0.c: Likewise.
15480
15481 2008-05-13  Eric Blake  <ebb9@byu.net>
15482
15483         Split xmemdup0 into its own module.
15484         * modules/xmemdup0: New file.
15485         * lib/xmemdup0.h: Likewise.
15486         * lib/xmemdup0.c: Likewise.
15487         * MODULES.html.sh (Memory management functions): Add xmemdup0.
15488         * lib/xalloc.h (xmemdup0): Remove.
15489         * lib/xmalloc.c (xmemdup0): Likewise.
15490
15491 2008-05-13  Eric Blake  <ebb9@byu.net>
15492             Bruno Haible  <bruno@clisp.org>
15493
15494         Reduce number of forks required during autoconf.
15495         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
15496         and gl_LIBSOURCES_DIR.
15497         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
15498         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
15499         m4_syscmd per file.
15500         <m4_foreach_w>: Move...
15501         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
15502
15503 2008-05-13  Eric Blake  <ebb9@byu.net>
15504
15505         * gnulib-tool: Fix various comment typos.
15506
15507 2008-05-12  Bruno Haible  <bruno@clisp.org>
15508
15509         Tailor the linebreaking algorithm.
15510         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
15511
15512 2008-05-12  Bruno Haible  <bruno@clisp.org>
15513
15514         Update to Unicode 5.0.0.
15515         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
15516         LBP_JV, LBP_JT. Redistribute values.
15517         (unilbrk_table): Change size.
15518         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
15519         Unicode TR#14 rev. 22.
15520         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
15521         LBP_JV, LBP_JT. Redistribute values.
15522         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
15523         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
15524         Update.
15525         * lib/unilbrk/lbrkprop1.h: Regenerated.
15526         * lib/unilbrk/lbrkprop2.h: Regenerated.
15527         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
15528         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
15529         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
15530         Likewise.
15531         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
15532         Likewise.
15533         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
15534         result.
15535         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
15536         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
15537         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
15538         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
15539         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
15540         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
15541
15542 2008-05-11  Bruno Haible  <bruno@clisp.org>
15543
15544         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
15545
15546 2008-05-11  Bruno Haible  <bruno@clisp.org>
15547
15548         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
15549         * modules/unilbrk/gen-lbrk: New file.
15550
15551 2008-05-11  Bruno Haible  <bruno@clisp.org>
15552
15553         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
15554         * m4/sha512.m4 (gl_SHA512): Likewise.
15555
15556 2008-05-11  Jim Meyering  <meyering@redhat.com>
15557
15558         New modules: crypto/sha256, crypto/sha512 (from coreutils)
15559         * modules/crypto/sha256: New file.
15560         * modules/crypto/sha512: Likewise.
15561         * lib/sha256.c: Likewise.
15562         * lib/sha256.h: Likewise.
15563         * lib/sha512.c: Likewise.
15564         * lib/sha512.h: Likewise.
15565         * lib/u64.h: Likewise.
15566         * m4/sha256.m4: Likewise.
15567         * m4/sha512.m4: Likewise.
15568         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
15569
15570 2008-05-10  Bruno Haible  <bruno@clisp.org>
15571
15572         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
15573         (Input/Output <stdio.h>): Add xprintf.
15574         (Signal handling <signal.h>): Add strsignal.
15575         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
15576         (Core language properties): Add func.
15577         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
15578         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
15579         strings.
15580         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
15581         (Input/output): New section.
15582         (File system functions): Add openat-die, stat-macros.
15583         (Networking functions): Add sockets.
15584         (Unicode string functions): Add unictype/*.
15585         (Support for building libraries and executables): Add gperf.
15586         (Support for building documentation): Add agpl-3.0.
15587         (Misc): Add nocrash.
15588
15589 2008-05-10  Bruno Haible  <bruno@clisp.org>
15590
15591         * modules/unictype/gen-ctype: New file.
15592
15593 2008-05-10  Jim Meyering  <meyering@redhat.com>
15594
15595         Make chdir-safer.c more efficient on a system with no symlinks.
15596         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
15597         also if ELOOP is zero.  Suggested by Bruno Haible.
15598
15599         Make chdir-safer.c slightly safer.
15600         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
15601         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
15602
15603         Avoid compile failure on systems without ELOOP (like mingw).
15604         * lib/chdir-safer.c (ELOOP): Define if not already defined.
15605         Reported by Bruno Haible.
15606
15607 2008-05-10  Bruno Haible  <bruno@clisp.org>
15608
15609         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
15610         (is_utf8_encoding): Use a case-insensitive comparison.
15611         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
15612         streq.
15613
15614 2008-05-10  Bruno Haible  <bruno@clisp.org>
15615
15616         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
15617         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
15618         * lib/unilbrk/ulc-common.h (iconv_string_length,
15619         iconv_string_keeping_offsets): Remove declarations.
15620         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
15621         Don't include <iconv.h>, streq.h, xsize.h.
15622         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
15623         conversion.
15624         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
15625         <iconv.h>, streq.h, xsize.h.
15626         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
15627         conversion.
15628         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
15629         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
15630         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
15631         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
15632
15633 2008-05-10  Bruno Haible  <bruno@clisp.org>
15634
15635         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
15636         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
15637
15638         * modules/unilbrk/u32-width-linebreaks-tests: New file.
15639         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
15640
15641         * modules/unilbrk/u16-width-linebreaks-tests: New file.
15642         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
15643
15644         * modules/unilbrk/u8-width-linebreaks-tests: New file.
15645         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
15646
15647         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
15648         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
15649
15650         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
15651         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
15652
15653         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
15654         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
15655
15656         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
15657         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
15658
15659 2008-05-10  Bruno Haible  <bruno@clisp.org>
15660
15661         Split up 'linebreak' module.
15662         * lib/unilbrk.h: New file, based on lib/linebreak.h.
15663         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
15664         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
15665         modifications.
15666         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
15667         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
15668         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
15669         lib/linebreak.c.
15670         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
15671         lib/linebreak.c.
15672         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
15673         lib/linebreak.c.
15674         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
15675         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
15676         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
15677         lib/linebreak.c.
15678         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
15679         lib/linebreak.c.
15680         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
15681         lib/linebreak.c.
15682         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
15683         lib/linebreak.c.
15684         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
15685         lib/linebreak.c.
15686         * modules/unilbrk/base: New file.
15687         * modules/unilbrk/tables: New file.
15688         * modules/unilbrk/u8-possible-linebreaks: New file.
15689         * modules/unilbrk/u16-possible-linebreaks: New file.
15690         * modules/unilbrk/u32-possible-linebreaks: New file.
15691         * modules/unilbrk/ulc-common: New file.
15692         * modules/unilbrk/ulc-possible-linebreaks: New file.
15693         * modules/unilbrk/u8-width-linebreaks: New file.
15694         * modules/unilbrk/u16-width-linebreaks: New file.
15695         * modules/unilbrk/u32-width-linebreaks: New file.
15696         * modules/unilbrk/ulc-width-linebreaks: New file.
15697         * lib/linebreak.h: Remove file.
15698         * lib/linebreak.c: Remove file.
15699         * m4/linebreak.m4: Remove file.
15700         * modules/linebreak: Remove file.
15701         * NEWS: Mention the changes.
15702
15703 2008-05-09  Eric Blake  <ebb9@byu.net>
15704
15705         Add xmemdup0.
15706         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
15707         implementation.
15708         * lib/xmalloc.c (xmemdup0): New C implementation.
15709
15710 2008-05-08  Bruno Haible  <bruno@clisp.org>
15711
15712         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
15713
15714 2008-05-07  Eric Blake  <ebb9@byu.net>
15715
15716         Support cross-compilation of <wctype.h>.
15717         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
15718         AC_CACHE_CHECK.
15719
15720 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
15721
15722         * build-aux/vc-list-files: Add support for bzr.
15723
15724 2008-05-03  Jim Meyering  <meyering@redhat.com>
15725
15726         avoid failed assertion with tight malloc
15727         * tests/test-getndelim2.c: Correct an off-by-one assertion.
15728
15729 2008-05-03  Simon Josefsson  <simon@josefsson.org>
15730
15731         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
15732         are needed from arpa/inet.h.
15733         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
15734         Reported by Bruno Haible.
15735
15736 2008-05-02  Jim Meyering  <meyering@redhat.com>
15737
15738         avoid compilation error on FreeBSD 6
15739         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
15740
15741 2008-05-01  Jim Meyering  <meyering@redhat.com>
15742
15743         useless-if-before-free: correct --help's exit status description
15744         * build-aux/useless-if-before-free (usage): Like grep, exit 0
15745         for one or more matches, etc.  Reported by Bruno Haible.
15746
15747         vc-list-files: make the stand-alone gnulib test work
15748         * modules/vc-list-files-tests (configure.ac):
15749         Define and AC_SUBST abs_aux_dir.
15750         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
15751         $(abs_top_srcdir) to each script and having each of them
15752         duplicate the work of setting PATH, set PATH here, using
15753         the new variable, abs_aux_dir instead.
15754         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
15755         * tests/test-vc-list-files-git.sh: Likewise.
15756         Reported by Bruno Haible.
15757
15758 2008-05-01  Bruno Haible  <bruno@clisp.org>
15759
15760         * lib/getndelim2.c (getndelim2): Fix newsize computation during
15761         reallocation. Rename 'done' to 'found_delimiter'.
15762
15763 2008-05-01  Jim Meyering  <meyering@redhat.com>
15764
15765         vc-list-files: accommodate /bin/sh like the one from Solaris 10
15766         * build-aux/vc-list-files: Use `...`, not $(...).
15767
15768 2008-04-30  Jim Meyering  <meyering@redhat.com>
15769
15770         add tests for vc-list-files
15771         * modules/vc-list-files-tests: New module.
15772         * tests/test-vc-list-files-cvs.sh: New file.
15773         * tests/test-vc-list-files-git.sh: New file.
15774
15775         avoid a warning from gcc
15776         * lib/getndelim2.c (IF_LINT): Define.
15777         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
15778
15779         vc-list-files: work properly with build-aux/cvsu, too
15780         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
15781         to all cvs-based clauses.
15782
15783         vc-list-files: work properly in the CVS+awk case, too
15784         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
15785
15786         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
15787         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
15788         take more than one file argument, so .  Add quotes, just in case $dir
15789         ever contains a shell meta-character.  Prompted by Soren Hansen in
15790         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
15791
15792 2008-04-29  Eric Blake  <ebb9@byu.net>
15793
15794         Optimize getndelim2 to use block operations when possible.
15795         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
15796         freadseek, and memchr2.
15797         * lib/getndelim2.c (getndelim2): Use them for block reads.
15798
15799 2008-04-29  Bruno Haible  <bruno@clisp.org>
15800
15801         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
15802         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
15803         * modules/inet_ntop (Depends-on): Add extensions.
15804         * modules/inet_pton (Depends-on): Likewise.
15805         Reported by Simon Josefsson.
15806
15807 2008-04-29  Jim Meyering  <meyering@redhat.com>
15808
15809         When the is more than one match in a block, match all of them.
15810         * build-aux/useless-if-before-free: Iterate through each block
15811         until there are no more matches.
15812
15813         Fix broken useless-if-before-free script.
15814         * build-aux/useless-if-before-free: Fix typo: missing "?" after
15815         the expression to match cast of argument to free-like function.
15816
15817 2008-04-29  Eric Blake  <ebb9@byu.net>
15818
15819         Use new header.
15820         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
15821
15822 2008-04-29  Jim Meyering  <meyering@redhat.com>
15823
15824         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
15825         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
15826         by gnulib to exist and to declare e.g., inet_ntop.
15827         Don't include "inet_ntop.h", now removed.
15828
15829         * m4/arpa_inet_h.m4: Remove trailing blanks.
15830
15831 2008-04-29  Eric Blake  <ebb9@byu.net>
15832
15833         Silence valgrind on safe reads beyond potential array bounds.
15834         * lib/rawmemchr.valgrind: New file.
15835         * lib/strchrnul.valgrind: Likewise.
15836         * modules/rawmemchr (Files): Distribute new file.
15837         * modules/strchrnul (Files): Likewise.
15838         Suggested by Bruno Haible.
15839
15840 2008-04-29  Bruno Haible  <bruno@clisp.org>
15841
15842         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
15843         (inet_ntop, inet_pton): Change portability warning's wording.
15844         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
15845         Invoke gl_CHECK_NEXT_HEADERS.
15846         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
15847         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
15848         set ARPA_INET_H.
15849         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
15850         * modules/arpa_inet (Description): No longer only for systems that
15851         lack it.
15852         (Depends-on): Add include_next.
15853         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
15854         HAVE_ARPA_INET_H.
15855
15856 2008-04-29  Jim Meyering  <meyering@redhat.com>
15857
15858         * modules/mkdir (License): Re-license as LGPLv2+.
15859
15860 2008-04-29  Bruno Haible  <bruno@clisp.org>
15861
15862         * modules/rawmemchr (Maintainer): Set to Eric.
15863         * modules/strchrnul (Maintainer): Likewise.
15864
15865 2008-04-29  Simon Josefsson  <simon@josefsson.org>
15866
15867         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
15868         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
15869
15870         * modules/arpa_inet (arpa/inet.h): Use them.
15871
15872 2008-04-28  Eric Blake  <ebb9@byu.net>
15873
15874         Test getndelim2.
15875         * modules/getndelim2-tests: New file.
15876         * tests/test-getndelim2.c: Likewise.
15877         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
15878         stream.
15879         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
15880
15881         * MODULES.html.sh: Document new module.
15882
15883 2008-04-20  Bruno Haible  <bruno@clisp.org>
15884
15885         * lib/c-stack.c (die): Use raise.
15886         * modules/c-stack (Depends-on): Add raise.
15887
15888 2008-04-28  Bruno Haible  <bruno@clisp.org>
15889
15890         Expect rpmatch to be declared.
15891         * lib/yesno.c (rpmatch): Remove declaration.
15892
15893         Declare rpmatch.
15894         * lib/stdlib.in.h (rpmatch): New declaration.
15895         * lib/rpmatch.c: Include <stdlib.h> first.
15896         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
15897         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
15898         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
15899         HAVE_RPMATCH.
15900         * modules/rpmatch (Depends-on): Add stdlib, extensions.
15901         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
15902         (Include): Set to <stdlib.h>.
15903         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
15904         HAVE_RPMATCH.
15905         * NEWS: Document the change.
15906
15907 2008-04-28  Bruno Haible  <bruno@clisp.org>
15908
15909         Change rpmatch to use nl_langinfo when appropriate.
15910         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
15911         (N_): New macro.
15912         (localized_pattern): New function/macro.
15913         (try): Remove match, nomatch arguments. Copy the pattern into safe
15914         memory before caching it.
15915         (rpmatch): Use localized_pattern. Add translator comments.
15916         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
15917         Suggested by Eric Blake.
15918         * modules/rpmatch (Depends-on): Add stdbool.
15919
15920 2008-04-28  Eric Blake  <ebb9@byu.net>
15921
15922         Add rawmemchr module, matching glibc.
15923         * modules/string (Makefile.am): New indicator.
15924         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
15925         * lib/string.in.h (rawmemchr): Declare when appropriate.
15926         * modules/rawmemchr: New file.
15927         * m4/rawmemchr.m4: Likewise.
15928         * lib/rawmemchr.c: Likewise.
15929         * modules/rawmemchr-tests: Likewise.
15930         * tests/test-rawmemchr.c: Likewise.
15931         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
15932         module.
15933         * modules/strchrnul (Depends-on): Add rawmemchr.
15934         * lib/strchrnul.c (strchrnul): Optimize a corner case.
15935
15936         Whitespace cleanup.
15937         * tests/test-strchrnul.c: Reindent.
15938         * lib/strchrnul.c: Likewise.
15939
15940         Optimize and test strchrnul.
15941         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
15942         * modules/strchrnul-tests: New file.
15943         * tests/test-strchrnul.c: Likewise.
15944
15945         Remove intprops dependency.
15946         * modules/memchr (Depends-on): Remove intprops.
15947         * modules/memrchr (Depends-on): Likewise.
15948         * modules/memchr2 (Depends-on): Likewise.
15949         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
15950         * lib/memrchr.c (__memrchr): Likewise.
15951         * lib/memrchr2.c (memchr2): Likewise.
15952         Reported by Simon Josefsson.
15953
15954 2008-04-28  Simon Josefsson  <simon@josefsson.org>
15955
15956         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
15957         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
15958
15959 2008-04-28  Simon Josefsson  <simon@josefsson.org>
15960
15961         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
15962
15963         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
15964
15965         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
15966
15967         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
15968         declarations.
15969         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
15970
15971         * m4/inet_pton.m4: Don't check for header files.
15972
15973         * m4/inet_ntop.m4: Don't check for header files.
15974
15975 2008-04-28  Simon Josefsson  <simon@josefsson.org>
15976
15977         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
15978         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
15979         trigger for cygwin).
15980         Reported by Bruno Haible  <bruno@clisp.org>.
15981
15982 2008-04-28  Bruno Haible  <bruno@clisp.org>
15983
15984         * doc/posix-functions/strdup.texi: Mention mingw problem.
15985
15986 2008-04-27  Bruno Haible  <bruno@clisp.org>
15987
15988         * modules/stat-time-tests (Depends-on): Add sleep.
15989         * tests/test-stat-time.c (force_unlink): New function.
15990         (cleanup): Use it.
15991         (test_mtime): Remove the ctime related tests.
15992         (test_ctime): New function, containing the ctime related tests.
15993         (main): Call test_ctime, except on native Windows platforms.
15994
15995 2008-04-27  Bruno Haible  <bruno@clisp.org>
15996
15997         * lib/rpmatch.c (rpmatch): Add some comments.
15998         Reported by James Youngman <jay@gnu.org>.
15999
16000 2008-04-27  Bruno Haible  <bruno@clisp.org>
16001
16002         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
16003         quiet NaNs.
16004
16005 2008-04-27  Bruno Haible  <bruno@clisp.org>
16006
16007         Make test-yesno.sh work on mingw.
16008         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
16009         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
16010         (main): Set stdin to binary mode.
16011         * modules/yesno-tests (Depends-on): Add binary-io.
16012
16013 2008-04-27  Bruno Haible  <bruno@clisp.org>
16014
16015         Fix 'isfinite' on x86, x86_64, ia64 platforms.
16016         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
16017         argument that lie outside the IEEE 854 domain.
16018         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
16019         (gl_ISFINITE): Use it.
16020         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
16021
16022 2008-04-27  Bruno Haible  <bruno@clisp.org>
16023
16024         Allow local renaming in config.h.
16025         * lib/memrchr.c (memrchr): Don't undefine outside libc.
16026
16027 2008-04-27  Bruno Haible  <bruno@clisp.org>
16028
16029         * lib/memchr.c (__memchr): Change type of 'i'.
16030         * lib/memchr2.c (memchr2): Likewise.
16031
16032 2008-04-26  Eric Blake  <ebb9@byu.net>
16033         and Bruno Haible  <bruno@clisp.org>
16034
16035         Optimize and test memrchr.
16036         * modules/memrchr (Depends-on): Add intprops.
16037         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
16038         * modules/memrchr-tests: New file.
16039         * tests/test-memrchr.c: New file.
16040
16041 2008-04-26  Bruno Haible  <bruno@clisp.org>
16042
16043         Add tentative support for DragonFly BSD.
16044         * lib/stdio-impl.h: Add macros for DragonFly BSD.
16045         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
16046         fp.
16047         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
16048         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
16049         * lib/fpurge.c (fpurge): Likewise.
16050         * lib/freadable.c (freaadable): Likewise.
16051         * lib/freadahead.c (freadahead): Likewise.
16052         * lib/freading.c (freading): Likewise.
16053         * lib/freadptr.c (freadptr): Likewise.
16054         * lib/freadseek.c (freadptrinc): Likewise.
16055         * lib/fseeko.c (fseeko): Likewise.
16056         * lib/fseterr.c (fseterr): Likewise.
16057         * lib/fwritable.c (fwritable): Likewise.
16058         * lib/fwriting.c (fwriting): Likewise.
16059
16060 2008-04-26  Bruno Haible  <bruno@clisp.org>
16061
16062         * lib/stdio-impl.h: New file.
16063         * lib/fbufmode.c: Include stdio-impl.h.
16064         (fbufmode): Use fp_, remove redundant #defines.
16065         * lib/fflush.c: Include stdio-impl.h.
16066         (clear_ungetc_buffer): Remove redundant #defines.
16067         * lib/fpurge.c: Include stdio-impl.h.
16068         (fpurge): Remove redundant #defines.
16069         * lib/freadable.c: Include stdio-impl.h.
16070         (freadable): Remove redundant #defines.
16071         * lib/freadahead.c: Include stdio-impl.h.
16072         (freadahead): Remove redundant #defines.
16073         * lib/freading.c: Include stdio-impl.h.
16074         (freading): Remove redundant #defines.
16075         * lib/freadptr.c: Include stdio-impl.h.
16076         (freadptr): Remove redundant #defines.
16077         * lib/freadseek.c: Include stdio-impl.h.
16078         (freadptrinc): Remove redundant #defines.
16079         * lib/fseeko.c: Include stdio-impl.h.
16080         (rpl_fseeko): Remove redundant #defines.
16081         * lib/fseterr.c: Include stdio-impl.h.
16082         (fseterr): Remove redundant #defines.
16083         * lib/fwritable.c: Include stdio-impl.h.
16084         (fwritable: Remove redundant #defines.
16085         * lib/fwriting.c: Include stdio-impl.h.
16086         (fwriting): Remove redundant #defines.
16087         * modules/fbufmode (Files): Add lib/stdio-impl.h.
16088         * modules/fflush (Files): Likewise.
16089         * modules/fpurge (Files): Likewise.
16090         * modules/freadable (Files): Likewise.
16091         * modules/freadahead (Files): Likewise.
16092         * modules/freading (Files): Likewise.
16093         * modules/freadptr (Files): Likewise.
16094         * modules/freadseek (Files): Likewise.
16095         * modules/fseeko (Files): Likewise.
16096         * modules/fseterr (Files): Likewise.
16097         * modules/fwritable (Files): Likewise.
16098         * modules/fwriting (Files): Likewise.
16099
16100 2008-04-26  Bruno Haible  <bruno@clisp.org>
16101
16102         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
16103         restore_seek_optimization, update_fpos_cache): New functions, extracted
16104         from rpl_fflush.
16105         (rpl_fflush): Use them.
16106         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
16107         (gl_REPLACE_FFLUSH): Use it.
16108
16109 2008-04-26  Bruno Haible  <bruno@clisp.org>
16110
16111         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
16112         on Solaris.
16113         * tests/test-xstrtoimax.sh: Likewise.
16114         * tests/test-xstrtoumax.sh: Likewise.
16115         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16116
16117 2008-04-26  Bruno Haible  <bruno@clisp.org>
16118
16119         * modules/memchr-tests: New file.
16120         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
16121
16122 2008-04-26  Eric Blake  <ebb9@byu.net>
16123             Bruno Haible  <bruno@clisp.org>
16124
16125         * lib/memchr.c: Include intprops.h.
16126         (__memchr): Optimize parallel detection of matching bytes. Rename local
16127         variables. Add explanatory comments.
16128
16129 2008-04-26  Bruno Haible  <bruno@clisp.org>
16130
16131         Fix module 'memchr', broken since 2000-10-28.
16132         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
16133
16134 2008-04-26  Bruno Haible  <bruno@clisp.org>
16135
16136         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
16137         comments.
16138
16139 2008-04-25  Eric Blake  <ebb9@byu.net>
16140
16141         Use native fstatat on cygwin 1.7.0.
16142         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
16143         first.
16144
16145 2008-04-23  Eric Blake  <ebb9@byu.net>
16146
16147         Improve memchr2 performance.
16148         * lib/memchr2.c (memchr2): Further optimize parallel detection of
16149         NUL bytes.
16150         * modules/memchr2 (Depends-on): Use intprops.h.
16151
16152 2008-04-23  Simon Josefsson  <simon@josefsson.org>
16153
16154         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
16155         an inline function instead of a CPP macro.  Patch by Ben Pfaff
16156         <blp@cs.stanford.edu>.
16157
16158 2008-04-23  Simon Josefsson  <simon@josefsson.org>
16159
16160         * lib/arpa_inet.in.h: New file.
16161
16162         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
16163         (Makefile.am): Sed in substitute header file.
16164
16165         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
16166         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
16167
16168         * modules/inet_ntop (configure.ac): Use
16169         gl_ARPA_INET_MODULE_INDICATOR.
16170
16171         * modules/inet_pton (configure.ac): Use
16172         gl_ARPA_INET_MODULE_INDICATOR.
16173
16174 2008-04-22  Jim Meyering  <meyering@redhat.com>
16175
16176         * modules/verify (License): Re-license as LGPLv2+.
16177
16178 2008-04-22  Simon Josefsson  <simon@josefsson.org>
16179
16180         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
16181         parameter to void* as per POSIX standard (MinGW uses char*).
16182
16183 2008-04-21  Bruno Haible  <bruno@clisp.org>
16184
16185         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
16186         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
16187         Define to replacements if REPLACE_ISWCNTRL is 1.
16188         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
16189         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
16190         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
16191         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
16192         what it fixes.
16193         * doc/posix-functions/iswalpha.texi: Likewise.
16194         * doc/posix-functions/iswblank.texi: Likewise.
16195         * doc/posix-functions/iswcntrl.texi: Likewise.
16196         * doc/posix-functions/iswdigit.texi: Likewise.
16197         * doc/posix-functions/iswgraph.texi: Likewise.
16198         * doc/posix-functions/iswlower.texi: Likewise.
16199         * doc/posix-functions/iswprint.texi: Likewise.
16200         * doc/posix-functions/iswpunct.texi: Likewise.
16201         * doc/posix-functions/iswspace.texi: Likewise.
16202         * doc/posix-functions/iswupper.texi: Likewise.
16203         * doc/posix-functions/iswxdigit.texi: Likewise.
16204         Reported by Alain Guibert.
16205
16206 2008-04-21  Bruno Haible  <bruno@clisp.org>
16207
16208         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
16209         Patch by Alain Guibert.
16210
16211 2008-04-21  Bruno Haible  <bruno@clisp.org>
16212
16213         Fix test failures on mingw.
16214         * tests/test-xstrtol.c (print_no_progname): New function.
16215         (main): Install it in error_print_progname hook.
16216         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
16217         * tests/test-xstrtoimax.sh: Likewise.
16218         * tests/test-xstrtoumax.sh: Likewise.
16219
16220 2008-04-21  Bruno Haible  <bruno@clisp.org>
16221
16222         Fix test failure on mingw.
16223         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
16224
16225 2008-04-21  Bruno Haible  <bruno@clisp.org>
16226
16227         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
16228         Actually assign a value.
16229
16230 2008-04-20  Bruno Haible  <bruno@clisp.org>
16231
16232         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
16233         take 2.
16234         * lib/canonicalize.c (canonicalize_file_name): Elide if the
16235         'canonicalize-lgpl' module is also used.
16236         * lib/canonicalize-lgpl.c: Undo last change.
16237         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
16238
16239 2008-04-20  Bruno Haible  <bruno@clisp.org>
16240
16241         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
16242         config.h. Provide _mkdir based fallback for mingw.
16243         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
16244         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
16245         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
16246         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
16247         rather than defining mkdir in config.h.
16248         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
16249         (gl_SYS_STAT_H_DEFAULTS): New macro.
16250         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
16251         HAVE_IO_H any more.
16252         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
16253         HAVE_DECL_MKDIR and HAVE_IO_H.
16254
16255 2008-04-20  Bruno Haible  <bruno@clisp.org>
16256
16257         * lib/isapipe.c: Port to native Windows platforms.
16258
16259 2008-04-20  Bruno Haible  <bruno@clisp.org>
16260
16261         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
16262
16263 2008-04-21  Eric Blake  <ebb9@byu.net>
16264
16265         Work around preprocessors that don't handle UINTMAX_MAX.
16266         * lib/memchr2.c (memchr2): Avoid embedded #if.
16267         Reported by Alain Guibert, fix suggested by Bruno Haible.
16268
16269 2008-04-21  Simon Josefsson  <simon@josefsson.org>
16270
16271         * doc/posix-functions/strftime.texi (strftime): Explain better
16272         Windows incompatibility.  Suggested by Micah Cowan
16273         <micah@cowan.name>.
16274
16275 2008-04-20  Bruno Haible  <bruno@clisp.org>
16276
16277         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
16278         unistr/u8-mblen.
16279
16280 2008-04-20  Bruno Haible  <bruno@clisp.org>
16281
16282         Fix test failure on platforms with non-GNU iconv.
16283         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
16284         (U_TO_U8): Use it, rather than u16_to_u8.
16285         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
16286         units at the end of the input string.
16287         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
16288
16289 2008-04-20  Bruno Haible  <bruno@clisp.org>
16290
16291         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
16292         when the resulting length is 0.
16293         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
16294
16295 2008-04-20  Bruno Haible  <bruno@clisp.org>
16296
16297         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
16298         works.
16299         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
16300
16301 2008-04-20  Bruno Haible  <bruno@clisp.org>
16302
16303         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
16304         * modules/tsearch-tests (configure.ac): Test for initstate function.
16305
16306 2008-04-20  Bruno Haible  <bruno@clisp.org>
16307
16308         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
16309         for nlink_t if missing.
16310         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
16311
16312 2008-04-19  Bruno Haible  <bruno@clisp.org>
16313
16314         Work around snprintf bug on Linux libc5.
16315         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
16316         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
16317         gl_SNPRINTF_SIZE1.
16318         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
16319         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
16320         that test failed.
16321         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
16322         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
16323         * modules/snprintf (Files): Add m4/printf.m4.
16324         * modules/vsnprintf (Files): Likewise.
16325         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
16326         * doc/posix-functions/vsnprintf.texi: Likewise.
16327
16328 2008-04-19  Bruno Haible  <bruno@clisp.org>
16329
16330         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
16331         from 0.0058 to less than 10^-7.
16332
16333 2008-04-19  Bruno Haible  <bruno@clisp.org>
16334
16335         Fix rounding when a precision is given.
16336         * lib/vasnprintf.c (is_borderline): New function.
16337         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
16338         9...9x.
16339         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
16340         %e, %g.
16341         * tests/test-vasprintf-posix.c (test_function): Likewise.
16342         * tests/test-snprintf-posix.h (test_function): Likewise.
16343         * tests/test-sprintf-posix.h (test_function): Likewise.
16344         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
16345         * tests/test-printf-posix.h (test_function): Likewise.
16346         * tests/test-printf-posix.output: Update.
16347         Reported by John Darrington <john@darrington.wattle.id.au> via
16348         Ben Pfaff <blp@cs.stanford.edu>.
16349
16350 2008-04-18  Simon Josefsson  <simon@josefsson.org>
16351
16352         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
16353         Suggested by Bruno Haible <bruno@clisp.org>.
16354
16355 2008-04-17  Bruno Haible  <bruno@clisp.org>
16356
16357         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
16358         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
16359         implementation.
16360         Patch by Bruce Merry <bmerry@gmail.com>.
16361
16362 2008-04-17  Simon Josefsson  <simon@josefsson.org>
16363
16364         * doc/posix-functions/strftime.texi (strftime): Mention that %e
16365         doesn't work under Windows.
16366
16367 2008-04-16  Bruno Haible  <bruno@clisp.org>
16368
16369         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
16370         New macros.
16371         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
16372         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
16373         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
16374         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
16375         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
16376         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
16377         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
16378         macros.
16379         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
16380         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
16381         Northern Sotho, Uighur.
16382
16383 2008-04-16  Bruno Haible  <bruno@clisp.org>
16384
16385         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
16386         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
16387         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
16388         Reported by Daniel Bergström <daniel@octocode.com>.
16389
16390 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
16391             Bruno Haible  <bruno@clisp.org>
16392
16393         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
16394         function.
16395         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
16396         New functions, mostly extracted from gl_locale_name_default.
16397         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
16398
16399 2008-04-16  Eric Blake  <ebb9@byu.net>
16400
16401         Adjust strtod detection to catch glibc 2.7 bug.
16402         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
16403         Reported by John Gatewood Ham.
16404
16405 2008-04-16  Bruno Haible  <bruno@clisp.org>
16406
16407         Add tentative support for Linux libc5.
16408         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
16409         * lib/fpurge.c (fpurge): Likewise.
16410         * lib/freadable.c (freadable): Likewise.
16411         * lib/freadahead.c (freadahead): Likewise.
16412         * lib/freading.c (freading): Likewise.
16413         * lib/freadptr.c (freadptr): Likewise.
16414         * lib/freadseek.c (freadptrinc): Likewise.
16415         * lib/fseeko.c (rpl_fseeko): Likewise.
16416         * lib/fseterr.c (fseterr): Likewise.
16417         * lib/fwritable.c (fwritable): Likewise.
16418         * lib/fwriting.c (fwriting): Likewise.
16419         Reported by Alain Guibert <alguibert+bts@free.fr>.
16420
16421 2008-04-15  Bruno Haible  <bruno@clisp.org>
16422
16423         * modules/mathl (configure.ac): Define module indicator.
16424
16425 2008-04-15  Bruno Haible  <bruno@clisp.org>
16426
16427         * lib/logl.c (logl): Remove unused variables.
16428
16429 2008-04-15  Bruno Haible  <bruno@clisp.org>
16430
16431         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
16432         fails.
16433
16434 2008-04-15  Bruno Haible  <bruno@clisp.org>
16435
16436         * lib/trim.c (trim2): Fix argument of isspace() macro.
16437
16438 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
16439
16440         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
16441         to 0.
16442         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
16443
16444 2008-04-14  Bruno Haible  <bruno@clisp.org>
16445
16446         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
16447         AC_LANG_PROGRAM argument.
16448         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
16449         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
16450         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
16451         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
16452         * m4/math_h.m4 (gl_MATH_H): Likewise.
16453         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
16454         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
16455         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
16456         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
16457         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
16458         * m4/regex.m4 (gl_REGEX): Likewise.
16459         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
16460         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
16461         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
16462         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
16463         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
16464         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
16465         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
16466         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
16467
16468 2008-04-14  Jim Meyering  <meyering@redhat.com>
16469
16470         test-strtod: fix typos: s/abs/fabs/
16471         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
16472
16473 2008-04-13  Bruno Haible  <bruno@clisp.org>
16474
16475         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
16476         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
16477         module is also used and while not building the reloc-wrapper.
16478
16479 2008-04-13  Bruno Haible  <bruno@clisp.org>
16480
16481         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
16482
16483 2008-04-13  Bruno Haible  <bruno@clisp.org>
16484
16485         Fix AIX compilation failure introduced on 2008-04-02.
16486         * tests/test-frexp.c (exp): Undefine before redefining.
16487         * tests/test-frexpl.c (exp): Likewise.
16488
16489 2008-04-13  Bruno Haible  <bruno@clisp.org>
16490
16491         Work around a HP-UX stdio bug.
16492         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
16493         * tests/test-ftello.c (main): Likewise.
16494         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
16495         * doc/posix-functions/ftello.texi: Likewise.
16496
16497 2008-04-13  Bruno Haible  <bruno@clisp.org>
16498
16499         Make test-signbit pass on HP-UX/hppa.
16500         * tests/test-signbit.c (minus_zerol): New variable.
16501         (test_signbitl): Use it.
16502
16503 2008-04-13  Bruno Haible  <bruno@clisp.org>
16504
16505         Make truncl work on OSF/1 4.0.
16506         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
16507         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
16508         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
16509         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
16510         HAVE_DECL_TRUNCL.
16511         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
16512         HAVE_DECL_TRUNCL.
16513         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
16514
16515 2008-04-13  Bruno Haible  <bruno@clisp.org>
16516
16517         * lib/unictype.h: Remove trailing comma from enumeration definitions.
16518
16519 2008-04-13  Bruno Haible  <bruno@clisp.org>
16520
16521         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
16522         expression, so as to avoid HP-UX 11 cc compiler bug.
16523
16524 2008-04-13  Bruno Haible  <bruno@clisp.org>
16525
16526         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
16527
16528 2008-04-13  Bruno Haible  <bruno@clisp.org>
16529
16530         * lib/git-merge-changelog.c: Remove empty declaration outside of
16531         functions.
16532
16533 2008-04-13  Bruno Haible  <bruno@clisp.org>
16534
16535         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
16536
16537 2008-04-13  Bruno Haible  <bruno@clisp.org>
16538
16539         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
16540         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
16541         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
16542         also if it exists but lacks definitions of the SHUT_* macros.
16543         * modules/sys_socket (Description): Update.
16544         Reported by Elbert Pol <e.pol@chello.nl>.
16545
16546 2008-04-13  Bruno Haible  <bruno@clisp.org>
16547
16548         * lib/localcharset.c (OS2): Don't redefine if already defined.
16549         Reported by Elbert Pol <e.pol@chello.nl>.
16550
16551 2008-04-13  Bruno Haible  <bruno@clisp.org>
16552
16553         * lib/binary-io.h [__EMX__]: Include <io.h>.
16554         Reported by Elbert Pol <e.pol@chello.nl>.
16555
16556 2008-04-12  Bruno Haible  <bruno@clisp.org>
16557
16558         * lib/fpucw.h: Enable the definitions also for x86_64.
16559         Needed for NetBSD/x86_64.
16560         Reported by Thomas Klausner <tk@giga.or.at>.
16561
16562 2008-04-12  Bruno Haible  <bruno@clisp.org>
16563
16564         * tests/test-strtod.c: Include isnand.h.
16565         (main): Use isnand instead of isnan.
16566         Reported by Jim Meyering.
16567
16568 2008-04-12  Bruno Haible  <bruno@clisp.org>
16569
16570         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
16571         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
16572
16573 2008-04-12  Jim Meyering  <meyering@redhat.com>
16574
16575         * m4/math_h.m4 (gl_MATH_H): Fix typos.
16576
16577 2008-04-12  Bruno Haible  <bruno@clisp.org>
16578
16579         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
16580         Reported by Elbert Pol <e.pol@chello.nl>.
16581
16582 2008-04-12  Eric Blake  <ebb9@byu.net>
16583
16584         Work around Solaris 10 math.h bug.
16585         * m4/math_h.m4 (gl_MATH_H): Check for bug.
16586         (gl_MATH_H_DEFAULTS): Set up default.
16587         * modules/math (Makefile.am): Replace new indicators.
16588         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
16589         * tests/test-math.c (main): Test this.
16590         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
16591         * doc/posix-headers/math.texi (math.h): Mention bug.
16592         Reported by Nelson H. F. Beebe and Jim Meyering.
16593
16594 2008-04-11  Bruno Haible  <bruno@clisp.org>
16595
16596         Adapt to future versions of Apple GCC.
16597         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
16598         Reported by Peter O'Gorman <peter@pogma.com>.
16599
16600 2008-04-11  Bruno Haible  <bruno@clisp.org>
16601
16602         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
16603
16604 2008-04-11  Bruno Haible  <bruno@clisp.org>
16605
16606         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
16607
16608         * modules/getaddrinfo-tests (Makefile.am): Define
16609         test_getaddrinfo_LDADD.
16610
16611 2008-04-11  Bruno Haible  <bruno@clisp.org>
16612
16613         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
16614         (init): Fix syntax error.
16615         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
16616         is declared.
16617
16618 2008-04-11  Bruno Haible  <bruno@clisp.org>
16619
16620         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
16621         * modules/glob (Depends-on): Add stdbool.
16622
16623 2008-04-11  Bruno Haible  <bruno@clisp.org>
16624
16625         * lib/trim.c: Include <string.h>.
16626
16627 2008-04-11  Eric Blake  <ebb9@byu.net>
16628
16629         Avoid compile failure on OS/2.
16630         * lib/regex_internal.h (internal_function): Disable optimization
16631         on OS/2 (__EMX__), where it caused compiler error.
16632         Reported by Elbert Pol.
16633
16634 2008-04-11  Bruno Haible  <bruno@clisp.org>
16635
16636         Flush the standard error stream before aborting. Needed on mingw.
16637         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
16638         * tests/test-array_list.c (ASSERT): Likewise.
16639         * tests/test-array_oset.c (ASSERT): Likewise.
16640         * tests/test-avltree_list.c (ASSERT): Likewise.
16641         * tests/test-avltree_oset.c (ASSERT): Likewise.
16642         * tests/test-avltreehash_list.c (ASSERT): Likewise.
16643         * tests/test-binary-io.c (ASSERT): Likewise.
16644         * tests/test-byteswap.c (ASSERT): Likewise.
16645         * tests/test-c-ctype.c (ASSERT): Likewise.
16646         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
16647         * tests/test-c-strcasestr.c (ASSERT): Likewise.
16648         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
16649         * tests/test-c-strstr.c (ASSERT): Likewise.
16650         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
16651         * tests/test-canonicalize.c (ASSERT): Likewise.
16652         * tests/test-carray_list.c (ASSERT): Likewise.
16653         * tests/test-ceilf1.c (ASSERT): Likewise.
16654         * tests/test-ceilf2.c (ASSERT): Likewise.
16655         * tests/test-ceill.c (ASSERT): Likewise.
16656         * tests/test-count-one-bits.c (ASSERT): Likewise.
16657         * tests/test-fbufmode.c (ASSERT): Likewise.
16658         * tests/test-fflush2.c (ASSERT): Likewise.
16659         * tests/test-floorf1.c (ASSERT): Likewise.
16660         * tests/test-floorf2.c (ASSERT): Likewise.
16661         * tests/test-floorl.c (ASSERT): Likewise.
16662         * tests/test-fopen.c (ASSERT): Likewise.
16663         * tests/test-fpending.c (ASSERT): Likewise.
16664         * tests/test-fprintf-posix.c (ASSERT): Likewise.
16665         * tests/test-fpurge.c (ASSERT): Likewise.
16666         * tests/test-freadable.c (ASSERT): Likewise.
16667         * tests/test-freadahead.c (ASSERT): Likewise.
16668         * tests/test-freading.c (ASSERT): Likewise.
16669         * tests/test-freadptr.c (ASSERT): Likewise.
16670         * tests/test-freadptr2.c (ASSERT): Likewise.
16671         * tests/test-freadseek.c (ASSERT): Likewise.
16672         * tests/test-freopen.c (ASSERT): Likewise.
16673         * tests/test-frexp.c (ASSERT): Likewise.
16674         * tests/test-frexpl.c (ASSERT): Likewise.
16675         * tests/test-fseek.c (ASSERT): Likewise.
16676         * tests/test-fseeko.c (ASSERT): Likewise.
16677         * tests/test-fstrcmp.c (ASSERT): Likewise.
16678         * tests/test-ftell.c (ASSERT): Likewise.
16679         * tests/test-ftello.c (ASSERT): Likewise.
16680         * tests/test-func.c (ASSERT): Likewise.
16681         * tests/test-fwritable.c (ASSERT): Likewise.
16682         * tests/test-fwriting.c (ASSERT): Likewise.
16683         * tests/test-getdelim.c (ASSERT): Likewise.
16684         * tests/test-getline.c (ASSERT): Likewise.
16685         * tests/test-i-ring.c (ASSERT): Likewise.
16686         * tests/test-iconv-utf.c (ASSERT): Likewise.
16687         * tests/test-iconv.c (ASSERT): Likewise.
16688         * tests/test-isfinite.c (ASSERT): Likewise.
16689         * tests/test-isnand.c (ASSERT): Likewise.
16690         * tests/test-isnanf.c (ASSERT): Likewise.
16691         * tests/test-isnanl.h (ASSERT): Likewise.
16692         * tests/test-ldexpl.c (ASSERT): Likewise.
16693         * tests/test-linked_list.c (ASSERT): Likewise.
16694         * tests/test-linkedhash_list.c (ASSERT): Likewise.
16695         * tests/test-localename.c (ASSERT): Likewise.
16696         * tests/test-lseek.c (ASSERT): Likewise.
16697         * tests/test-mbscasecmp.c (ASSERT): Likewise.
16698         * tests/test-mbscasestr1.c (ASSERT): Likewise.
16699         * tests/test-mbscasestr2.c (ASSERT): Likewise.
16700         * tests/test-mbscasestr3.c (ASSERT): Likewise.
16701         * tests/test-mbscasestr4.c (ASSERT): Likewise.
16702         * tests/test-mbschr.c (ASSERT): Likewise.
16703         * tests/test-mbscspn.c (ASSERT): Likewise.
16704         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
16705         * tests/test-mbspbrk.c (ASSERT): Likewise.
16706         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
16707         * tests/test-mbsrchr.c (ASSERT): Likewise.
16708         * tests/test-mbsspn.c (ASSERT): Likewise.
16709         * tests/test-mbsstr1.c (ASSERT): Likewise.
16710         * tests/test-mbsstr2.c (ASSERT): Likewise.
16711         * tests/test-mbsstr3.c (ASSERT): Likewise.
16712         * tests/test-memchr2.c (ASSERT): Likewise.
16713         * tests/test-memmem.c (ASSERT): Likewise.
16714         * tests/test-open.c (ASSERT): Likewise.
16715         * tests/test-printf-frexp.c (ASSERT): Likewise.
16716         * tests/test-printf-frexpl.c (ASSERT): Likewise.
16717         * tests/test-printf-posix.c (ASSERT): Likewise.
16718         * tests/test-quotearg.c (ASSERT): Likewise.
16719         * tests/test-rbtree_list.c (ASSERT): Likewise.
16720         * tests/test-rbtree_oset.c (ASSERT): Likewise.
16721         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
16722         * tests/test-round1.c (ASSERT): Likewise.
16723         * tests/test-roundf1.c (ASSERT): Likewise.
16724         * tests/test-roundl.c (ASSERT): Likewise.
16725         * tests/test-signbit.c (ASSERT): Likewise.
16726         * tests/test-sleep.c (ASSERT): Likewise.
16727         * tests/test-snprintf-posix.c (ASSERT): Likewise.
16728         * tests/test-snprintf.c (ASSERT): Likewise.
16729         * tests/test-sprintf-posix.c (ASSERT): Likewise.
16730         * tests/test-stat-time.c (ASSERT): Likewise.
16731         * tests/test-strcasestr.c (ASSERT): Likewise.
16732         * tests/test-strerror.c (ASSERT): Likewise.
16733         * tests/test-striconv.c (ASSERT): Likewise.
16734         * tests/test-striconveh.c (ASSERT): Likewise.
16735         * tests/test-striconveha.c (ASSERT): Likewise.
16736         * tests/test-strsignal.c (ASSERT): Likewise.
16737         * tests/test-strstr.c (ASSERT): Likewise.
16738         * tests/test-strtod.c (ASSERT): Likewise.
16739         * tests/test-trunc1.c (ASSERT): Likewise.
16740         * tests/test-trunc2.c (ASSERT): Likewise.
16741         * tests/test-truncf1.c (ASSERT): Likewise.
16742         * tests/test-truncf2.c (ASSERT): Likewise.
16743         * tests/test-truncl.c (ASSERT): Likewise.
16744         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
16745         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
16746         * tests/test-vasnprintf.c (ASSERT): Likewise.
16747         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
16748         * tests/test-vasprintf.c (ASSERT): Likewise.
16749         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
16750         * tests/test-vprintf-posix.c (ASSERT): Likewise.
16751         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
16752         * tests/test-vsnprintf.c (ASSERT): Likewise.
16753         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
16754         * tests/test-wcwidth.c (ASSERT): Likewise.
16755         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
16756         * tests/test-xprintf-posix.c (ASSERT): Likewise.
16757         * tests/test-xvasprintf.c (ASSERT): Likewise.
16758         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
16759         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
16760         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
16761         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
16762         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
16763         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
16764         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
16765         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
16766         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
16767         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
16768         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
16769         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
16770         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
16771         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
16772         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
16773         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
16774         * tests/unictype/test-block_list.c (ASSERT): Likewise.
16775         * tests/unictype/test-block_of.c (ASSERT): Likewise.
16776         * tests/unictype/test-block_test.c (ASSERT): Likewise.
16777         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
16778         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
16779         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
16780         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
16781         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
16782         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
16783         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
16784         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
16785         * tests/unictype/test-combining.c (ASSERT): Likewise.
16786         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
16787         * tests/unictype/test-digit.c (ASSERT): Likewise.
16788         * tests/unictype/test-mirror.c (ASSERT): Likewise.
16789         * tests/unictype/test-numeric.c (ASSERT): Likewise.
16790         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
16791         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
16792         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
16793         * tests/unictype/test-scripts.c (ASSERT): Likewise.
16794         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
16795         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
16796         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
16797         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
16798         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
16799         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
16800         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
16801         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
16802         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
16803         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
16804         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
16805         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
16806         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
16807         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
16808         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
16809         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
16810         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
16811         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
16812         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
16813         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
16814         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
16815         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
16816         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
16817         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
16818         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
16819         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
16820         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
16821         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
16822         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
16823         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
16824         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
16825         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
16826         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
16827         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
16828         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
16829         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
16830         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
16831         Reported by Eric Blake.
16832
16833 2008-04-11  Bruno Haible  <bruno@clisp.org>
16834
16835         * lib/wchar.in.h: Tweak comment.
16836
16837 2008-04-11  Bruno Haible  <bruno@clisp.org>
16838
16839         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
16840         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
16841         gl_COMMON.
16842         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
16843
16844 2008-04-11  Bruno Haible  <bruno@clisp.org>
16845
16846         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
16847
16848 2008-04-11  Simon Josefsson  <simon@josefsson.org>
16849
16850         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
16851         of attempting to use non-existing /dev/*random.  Based on patch
16852         from Adam Strzelecki <ono@java.pl> in
16853         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
16854
16855 2008-04-08  Bruno Haible  <bruno@clisp.org>
16856
16857         Add tentative support for emx+gcc.
16858         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
16859         * lib/fpurge.c (fpurge): Likewise.
16860         * lib/freadable.c (freadable): Likewise.
16861         * lib/freadahead.c (freadahead): Likewise.
16862         * lib/freading.c (freading): Likewise.
16863         * lib/freadptr.c (freadptr): Likewise.
16864         * lib/freadseek.c (freadptrinc): Likewise.
16865         * lib/fseeko.c (rpl_fseeko): Likewise.
16866         * lib/fseterr.c (fseterr): Likewise.
16867         * lib/fwritable.c (fwritable): Likewise.
16868         * lib/fwriting.c (fwriting): Likewise.
16869         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
16870
16871 2008-04-09  Eric Blake  <ebb9@byu.net>
16872
16873         Avoid some autoconf warnings.
16874         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
16875         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
16876         * m4/afs.m4 (gl_AFS): Likewise.
16877         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
16878         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
16879         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
16880         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
16881         (gl_INTEGER_TYPE_SUFFIX): Likewise.
16882         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
16883         (AC_CHECK_DECLS_ONCE): Likewise.
16884         Rename file...
16885         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
16886         gnulib-tool requires autoconf 2.59 or better.
16887         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
16888
16889 2008-04-08  Eric Blake  <ebb9@byu.net>
16890
16891         Use 'git describe --match' if present (added in git 1.5.5).
16892         * build-aux/git-version-gen: Limit result to tags that match 'v*'
16893         if possible.
16894
16895 2008-04-08  Bruno Haible  <bruno@clisp.org>
16896
16897         Add tentative support for OpenServer.
16898         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
16899         _ptr, _cnt.
16900         * lib/fpurge.c (fpurge): Likewise.
16901         * lib/freadable.c (freadable): Likewise.
16902         * lib/freadahead.c (freadahead): Likewise.
16903         * lib/freading.c (freading): Likewise.
16904         * lib/freadptr.c (freadptr): Likewise.
16905         * lib/freadseek.c (freadptrinc): Likewise.
16906         * lib/fseeko.c (rpl_fseeko): Likewise.
16907         * lib/fseterr.c (fseterr): Likewise.
16908         * lib/fwritable.c (fwritable): Likewise.
16909         * lib/fwriting.c (fwriting): Likewise.
16910         Reported by Roger Cornelius <rac@tenzing.org> and
16911         Brian K. White <brian@aljex.com>.
16912
16913 2008-04-06  Jim Meyering  <meyering@redhat.com>
16914
16915         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
16916
16917 2008-04-06  Bruno Haible  <bruno@clisp.org>
16918
16919         Avoid possible error with non-ASCII bytes in UTF-8 locales.
16920         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
16921         * tests/test-printf-posix.sh: Likewise.
16922         * tests/test-vfprintf-posix.sh: Likewise.
16923         * tests/test-vprintf-posix.sh: Likewise.
16924         * tests/test-xprintf-posix.sh: Likewise.
16925
16926 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16927
16928         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
16929         hide error from 'ls', needed on OS/2.
16930         Report by Elbert Pol <elbert.pol@gmail.com>.
16931
16932 2008-04-04  Eric Blake  <ebb9@byu.net>
16933
16934         Make test-fseeko.c failures meaningful.
16935         * tests/test-fseeko.c: Print line number on failure.
16936         * tests/test-fseek.c: Likewise.
16937         Reported by Nelson H. F. Beebe.
16938
16939         Improve strtod bug detection check.
16940         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
16941         required for Solaris 10.
16942         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
16943
16944 2008-04-04  Bruno Haible  <bruno@clisp.org>
16945
16946         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
16947         by m4/setenv.m4.
16948
16949 2008-04-03  Eric Blake  <ebb9@byu.net>
16950
16951         Ensure sane .version contents.
16952         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
16953         version string.
16954         * build-aux/git-version-gen: Improve documentation.
16955
16956         Make GNU make output nicer.
16957         * top/GNUmakefile [!_have-Makefile]: Add dependency on
16958         MAKECMDGOALS to enforce message for all command line targets.  Set
16959         srcdir for use in maint.mk.
16960
16961         Another maintainer tweak.
16962         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
16963         a target that regenerates version.
16964
16965 2008-04-03  Jim Meyering  <meyering@redhat.com>
16966
16967         vc-list-files: don't cause coreutils "make po-check" failure
16968         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
16969
16970 2008-04-03  Eric Blake  <ebb9@byu.net>
16971
16972         Allow VPATH usage of vc-list-files.
16973         * build-aux/vc-list-files (scriptversion): Add timestamp.
16974         (options): Add --help, --version, -C.
16975         (CVS): Support installed cvsu.
16976
16977 2008-04-02  Bruno Haible  <bruno@clisp.org>
16978
16979         Avoid some "statement with no effect" warnings from gcc.
16980         * tests/test-wctype.c (main): Explicitly ignore unused values.
16981         Reported by Jim Meyering.
16982
16983 2008-04-02  Jim Meyering  <meyering@redhat.com>
16984
16985         Avoid some warnings from "gcc -Wshadow".
16986         * tests/test-frexp.c (exp): Define to a different identifier.
16987         * tests/test-frexpl.c (exp): Likewise.
16988
16989 2008-04-03  Jim Meyering  <meyering@redhat.com>
16990
16991         bootstrap: remove dangling *.[ch] symlinks from lib
16992         * build-aux/bootstrap [dangling symlink removal]: Move find's
16993         -depth option to precede all others, to avoid a warning.
16994         Remove *.[ch] files too, and from "$source_base" (usually lib/).
16995
16996 2008-04-02  Bruno Haible  <bruno@clisp.org>
16997
16998         Avoid some warnings from "gcc -Wshadow".
16999         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
17000         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
17001         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
17002         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
17003         Reported by Jim Meyering.
17004
17005 2008-04-01  Bruno Haible  <bruno@clisp.org>
17006
17007         Fix test to work on IRIX 6.5 with cc.
17008         * tests/test-math.c (numeric_equal): New function.
17009         (main): Use it.
17010
17011 2008-04-01  Bruno Haible  <bruno@clisp.org>
17012
17013         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
17014
17015 2008-04-01  Bruno Haible  <bruno@clisp.org>
17016
17017         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
17018         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
17019         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
17020         (Depends-on): Remove math.
17021
17022         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
17023         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
17024         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
17025         (Depends-on): Remove math.
17026
17027         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
17028         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
17029         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
17030         (Depends-on): Remove math.
17031         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
17032         (Depends-on): Remove math.
17033
17034         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
17035         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
17036         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
17037         (Depends-on): Remove math.
17038         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
17039         (Depends-on): Remove math.
17040
17041         * tests/test-round1.c: Include nan.h.
17042         (main): Use NaNd instead of NAN.
17043         * modules/round-tests (Files): Add tests/nan.h.
17044
17045         * tests/test-trunc1.c: Include nan.h.
17046         (main): Use NaNd instead of NAN.
17047         * modules/trunc-tests (Files): Add tests/nan.h.
17048
17049         * tests/test-roundf1.c: Include nan.h.
17050         (main): Use NaNf instead of NAN.
17051         * modules/roundf-tests (Files): Add tests/nan.h.
17052
17053         * tests/test-truncf1.c: Include nan.h.
17054         (main): Use NaNf instead of NAN.
17055         * modules/truncf-tests (Files): Add tests/nan.h.
17056
17057         * tests/test-ceilf1.c: Include nan.h.
17058         (main): Use NaNf instead of NAN.
17059         * modules/ceilf-tests (Files): Add tests/nan.h.
17060
17061         * tests/test-floorf1.c: Include nan.h.
17062         (main): Use NaNf instead of NAN.
17063         * modules/floorf-tests (Files): Add tests/nan.h.
17064
17065         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
17066         (main): Use NaNf instead of NAN.
17067         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
17068
17069         * tests/test-isnand.c: Include nan.h instead of <math.h>.
17070         (main): Use NaNd instead of NAN.
17071         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
17072
17073         * tests/test-frexp.c: Include nan.h.
17074         (main): Use NaNd instead of NAN.
17075         * modules/frexp-tests (Files): Add tests/nan.h.
17076
17077         * lib/isnan.c: Don't include <math.h>.
17078         (FUNC): Don't use NAN macro.
17079         * modules/isnand-nolibm (Depends-on): Remove math.
17080         * modules/isnanf-nolibm (Depends-on): Remove math.
17081         * modules/isnanl (Depends-on): Remove math.
17082         * modules/isnanl-nolibm (Depends-on): Remove math.
17083
17084         * tests/nan.h: New file.
17085
17086 2008-04-01  Eric Blake  <ebb9@byu.net>
17087
17088         Fix typos.
17089         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
17090         values to be the right type.
17091
17092         For now, cater to gnulib strtod inaccuracies.
17093         * tests/test-strtod.c (main): Allow 1-ulp error on expected
17094         fractional results.  While not as nice from a QoI perspective, it
17095         is a quicker patch than correctly implementing decimal to binary
17096         rounding.
17097
17098 2008-03-31  Eric Blake  <ebb9@byu.net>
17099
17100         Guarantee a definition of NAN.
17101         * lib/math.in.h (NAN): Define if missing.
17102         * tests/test-math.c (main): Test it.
17103         * doc/posix-headers/math.texi (math.h): Document this.
17104         * lib/isnan.c (rpl_isnand): Use it.
17105         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
17106         * tests/test-floorf1.c (NaN): Likewise.
17107         * tests/test-frexp.c (NaN): Likewise.
17108         * tests/test-isnand.c (NaN): Likewise.
17109         * tests/test-isnanf.c (NaN): Likewise.
17110         * tests/test-round1.c (NaN): Likewise.
17111         * tests/test-roundf1.c (NaN): Likewise.
17112         * tests/test-snprintf-posix.h (NaN): Likewise.
17113         * tests/test-sprintf-posix.h (NaN): Likewise.
17114         * tests/test-trunc1.c (NaN): Likewise.
17115         * tests/test-truncf1.c (NaN): Likewise.
17116         * tests/test-vasnprintf-posix.c (NaN): Likewise.
17117         * tests/test-vasprintf-posix.c (NaN): Likewise.
17118         * modules/isnand-nolibm (Depends-on): Add math.
17119         * modules/isnanf-nolibm (Depends-on): Likewise.
17120         * modules/isnanl (Depends-on): Likewise.
17121         * modules/isnanl-nolibm (Depends-on): Likewise.
17122         * modules/snprintf-posix-tests (Depends-on): Likewise.
17123         * modules/sprintf-posix-tests (Depends-on): Likewise.
17124         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
17125         * modules/vsprintf-posix-tests (Depends-on): Likewise.
17126         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
17127         * modules/vasprintf-posix-tests (Depends-on): Likewise.
17128
17129 2008-03-31  Bruno Haible  <bruno@clisp.org>
17130
17131         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
17132         * doc/posix-functions/strtod.texi: Likewise.
17133
17134 2008-03-31  Bruno Haible  <bruno@clisp.org>
17135
17136         * tests/test-strtod.c (main): Don't use C99 syntax.
17137
17138 2008-03-31  Bruno Haible  <bruno@clisp.org>
17139
17140         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
17141         Reported by Eric Blake.
17142
17143 2008-03-31  Jim Meyering  <meyering@redhat.com>
17144
17145         Don't compare actual signbit return values.
17146         * tests/test-strtod.c (main): Rather, compare only their
17147         zero/non-zero nature.
17148
17149 2008-03-31  Eric Blake  <ebb9@byu.net>
17150
17151         More strtod documentation.
17152         * doc/posix-functions/strtod.texi (strtod): Interpret more test
17153         failures as distinct bugs.
17154
17155 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
17156
17157         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
17158         Problem reported by Erik Benada in
17159         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
17160
17161 2008-03-30  Bruno Haible  <bruno@clisp.org>
17162
17163         * tests/test-strtod.c: Add comments about which assertion fails on which
17164         platform.
17165         * doc/posix-functions/strtod.texi: Add info about many more platforms.
17166
17167 2008-03-30  Eric Blake  <ebb9@byu.net>
17168
17169         Test signbit behavior on zeros.
17170         * tests/test-signbit.c (test_signbitf): Add tests for zero.
17171         (test_signbitd, test_signbitl): Likewise.
17172
17173         More strtod touchups.
17174         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
17175         sign of negative underflow, for now.  Use .5, not .1.
17176         * doc/posix-functions/strtod.texi (strtod): Mention these
17177         limitations.
17178         Reported by Jim Meyering.
17179
17180 2008-03-30  Bruno Haible  <bruno@clisp.org>
17181
17182         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
17183         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
17184
17185 2008-03-30  Bruno Haible  <bruno@clisp.org>
17186
17187         Avoid failure when attempting to return empty iconv results on some
17188         platforms.
17189         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
17190         allocation, don't report ENOMEM when the resulting string is empty.
17191
17192 2008-03-30  Bruno Haible  <bruno@clisp.org>
17193
17194         Fix buffer overrun.
17195         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
17196         Don't consider the width for tmp_length. Check count against tmp_length
17197         before doing the padding. Ensure enough allocation during padding.
17198
17199 2008-03-30  Eric Blake  <ebb9@byu.net>
17200
17201         strtod touchups.
17202         * lib/strtod.c (strtod): Avoid compiler warnings.
17203         Reported by Jim Meyering.
17204
17205 2008-03-30  Bruno Haible  <bruno@clisp.org>
17206
17207         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
17208         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
17209         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
17210         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
17211         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
17212         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
17213         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
17214         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
17215
17216         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
17217         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
17218         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
17219         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
17220         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
17221         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
17222         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
17223         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
17224
17225         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
17226         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
17227         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
17228         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
17229         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
17230         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
17231         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
17232         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
17233
17234         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
17235         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
17236
17237         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
17238         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
17239
17240         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
17241         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
17242
17243         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
17244         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
17245         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
17246
17247         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
17248         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
17249         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
17250
17251         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
17252         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
17253         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
17254
17255         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
17256         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
17257         * modules/vasprintf (Depends-on): Add EOVERFLOW.
17258
17259         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
17260         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
17261         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
17262         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
17263         (Depends-on): Add EOVERFLOW.
17264         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
17265         (Depends-on): Add EOVERFLOW.
17266         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
17267         (Depends-on): Add EOVERFLOW.
17268         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
17269         (Depends-on): Add EOVERFLOW.
17270         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
17271         (Depends-on): Add EOVERFLOW.
17272         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
17273         (Depends-on): Add EOVERFLOW.
17274         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
17275         (Depends-on): Add EOVERFLOW.
17276         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
17277         (Depends-on): Add EOVERFLOW.
17278
17279         * lib/sprintf.c (EOVERFLOW): Remove fallback.
17280         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
17281         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
17282
17283         * lib/snprintf.c (EOVERFLOW): Remove fallback.
17284         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
17285         * modules/snprintf (Depends-on): Add EOVERFLOW.
17286
17287         * lib/poll.c (EOVERFLOW): Remove fallback.
17288         * modules/poll (Depends-on): Add EOVERFLOW.
17289
17290         * lib/getugroups.c (EOVERFLOW): Remove fallback.
17291         * modules/getugroups (Depends-on): Add EOVERFLOW.
17292
17293         * lib/getdelim.c (EOVERFLOW): Remove fallback.
17294         * modules/getdelim (Depends-on): Add EOVERFLOW.
17295
17296         * lib/ftell.c (EOVERFLOW): Remove fallback.
17297         * modules/ftell (Depends-on): Add EOVERFLOW.
17298
17299         * lib/fprintf.c (EOVERFLOW): Remove fallback.
17300         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
17301         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
17302
17303         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
17304
17305         * modules/EOVERFLOW-tests: New file.
17306         * tests/test-EOVERFLOW.c: New file.
17307
17308         * modules/EOVERFLOW: New file.
17309         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
17310
17311 2008-03-30  Bruno Haible  <bruno@clisp.org>
17312
17313         Fix bug introduced on 2007-06-10.
17314         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
17315         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
17316
17317 2008-03-30  Bruno Haible  <bruno@clisp.org>
17318
17319         Improve freadseek's efficiency after ungetc.
17320         * lib/freadseek.c: Include freadahead.h.
17321         (freadptrinc): New function, extracted from freadseek.
17322         (freadseek): Use it in a loop. Use freadahead to determine the number
17323         of loop iterations.
17324         * modules/freadseek (Depends-on): Add freadahead.
17325         (configure.ac): Require AC_C_INLINE.
17326
17327 2008-03-30  Bruno Haible  <bruno@clisp.org>
17328
17329         * lib/freadseek.c (freadseek): Don't ignore the return value of
17330         freadptr.
17331
17332 2008-03-29  Eric Blake  <ebb9@byu.net>
17333
17334         Add hex float support.
17335         * modules/strtod (Depends-on): Add c-ctype.
17336         (Link): Mention POW_LIB.
17337         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
17338         whitespace between 'e' and exponent.
17339         * tests/test-strtod.c (main): Enable hex float tests.
17340         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
17341         now provides.
17342
17343         Document various strtod bugs, with some fixes.
17344         * doc/posix-functions/strtod.texi (strtod): Document bugs with
17345         "-0x", "inf", "nan", and hex constants.
17346         * doc/posix-functions/atof.texi (atof): Likewise.
17347         * modules/stdlib (Makefile.am): Support strtod.
17348         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
17349         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
17350         detect additional strtod bugs.
17351         * lib/stdlib.in.h (rpl_strtod): Add declarations.
17352         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
17353         bool where appropriate.  Parse 'inf' and 'nan'.
17354         * tests/test-strtod.c: New file.
17355         * modules/strtod (Depends-on): Add stdbool, stdlib.
17356         (configure.ac): Turn on module indicator.
17357         * modules/strtod-tests: New module.
17358
17359 2008-03-29  Eric Blake  <ebb9@byu.net>
17360
17361         Fix ftell on mingw.
17362         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
17363         * modules/ftell-tests (Depends-on): Add binary-io.
17364         * modules/ftello-tests (Depends-on): Likewise.
17365         * tests/test-ftell.c (main): Enhance test to cover behavior after
17366         ungetc.  Enforce binary mode.
17367         * tests/test-ftello.c (main): Likewise.
17368
17369         Pass test-freadseek on cygwin.
17370         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
17371         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
17372         ungetc buffer.
17373
17374         * tests/test-fflush2.c (main): Fix typo.
17375
17376 2008-03-29  Bruno Haible  <bruno@clisp.org>
17377
17378         * tests/test-fflush2.c (main): Temporarily disable the contents of
17379         this test.
17380         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
17381         Reported by Eric Blake.
17382
17383 2008-03-28  Simon Josefsson  <simon@josefsson.org>
17384
17385         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
17386         (GC_SHA224_DIGEST_SIZE): Add.
17387
17388         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
17389         (gc_hash_digest_length): Likewise.
17390         (gc_hash_buffer): Likewise.
17391
17392 2008-03-25  Bruno Haible  <bruno@clisp.org>
17393
17394         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
17395         detail which gettext release to use.
17396         Reported by Simon Josefsson.
17397
17398 2008-03-26  Jim Meyering  <meyering@redhat.com>
17399
17400         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
17401         * modules/gnumakefile (clean-GNUmakefile): Also, use
17402         test ... && ... || : syntax rather than if-then ... fi.
17403
17404         gnumakefile: Don't double-quote-expand $(VPATH) value.
17405         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
17406
17407 2008-03-24  Eric Blake  <ebb9@byu.net>
17408
17409         Alter GNUmakefile to install into top directory.
17410         * modules/maintainer-makefile: Split, and add dependency...
17411         * modules/gnumakefile: to this new module.
17412         * build-aux/GNUmakefile: Move...
17413         * top/GNUmakefile: ...here.
17414         * build-aux/maint.mk: Move...
17415         * top/maint.mk: ...here.
17416         * MODULES.html.sh (Support for maintaining...): Document new
17417         module.
17418
17419 2008-03-23  Bruno Haible  <bruno@clisp.org>
17420
17421         * gnulib-tool: New options --vc-files, --no-vc-files.
17422         (func_usage): Document them.
17423         (vc_files): New variable.
17424         (func_import): Consider vc_files.
17425         (func_create_testdir): Set vc_files to empty.
17426         Suggested by Jim Meyering and Karl Berry.
17427
17428 2008-03-23  Bruno Haible  <bruno@clisp.org>
17429
17430         Fix regex compilation error on HP-UX 11.
17431         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
17432         * modules/regex (Files): Add m4/mbstate_t.m4.
17433         Reported by Ton Voon <ton.voon@altinity.com>.
17434
17435 2008-03-23  Bruno Haible  <bruno@clisp.org>
17436
17437         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
17438
17439 2008-03-23  Eric Blake  <ebb9@byu.net>
17440             Bruno Haible  <bruno@clisp.org>
17441
17442         Install files from top/ in the destination directory.
17443         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
17444         augmentation also for the files from top/.
17445         (func_import, func_create_testdir): Rewrite file names:
17446         top/filename -> filename.
17447
17448 2008-03-23  Bruno Haible  <bruno@clisp.org>
17449
17450         Tweak "gnulib --version" output.
17451         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
17452
17453 2008-03-23  Bruno Haible  <bruno@clisp.org>
17454
17455         Tweak "gnulib --version" output.
17456         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
17457         rather than contents of ChangeLog, when possible.
17458
17459 2008-03-21  Eric Blake  <ebb9@byu.net>
17460
17461         More --version tweaks.
17462         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
17463         date of last ChangeLog entry.
17464
17465 2008-03-21  Jim Meyering  <meyering@redhat.com>
17466
17467         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
17468
17469 2008-03-20  Eric Blake  <ebb9@byu.net>
17470
17471         VPATH fix.
17472         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
17473
17474 2008-03-20  Simon Josefsson  <simon@josefsson.org>
17475
17476         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
17477         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
17478
17479 2008-03-20  Eric Blake  <ebb9@byu.net>
17480
17481         Sync GNUmakefile with coreutils.
17482         * build-aux/GNUmakefile (have-Makefile): Rename...
17483         (_have-Makefile): ...to this, for namespace consideration.
17484         (GNUmakefile.cfg): Include, if present.
17485         (_autoreconf): Define a default.
17486         (_is-dist-target): New rule for rebuilds to pick up intra-release
17487         version.
17488         (maint-cfg.mk): Rename...
17489         (cfg.mk): ...to this.
17490
17491 2008-03-18  Jim Meyering  <meyering@redhat.com>
17492
17493         New script and module: mktempd
17494         * MODULES.html.sh (maint+release support): Add mktempd.
17495         * build-aux/mktempd: New file.
17496         * modules/mktempd: New file.
17497
17498 2008-03-15  Jim Meyering  <meyering@redhat.com>
17499
17500         Undo last change.
17501         * lib/sha1.c, lib/md5.c: 63 != ~63.
17502         Reported by Andreas Schwab.
17503
17504         sha1.c, md5.c: Hoist a redundant expression.
17505         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
17506         "ctx->buflen" only once, before calling *_process_block.
17507         * lib/md5.c (md5_process_bytes): Likewise.
17508
17509 2008-03-14  Eric Blake  <ebb9@byu.net>
17510
17511         Bump copyright year in files generated by gnulib-tool.
17512         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
17513         gnulib-tool, rather than hard-coding it.
17514
17515         Fix 'gnulib-tool --version' output to work with git.
17516         * gnulib-tool (func_gnulib_dir): New function, extracted from...
17517         (startup): ...here.
17518         (func_version): Use it to invoke git-version-gen, rather than
17519         relying on CVS keyword expansion.  Modernize wording.
17520         (cvsdatestamp, last_checkin_date, version): Kill unused
17521         variables.
17522
17523 2008-03-12  Jim Meyering  <meyering@redhat.com>
17524
17525         Recognize optional cast of the argument to free.
17526         * build-aux/useless-if-before-free: Update regexps.
17527
17528         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
17529
17530 2008-03-11  Bruno Haible  <bruno@clisp.org>
17531
17532         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
17533         by a single package.
17534         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
17535         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
17536         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
17537         Reported by Sam Steingold <sds@gnu.org>.
17538
17539 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
17540
17541         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
17542         repositories.
17543
17544 2008-03-11  Bruno Haible  <bruno@clisp.org>
17545
17546         Avoid conflicts between local macro definitions.
17547         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
17548         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
17549
17550 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
17551             Bruno Haible  <bruno@clisp.org>
17552
17553         Make va_copy work with some version of xlc on AIX 5.1.
17554         * lib/stdarg.in.h: New file.
17555         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
17556         On AIX, use a <stdarg.h> file substitute.
17557         * modules/stdarg (Files): Add lib/stdarg.in.h.
17558         (Depends-on): Add include_next.
17559         (Makefile.am): Build a stdarg.h substitute if requested.
17560         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
17561
17562 2008-03-10  Bruno Haible  <bruno@clisp.org>
17563
17564         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
17565         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
17566         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
17567
17568 2008-03-10  Bruno Haible  <bruno@clisp.org>
17569
17570         * modules/stdlib (Depends-on): Add include_next, remove
17571         absolute-header.
17572
17573 2008-03-09  Bruno Haible  <bruno@clisp.org>
17574
17575         * lib/freadahead.h (freadahead): Document more precisely.
17576         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
17577         the sum of both buffer sizes.
17578         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
17579         * NEWS: Document the change.
17580
17581 2008-03-09  Bruno Haible  <bruno@clisp.org>
17582
17583         Extend freadptr to return also the buffer size.
17584         * lib/freadptr.h (freadptr): Add sizep argument.
17585         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
17586         (freadptr): Add sizep argument. Determine buffer size like freadahead
17587         does.
17588         * tests/test-freadptr.c: Don't include freadahead.h.
17589         (main): Adapt for new calling convention of freadptr.
17590         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
17591         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
17592         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
17593         tests/test-freadptr2.sh.
17594         (Depends): Remove freadahead.
17595         (TESTS): Add test-freadptr2.sh.
17596         (check_PROGRAMS): Add test-freadptr2.
17597
17598 2008-03-09  Bruno Haible  <bruno@clisp.org>
17599
17600         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
17601         Report and solution by Simon Josefsson.
17602
17603 2008-03-06  Bruno Haible  <bruno@clisp.org>
17604
17605         Make fflush after ungetc work on BSD platforms.
17606         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
17607         * tests/test-fflush2.c: New file.
17608         * tests/test-fflush2.sh: New file.
17609         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
17610         tests/test-fflush2.c.
17611         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
17612         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
17613
17614 2008-03-06  Eric Blake  <ebb9@byu.net>
17615
17616         Likewise for ftello.
17617         * modules/ftello (Dependencies): Add extensions.
17618         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
17619
17620 2008-03-06  Bruno Haible  <bruno@clisp.org>
17621
17622         * modules/fseeko (Dependencies): Add extensions.
17623         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
17624         Needed on glibc systems.
17625
17626 2008-03-06  Bruno Haible  <bruno@clisp.org>
17627
17628         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
17629         email address.
17630         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
17631
17632 2008-03-06  Bruno Haible  <bruno@clisp.org>
17633
17634         * users.txt: Add libgnupdf.
17635
17636 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
17637
17638         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
17639         (Header File Substitutes, Function Substitutes,
17640         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
17641         (Build robot for gnulib): Fix typo.
17642
17643 2008-03-06  Bruno Haible  <bruno@clisp.org>
17644
17645         * doc/gnulib-tool.texi (VCS Issues): Small updates.
17646         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
17647
17648 2008-03-06  Bruno Haible  <bruno@clisp.org>
17649
17650         * doc/func.texi: New file, extracted from doc/gnulib.texi.
17651         * doc/gnulib.texi: Include it.
17652
17653 2008-03-06  Simon Josefsson  <simon@josefsson.org>
17654
17655         * modules/func (License): Change license to unlimited; there was
17656         no LGPL parts in the module anyway.
17657
17658 2008-03-06  Simon Josefsson  <simon@josefsson.org>
17659
17660         * modules/__func__: Renamed to modules/func.
17661         * modules/__func__-tests: Renamed to modules/func-tests.
17662         * tests/test-__func__.c: Renamed to tests/test-func.c.
17663         * m4/__func__.m4: Renamed to m4/func.m4.
17664         * doc/gnulib.texi (__func__): Section renamed to func.
17665         Suggested by Eric Blake <ebb9@byu.net>.
17666
17667 2008-03-06  Simon Josefsson  <simon@josefsson.org>
17668
17669         * doc/gnulib.texi (__func__): Use C99 terminology when talking
17670         about __func__.  Make example self-contained.  Suggested by Eric
17671         Blake <ebb9@byu.net>.
17672
17673         * tests/test-__func__.c (main): Avoid extraneous () around __func.
17674         Suggested by Eric Blake <ebb9@byu.net>.
17675
17676 2008-03-06  Simon Josefsson  <simon@josefsson.org>
17677
17678         * modules/__func__: New file.
17679         * modules/__func__-tests: New file.
17680         * tests/test-__func__.c: New file.
17681         * m4/__func__.m4: New file.
17682         * doc/gnulib.texi (__func__): Document __func__ module.
17683
17684 2008-03-05  Simon Josefsson  <simon@josefsson.org>
17685
17686         * modules/byteswap (License): Re-license as LGPLv2+.
17687
17688 2008-03-05  Simon Josefsson  <simon@josefsson.org>
17689
17690         * doc/Makefile: Add pdf target.
17691
17692 2008-03-05  Simon Josefsson  <simon@josefsson.org>
17693
17694         * modules/inline (License): Use 'unlimited', since there are only
17695         *.m4 files in this module.
17696
17697 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
17698             Bruno Haible  <bruno@clisp.org>
17699
17700         Add support for HP C 7.1 on OpenVMS 8.3.
17701         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
17702
17703 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
17704
17705         Update VMS specifics.
17706         * lib/getopt.c [VMS]: Remove include of unixlib.h.
17707
17708 2008-03-02  Jim Meyering  <meyering@redhat.com>
17709
17710         Remove the last dependency on the "free" module.
17711         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
17712         Reported by Bob Proulx.
17713
17714         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
17715
17716         Remove useless "if" tests before free.  Deprecate "free" module.
17717         * doc/posix-functions/free.texi: Mention that this
17718         module is no longer useful.
17719         * modules/free (Notice): Say this module is obsolete.
17720         * modules/readutmp (Depends-on): Remove free.
17721         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
17722         * lib/putenv.c (putenv): Likewise.
17723         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
17724         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
17725         * tests/test-c-strcasestr.c (main): Likewise.
17726         * tests/test-c-strstr.c (main): Likewise.
17727         * tests/test-mbscasestr1.c (main): Likewise.
17728         * tests/test-mbscasestr2.c (main): Likewise.
17729         * tests/test-mbsstr1.c (main): Likewise.
17730         * tests/test-mbsstr2.c (main): Likewise.
17731         * tests/test-memmem.c (main): Likewise.
17732         * tests/test-strcasestr.c (main): Likewise.
17733         * tests/test-striconv.c (main): Likewise.
17734         * tests/test-striconveh.c (main): Likewise.
17735         * tests/test-striconveha.c (main): Likewise.
17736         * tests/test-strstr.c (main): Likewise.
17737
17738         * build-aux/git-version-gen: Adjust a comment and the Usage string.
17739
17740         bootstrap: sync from coreutils again
17741         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
17742
17743 2008-03-01  Jim Meyering  <meyering@redhat.com>
17744
17745         bootstrap: sync from coreutils
17746         * build-aux/bootstrap (update_po_files): Copy a .po file into place
17747         also when the target doesn't exist.
17748
17749 2008-03-01  Eric Blake  <ebb9@byu.net>
17750
17751         Fix bugs in last patch.
17752         * lib/memchr2.c (memchr2): Fix typo.
17753         * tests/test-memchr2.c: Test previous bug, and don't use GNU
17754         extension.
17755         Reported by Bruce Korb.
17756
17757         New module 'memchr2'.
17758         * modules/memchr2: New file.
17759         * modules/memchr2-tests: Likewise.
17760         * lib/memchr2.h: Likewise.
17761         * lib/memchr2.c: Likewise, based on memchr.c.
17762         * tests/test-memchr2.c: New test.
17763         * MODULES.html.sh (String handling): Add memchr2.
17764
17765 2008-02-29  Bruno Haible  <bruno@clisp.org>
17766
17767         * modules/freadseek-tests: New file.
17768         * tests/test-freadseek.sh: New file.
17769         * tests/test-freadseek.c: New file.
17770
17771         New module 'freadseek'.
17772         * modules/freadseek: New file.
17773         * lib/freadseek.h: New file.
17774         * lib/freadseek.c: New file.
17775         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
17776
17777 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
17778
17779         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
17780         wydawca.
17781
17782         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
17783         program_invocation_name and program_invocation_short_name are
17784         present.
17785
17786 2008-02-28  Bruno Haible  <bruno@clisp.org>
17787
17788         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
17789         * tests/test-freadptr.sh: Also test non-seekable stdin.
17790
17791 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
17792
17793         * build-aux/bootstrap (source_base, m4_base)
17794         (doc_base, tests_base): New variables.
17795         (gnulib_tool_options): Do not hardcode base directories, use
17796         the above variables instead.
17797
17798 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
17799
17800         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
17801
17802 2008-02-28  Bruno Haible  <bruno@clisp.org>
17803
17804         * modules/freadptr-tests: New file.
17805         * tests/test-freadptr.sh: New file.
17806         * tests/test-freadptr.c: New file.
17807
17808         New module 'freadptr'.
17809         * modules/freadptr: New file.
17810         * lib/freadptr.h: New file.
17811         * lib/freadptr.c: New file.
17812         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
17813
17814 2008-02-26  Karl Berry  <karl@freefriends.org>
17815
17816         Sync from Libtool:
17817         * libltdl/argz.c (argz_add, argz_count): New functions.
17818         * libltdl/argz.in.h: Declare them.
17819         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
17820
17821 2008-02-22  Bruno Haible  <bruno@clisp.org>
17822
17823         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
17824         is a pointer type.  Needed for HP-UX 10.
17825         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
17826         * doc/posix-functions/gmtime_r.texi: Likewise.
17827         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
17828
17829 2008-02-24  Bruno Haible  <bruno@clisp.org>
17830
17831         * modules/environ-tests: New file.
17832         * tests/test-environ.c: New file.
17833
17834         New module 'environ'.
17835         * modules/environ: New file.
17836         * lib/unistd.in.h (environ): New declaration.
17837         * m4/environ.m4: New file.
17838         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
17839         after use.
17840         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
17841         HAVE_DECL_ENVIRON.
17842         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
17843         HAVE_DECL_ENVIRON.
17844         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
17845         wrong claim that 'environ' is missing on some systems.
17846         * modules/execute (Depends-on): Add environ.
17847         * lib/execute.c (environ): Remove fallback declaration.
17848         * modules/pipe (Depends-on): Add environ.
17849         * lib/pipe.c (environ): Remove fallback declaration.
17850         * modules/setenv (Depends-on): Add environ.
17851         * lib/setenv.c (environ): Remove fallback declaration.
17852         * modules/unsetenv (Depends-on): Add environ.
17853         * lib/unsetenv.c (environ): Remove fallback declaration.
17854         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
17855         m4/environ.m4.
17856         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
17857         (gl_PREREQ_UNSETENV): Likewise.
17858
17859 2008-02-24  Bruno Haible  <bruno@clisp.org>
17860
17861         * doc/posix-functions/environ.texi: Document the MacOS X problem.
17862
17863 2008-02-20  Bob Proulx  <bob@proulx.com>
17864
17865         Enable use of older two part flavor 'git describe'.
17866         * build-aux/git-version-gen: If using the older two part flavor of
17867         git version then recreate the third part now present in the
17868         newer three part flavor of git describe.
17869
17870 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
17871
17872         * lib/fts.c (fts_build): Typo correction to comment.
17873
17874 2008-02-17  Bruno Haible  <bruno@clisp.org>
17875
17876         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
17877         generating no-op conflicts.
17878
17879 2008-02-17  Bruno Haible  <bruno@clisp.org>
17880
17881         Speed up by 10%.
17882         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
17883         result_entries, rather than an index-based loop.
17884
17885 2008-02-17  Bruno Haible  <bruno@clisp.org>
17886
17887         Speed up by 25%.
17888         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
17889         'hashcode_cached'.
17890         (entry_create): New function.
17891         (entry_hashcode): Use the cached hashcode if possible.
17892         (read_changelog_file, try_split_merged_entry): Use entry_create.
17893
17894 2008-02-17  Bruno Haible  <bruno@clisp.org>
17895
17896         Speed up from O(n^2) to O(n) for long ChangeLog files.
17897         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
17898         (read_changelog_file): Change implementation of entries_reversed list
17899         to rbtreehash.
17900         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
17901
17902 2008-02-17  Bruno Haible  <bruno@clisp.org>
17903
17904         New option --split-merged-entry.
17905         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
17906         (find_paragraph_end, try_split_merged_entry): New functions.
17907         (long_options): Add option --split-merged-entry.
17908         (usage): Document option --split-merged-entry.
17909         (main): Implement option --split-merged-entry.
17910         Reported by Eric Blake.
17911
17912 2008-02-17  Bruno Haible  <bruno@clisp.org>
17913
17914         * lib/git-merge-changelog.c: Include c-strstr.h.
17915         (main): Support the "git pull --rebase" situation.
17916         * modules/git-merge-changelog (Depends-on): Add c-strstr.
17917         Reported by Eric Blake.
17918
17919 2008-02-16  Eric Blake  <ebb9@byu.net>
17920
17921         Avoid doubling \ in common case of "c-maybe" quoting style.
17922         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
17923         eliding outer quotes.
17924         * lib/quotearg.h: Document this.
17925         * tests/test-quotearg.c (result_strings, inputs, results_g)
17926         (flag_results, locale_results): Test it by adding a new string to
17927         each test group.
17928         (compare_strings): Test new string.
17929
17930 2008-02-13  Eric Blake  <ebb9@byu.net>
17931
17932         Avoid trigraph quoting in default output.
17933         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
17934         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
17935         unless explicitly requested.
17936         * tests/test-quotearg.c (flag_results, main): Add additional tests.
17937
17938 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
17939
17940         Don't rely on signed integer overflowing to negative value.
17941         * lib/getugroups.c (getugroups): Include <limits.h>.
17942         Instead, compare against INT_MAX, and increment only if the test passes.
17943
17944 2008-02-13  Jim Meyering  <meyering@redhat.com>
17945         and Eric Blake  <ebb9@byu.net>
17946
17947         Avoid shadowing warning and compile errors on Linux.
17948         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
17949         forwarding macros on Linux.
17950         (dcgettext): Define a stub, for Linux.
17951         (results_g, main): Avoid warnings.
17952
17953 2008-02-12  Eric Blake  <ebb9@byu.net>
17954
17955         Silence warning in last patch.
17956         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
17957
17958         Quotearg part 4: add tests, fix c-maybe colon quoting.
17959         * lib/quotearg.h: Improve documentation.
17960         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
17961         escapes when adding outer quotes.  When quoting trigraphs, use
17962         valid C notation.  When quoting NUL, omit extra characters if next
17963         character is not digit.  Alter prototype.
17964         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
17965         callers.
17966         * modules/quotearg-tests: New module.
17967         * tests/test-quotearg.c: New test.
17968
17969 2008-02-07  Eric Blake  <ebb9@byu.net>
17970
17971         Quotearg part 3: add flag to control outer quote elision.
17972         * lib/quotearg.h (c_maybe_quoting_style): New style.
17973         (enum quoting_flags): Better documentation of flags.
17974         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
17975         c-maybe style.
17976         (quotearg_buffer_restyled): Handle new flag to elide outer
17977         quotes.
17978
17979         Quotearg part 2: add flag that can control NUL elision.
17980         * lib/quotearg.h (set_quoting_flags): New prototype.
17981         * lib/quotearg.c (struct quoting_options): Add flag field.
17982         (set_quoting_flags): New function.
17983         (quotearg_buffer_restyled): Add flags parameter.
17984         (quotearg_alloc_mem): Set the flag if length cannot be returned.
17985         (quotearg_n_options): Set the flag, since length cannot be
17986         returned.
17987         (quoting_options_from_style): Default flags correctly.
17988
17989         Quotearg part 1: more wrappers, restore quotearg_char state.
17990         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
17991         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
17992         (quotearg_colon_mem): New wrappers.
17993         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
17994         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
17995         functions.
17996         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
17997         (quotearg_colon_mem): New functions.
17998
17999 2008-02-11  Bruno Haible  <bruno@clisp.org>
18000
18001         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
18002         library in the current directory: it does not work with parallel make.
18003         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18004
18005 2008-02-11  Bruno Haible  <bruno@clisp.org>
18006
18007         * .gitattributes: New file.
18008
18009 2008-02-11  Jim Meyering  <meyering@redhat.com>
18010
18011         useless-if-before-free: Fix reversed exit values.
18012         * build-aux/useless-if-before-free: Use correct values
18013         for EXIT_MATCH and EXIT_NO_MATCH.
18014
18015         * build-aux/useless-if-before-free: Close stdout carefully.
18016
18017 2008-02-10  Bruno Haible  <bruno@clisp.org>
18018
18019         New module 'git-merge-changelog'.
18020         * modules/git-merge-changelog: New file.
18021         * lib/git-merge-changelog.c: New file.
18022
18023 2008-02-10  Jim Meyering  <meyering@redhat.com>
18024
18025         useless-if-before-free: New option: --list (-l).
18026
18027         useless-if-before-free: Don't exit immediately upon open failure.
18028         * build-aux/useless-if-before-free: Exit 2 for errors.
18029         Upon failure to open a file, don't exit immediately.
18030         Rather, just warn and continue with any remaining files.
18031
18032 2008-02-10  Bruno Haible  <bruno@clisp.org>
18033
18034         New abstract list operation 'node_set_value'.
18035         * lib/gl_list.h (gl_list_node_set_value): New function.
18036         (struct gl_list_implementation): New field node_set_value.
18037         * lib/gl_list.c (gl_list_node_set_value): New function.
18038         * lib/gl_array_list.c (gl_array_node_set_value): New function.
18039         (gl_array_list_implementation): Update.
18040         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
18041         (gl_carray_list_implementation): Update.
18042         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
18043         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
18044         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
18045         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
18046         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
18047         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
18048         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
18049         Update.
18050         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
18051         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
18052         (gl_sublist_list_implementation): Update.
18053
18054 2008-02-10  Bruno Haible  <bruno@clisp.org>
18055
18056         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
18057         Needed when ELEMENT is #defined to 'some_type *'.
18058
18059 2008-02-10  Jim Meyering  <meyering@redhat.com>
18060
18061         New script and module: useless-if-before-free
18062         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
18063         * build-aux/useless-if-before-free: New file.
18064         * modules/useless-if-before-free: New file.
18065
18066         * build-aux/gitlog-to-changelog: Use committer date, not author date.
18067
18068         xstrtol_error: Fix typo.
18069         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
18070         s/exit_failure/exit_status/.
18071
18072 2008-02-09  Jim Meyering  <meyering@redhat.com>
18073
18074         New script and module: gitlog-to-changelog
18075         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
18076         * modules/gitlog-to-changelog: New file.
18077         * build-aux/gitlog-to-changelog: New file.
18078
18079 2008-02-08  Jim Meyering  <meyering@redhat.com>
18080
18081         Avoid two "parameter unused" warnings.
18082         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
18083         Mark "st" as used.
18084
18085         Use "git COMMAND", not "git-COMMAND".
18086         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
18087         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
18088         * build-aux/git-version-gen: Use "git status", not "git-status".
18089
18090 2008-02-07  Bruno Haible  <bruno@clisp.org>
18091
18092         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
18093         Avoids a crash on Windows Vista.
18094         Reported by Adam Strzelecki <ono@java.pl> via
18095         Simon Josefsson <simon@josefsson.org>.
18096
18097 2008-02-06  Bruno Haible  <bruno@clisp.org>
18098
18099         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
18100         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
18101         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
18102         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
18103         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
18104         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
18105         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
18106         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
18107         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
18108         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
18109         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
18110         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
18111         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
18112         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
18113         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
18114         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
18115         left-adjust flag.
18116         * tests/test-snprintf-posix.h (test_function): Likewise.
18117         * tests/test-sprintf-posix.h (test_function): Likewise.
18118         * tests/test-vasprintf-posix.c (test_function): Likewise.
18119         * doc/posix-functions/fprintf.texi: Update.
18120         * doc/posix-functions/printf.texi: Update.
18121         * doc/posix-functions/snprintf.texi: Update.
18122         * doc/posix-functions/sprintf.texi: Update.
18123         * doc/posix-functions/vfprintf.texi: Update.
18124         * doc/posix-functions/vprintf.texi: Update.
18125         * doc/posix-functions/vsnprintf.texi: Update.
18126         * doc/posix-functions/vsprintf.texi: Update.
18127         Reported by Peter Fales <psfales@alcatel-lucent.com>.
18128
18129 2008-02-06  Bruno Haible  <bruno@clisp.org>
18130
18131         Fix bug introduced on 2008-01-26.
18132         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
18133
18134 2008-02-06  Bruno Haible  <bruno@clisp.org>
18135
18136         Fix bug introduced on 2007-06-10.
18137         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
18138         !NEED_PRINTF_FLAG_ZERO.
18139
18140 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
18141
18142         getloadavg: use libperfstat on AIX5
18143         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
18144
18145 2008-02-03  Bruno Haible  <bruno@clisp.org>
18146
18147         * lib/diffseq.h: Add comments about required #includes.
18148         Reported by Michael Biggs <gnulib@doubleplum.net>.
18149
18150 2008-02-01  Bruno Haible  <bruno@clisp.org>
18151
18152         * users.txt: Add gnuit.
18153
18154 2008-01-31  Bruno Haible  <bruno@clisp.org>
18155
18156         * lib/md4.c (set_uint32): Mark as inline.
18157         * lib/md5.c (set_uint32): Likewise.
18158         * lib/sha1.c (set_uint32): Likewise.
18159         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
18160         * m4/md5.m4 (gl_MD5): Likewise.
18161         * m4/sha1.m4 (gl_SHA1): Likewise.
18162
18163 2008-01-31  Jim Meyering  <meyering@redhat.com>
18164
18165         Use "sizeof VAR", rather than a literal "4".
18166         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
18167         * lib/md4.c (md4_read_ctx): Likewise.
18168         * lib/sha1.c (sha1_read_ctx): Likewise.
18169
18170 2008-01-31  Simon Josefsson  <simon@josefsson.org>
18171
18172         * tests/test-sha1.c: New file, based on test-md5.c.
18173
18174         * modules/crypto/sha1-tests: New file.
18175
18176 2008-01-31  Simon Josefsson  <simon@josefsson.org>
18177
18178         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
18179
18180 2008-01-31  Jim Meyering  <meyering@redhat.com>
18181
18182         Prefer "sizeof v" over the equivalent "4".
18183         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
18184         * lib/md5.c (set_uint32): Likewise.
18185         * lib/sha1.c (set_uint32): Likewise.
18186
18187 2008-01-31  Simon Josefsson  <simon@josefsson.org>
18188
18189         * lib/sha1.c (set_uint32): Mark function as static.
18190
18191 2008-01-31  Simon Josefsson  <simon@josefsson.org>
18192
18193         md2: clarify comments to say that alignment is not required.
18194         * lib/md2.h: Remove warning about alignment in comment.
18195         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
18196         never been required.
18197
18198 2008-01-31  Simon Josefsson  <simon@josefsson.org>
18199
18200         md4: adapt alignment constraint fix from sha1.
18201         * lib/md4.c (set_uint32): New function, from sha1.c
18202         (md4_read_ctx): Use it.
18203         (md4_finish_ctx): Doc fix.
18204         * lib/md4.h: Doc fix.
18205
18206 2008-01-31  Simon Josefsson  <simon@josefsson.org>
18207
18208         md5: adapt alignment constraint fix from sha1.
18209         * lib/md5.c (set_uint32): New function, from sha1.c
18210         (md5_read_ctx): Use it.
18211         (md5_finish_ctx): Doc fix.
18212         * lib/md5.h: Doc fix.
18213
18214 2008-01-30  Peter Palfrader  <weasel@debian.org>
18215
18216         sha1: remove the result buffer alignment constraint
18217         * lib/sha1.c (set_uint32): New function.
18218         (sha1_read_ctx): Rewrite to remove the result buffer alignment
18219         constraint.
18220         (sha1_finish_ctx): Remove comment warning about alignment constraint.
18221         * lib/sha1.h: Likewise.
18222
18223 2008-01-30  Andreas Schwab  <schwab@suse.de>
18224             Bruno Haible  <bruno@clisp.org>
18225
18226         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
18227         correct definition of LDBL_MIN_EXP.
18228
18229 2008-01-30  Karl Berry  <karl@gnu.org>
18230
18231         * config/srclist-update: try to preserve x bit on updates.
18232         * config/srclistvars.sh: update for karl.
18233
18234 2008-01-29  Jim Meyering  <meyering@redhat.com>
18235
18236         vasnprintf.c: Avoid warning about unused label
18237         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
18238         "overflow" label definition and associated code with the
18239         same cpp condition that guards the sole use of that label.
18240
18241 2008-01-26  Bruno Haible  <bruno@clisp.org>
18242
18243         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
18244         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
18245         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
18246         * lib/isnanl-nolibm.h (isnanl): Likewise.
18247         Reported by Paul Eggert <eggert@cs.ucla.edu>.
18248
18249 2008-01-26  Bruno Haible  <bruno@clisp.org>
18250
18251         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
18252         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
18253
18254 2008-01-26  Bruno Haible  <bruno@clisp.org>
18255
18256         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
18257         GCC >= 4.0 built-in.
18258         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
18259
18260 2008-01-26  Bruno Haible  <bruno@clisp.org>
18261
18262         Rename isnan, applicable to 'double' only, to isnand.
18263         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
18264         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
18265         (configure.ac): Update.
18266         (Include): Replace "isnan.h" with "isnand.h".
18267         * m4/isnand.m4: Renamed from m4/isnan.m4.
18268         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
18269         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
18270         instead of isnan.c.
18271         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
18272         instead of HAVE_ISNAN_IN_LIBC.
18273         (isnand): Renamed from isnan.
18274         * lib/isnand.c: New file.
18275         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
18276         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
18277         (Makefile.am): Update.
18278         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
18279         Include isnand.h instead of isnan.h.
18280         (main): Test isnand instead of isnan.
18281         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
18282         isnan-nolibm.
18283         * modules/frexp (Depends-on): Likewise.
18284         * modules/frexp-tests (Depends-on): Likewise.
18285         * modules/frexp-nolibm (Depends-on): Likewise.
18286         * modules/frexp-nolibm-tests (Depends-on): Likewise.
18287         * modules/isfinite (Depends-on): Likewise.
18288         * modules/round-tests (Depends-on): Likewise.
18289         * modules/signbit (Depends-on): Likewise.
18290         * modules/signbit-tests (Depends-on): Likewise.
18291         * modules/snprintf-posix (Depends-on): Likewise.
18292         * modules/sprintf-posix (Depends-on): Likewise.
18293         * modules/trunc-tests (Depends-on): Likewise.
18294         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
18295         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
18296         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
18297         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
18298         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
18299         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
18300         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
18301         * modules/vasnprintf-posix (Depends-on): Likewise.
18302         * modules/vasprintf-posix (Depends-on): Likewise.
18303         * modules/vfprintf-posix (Depends-on): Likewise.
18304         * modules/vsnprintf-posix (Depends-on): Likewise.
18305         * modules/vsprintf-posix (Depends-on): Likewise.
18306         * lib/frexp.c: Include isnand.h instead of isnan.h.
18307         (ISNAN): Set to isnand instead of isnan.
18308         * lib/isfinite.c: Include isnand.h instead of isnan.h.
18309         (gl_isfinited): Use isnand instead of isnan.
18310         * lib/signbitd.c: Include isnand.h instead of isnan.h.
18311         (gl_signbitd): Use isnand instead of isnan.
18312         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
18313         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
18314         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
18315         (main): Use isnand instead of isnan.
18316         * tests/test-round1.c: Include isnand.h.
18317         (main): Use isnand instead of isnan.
18318         * tests/test-round2.c: Include isnand.h instead of isnan.h.
18319         (ISNAN): Set to isnand instead of isnan.
18320         * tests/test-trunc1.c: Include isnand.h.
18321         (main): Use isnand instead of isnan.
18322         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
18323         (equal): Use isnand instead of isnan.
18324         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
18325         isnand-nolibm.
18326         * NEWS: Mention the change.
18327
18328 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
18329             Bruno Haible  <bruno@clisp.org>
18330
18331         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
18332         the GCC builtins for signbits are present and set
18333         REPLACE_SIGNBIT_USING_GCC if so.
18334         * lib/math.in.h (signbit): Define using GCC builtins if
18335         REPLACE_SIGNBIT_USING_GCC is set.
18336         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
18337         REPLACE_SIGNBIT_USING_GCC.
18338         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
18339
18340 2008-01-25  Jim Meyering  <meyering@redhat.com>
18341
18342         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
18343         * lib/poll.c: Include <config.h>, not "config.h".
18344         * tests/test-getaddrinfo.c: Likewise.
18345
18346 2008-01-25  Simon Josefsson  <simon@josefsson.org>
18347
18348         * modules/sockets-tests: New file.
18349
18350 2008-01-24  Simon Josefsson  <simon@josefsson.org>
18351
18352         * modules/sockets: New module, can be used to call WSA_Startup and
18353         WSA_Cleanup when needed.
18354
18355         * lib/sockets.h, lib/sockets.c: New files.
18356
18357         * m4/sockets.m4: New file.
18358
18359         * tests/test-sockets.c: New file.
18360
18361 2008-01-19  Bruno Haible  <bruno@clisp.org>
18362
18363         * doc/posix-headers: Renamed from doc/headers.
18364         * doc/posix-functions: Renamed from doc/functions.
18365         * doc/gnulib.texi: Update.
18366
18367 2008-01-19  Bruno Haible  <bruno@clisp.org>
18368
18369         * doc/glibc-functions/strcasestr.texi: Include contents of
18370         doc/functions/strcasestr.texi, fixing the list of platforms.
18371         * doc/functions/strcasestr.texi: Remove file.
18372
18373 2008-01-19  Bruno Haible  <bruno@clisp.org>
18374
18375         * doc/glibc-functions/memmem.texi: Include contents of
18376         doc/functions/memmem.texi.
18377         * doc/functions/memmem.texi: Remove file.
18378
18379 2008-01-18  Bruno Haible  <bruno@clisp.org>
18380
18381         * doc/glibc-functions/*.texi: New files.
18382         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
18383         to use the new files.
18384
18385 2008-01-17  Bruno Haible  <bruno@clisp.org>
18386
18387         * tests/test-gethostname.c (main): Fix printf statement.
18388
18389 2008-01-17  Simon Josefsson  <simon@josefsson.org>
18390
18391         * modules/gethostname-tests: New file.
18392
18393         * tests/test-gethostname.c: New file.
18394
18395 2008-01-17  Simon Josefsson  <simon@josefsson.org>
18396
18397         * lib/gethostname.c: Include string.h unconditionally, strncpy is
18398         used by the UNAME case.  Reported by Bruno Haible
18399         <bruno@clisp.org>.
18400
18401 2008-01-17  Eric Blake  <ebb9@byu.net>
18402
18403         Convert c-strcasestr to be more efficient.
18404         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
18405         (Depends-on): Add c-strcase, remove malloca, strnlen.
18406         * tests/test-c-strcasestr.c (main): Enhance test.
18407         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
18408
18409 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
18410
18411         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
18412         Use it in creating po/Makevars.
18413
18414 2008-01-15  Simon Josefsson  <simon@josefsson.org>
18415
18416         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
18417         Applications that requires it should initialize libgcrypt
18418         manually.
18419
18420 2008-01-16  Simon Josefsson  <simon@josefsson.org>
18421
18422         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
18423
18424 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
18425
18426         Fix problem with getdate on mingw32 reported by Simon Josefsson
18427         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
18428         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
18429         tzname", when deciding whether to declare tzname.
18430         * lib/strftime.c (tzname): Likewise.
18431
18432 2008-01-15  Bruno Haible  <bruno@clisp.org>
18433
18434         Work around a MacOS X 10.5 bug in frexpl().
18435         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
18436         * doc/functions/frexpl.texi: Document the bug.
18437         Reported by Elias Pipping <pipping@gentoo.org>.
18438
18439 2008-01-14  Eric Blake  <ebb9@byu.net>
18440
18441         Touch up previous patch.
18442         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
18443         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
18444
18445         Convert strcasestr module to use Two-Way algorithm.
18446         * modules/strcasestr-simple: New module, based on the old
18447         strcasestr, but with Two-Way rather than KMP.
18448         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
18449         * lib/string.in.h (rpl_strcasestr): Declare.
18450         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
18451         performance.
18452         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
18453         * modules/string (Makefile.am): Support strcasestr.
18454         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
18455         * modules/strcasestr-tests (Depends-on): Check for alarm.
18456         * tests/test-strcasestr.c: Augment test.
18457         * lib/str-two-way.h: Clean up stray macro.
18458         * NEWS: Document new module.
18459         * MODULES.html.sh (string handling): Likewise.
18460         * doc/functions/strcasestr.texi: New file.
18461         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
18462         here, since it is not a POSIX function.
18463
18464 2008-01-14  Colin Watson  <cjwatson@debian.org>
18465             Bruno Haible  <bruno@clisp.org>
18466
18467         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
18468         works fine; if not, set REPLACE_STRSIGNAL.
18469         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
18470         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
18471         REPLACE_STRSIGNAL.
18472         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
18473         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
18474         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
18475
18476 2008-01-14  Bruno Haible  <bruno@clisp.org>
18477
18478         * modules/strsignal (Include): Change to <string.h>.
18479
18480 2008-01-14  Colin Watson  <cjwatson@debian.org>
18481
18482         * modules/argp (Notice): Add a notice recommending to change
18483         XGETTEXT_OPTIONS.
18484         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
18485
18486 2008-01-13  Colin Watson  <cjwatson@debian.org>
18487
18488         * modules/strsignal-tests: New file.
18489         * tests/test-strsignal.c: New file.
18490
18491         * lib/strsignal.c: New file, from glibc with modifications.
18492         * lib/siglist.h: New file, from glibc with modifications.
18493         * lib/string.in.h (strsignal): New declaration.
18494         * m4/strsignal.m4: New file.
18495         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
18496         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
18497         * modules/strsignal: New file.
18498         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
18499         HAVE_DECL_STRSIGNAL.
18500
18501 2008-01-13  Bruno Haible  <bruno@clisp.org>
18502
18503         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
18504         locale encoding is not ASCII. Needed for OpenBSD 4.0.
18505         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
18506         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
18507
18508 2008-01-13  Bruno Haible  <bruno@clisp.org>
18509
18510         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
18511         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
18512         * lib/argp.h (__attribute__): Likewise.
18513         * lib/c-stack.c (__attribute__): Likewise.
18514         * lib/error.h (__attribute__): Likewise.
18515         * lib/fts.c (__attribute__): Likewise.
18516         * lib/openat.h (__attribute__): Likewise.
18517         * lib/stdio.in.h (__attribute__): Likewise.
18518         * lib/string.in.h (__attribute__): Likewise.
18519         * lib/utimens.c (__attribute__): Likewise.
18520         * lib/vasnprintf.h (__attribute__): Likewise.
18521         * lib/xalloc.h (__attribute__): Likewise.
18522         * lib/xprintf.h (__attribute__): Likewise.
18523         * lib/xstrtol.h (__attribute__): Likewise.
18524         * lib/xvasprintf.h (__attribute__): Likewise.
18525
18526 2008-01-12  Bruno Haible  <bruno@clisp.org>
18527
18528         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
18529         * doc/glibc-headers/a.out.texi: New file.
18530         * doc/glibc-headers/aliases.texi: New file.
18531         * doc/glibc-headers/alloca.texi: New file.
18532         * doc/glibc-headers/ar.texi: New file.
18533         * doc/glibc-headers/argp.texi: New file.
18534         * doc/glibc-headers/argz.texi: New file.
18535         * doc/glibc-headers/byteswap.texi: New file.
18536         * doc/glibc-headers/crypt.texi: New file.
18537         * doc/glibc-headers/endian.texi: New file.
18538         * doc/glibc-headers/envz.texi: New file.
18539         * doc/glibc-headers/err.texi: New file.
18540         * doc/glibc-headers/error.texi: New file.
18541         * doc/glibc-headers/execinfo.texi: New file.
18542         * doc/glibc-headers/fpu_control.texi: New file.
18543         * doc/glibc-headers/fstab.texi: New file.
18544         * doc/glibc-headers/fts.texi: New file.
18545         * doc/glibc-headers/getopt.texi: New file.
18546         * doc/glibc-headers/ieee754.texi: New file.
18547         * doc/glibc-headers/ifaddrs.texi: New file.
18548         * doc/glibc-headers/libintl.texi: New file.
18549         * doc/glibc-headers/mcheck.texi: New file.
18550         * doc/glibc-headers/mntent.texi: New file.
18551         * doc/glibc-headers/obstack.texi: New file.
18552         * doc/glibc-headers/paths.texi: New file.
18553         * doc/glibc-headers/printf.texi: New file.
18554         * doc/glibc-headers/pty.texi: New file.
18555         * doc/glibc-headers/resolv.texi: New file.
18556         * doc/glibc-headers/shadow.texi: New file.
18557         * doc/glibc-headers/sysexits.texi: New file.
18558         * doc/glibc-headers/ttyent.texi: New file.
18559
18560 2008-01-12  Jim Meyering  <meyering@redhat.com>
18561
18562         announce-gen: emit Gnulib's git-based version string.
18563         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
18564         New option --gnulib-version=V, where V is expected to be
18565         the output of running git describe in the gnulib directory.
18566         (get_tool_versions): Request feedback on xdelta.  I suspect it's
18567         not useful, and plan to stop publishing an xdelta file with each
18568         coreutils release.
18569
18570         * build-aux/announce-gen: Also check for lzma-compressed files.
18571
18572 2008-01-11  Bruno Haible  <bruno@clisp.org>
18573
18574         * tests/test-memmem.c (main): Increase maximum allowed time.
18575         * tests/test-strstr.c (main): Likewise.
18576
18577 2008-01-11  Bruno Haible  <bruno@clisp.org>
18578
18579         * doc/functions/memmem.texi: Add more precisions about platforms.
18580         * doc/functions/strstr.texi: Likewise.
18581
18582 2008-01-10  Eric Blake  <ebb9@byu.net>
18583
18584         * m4/strstr.m4: Delete cruft from copy-n-paste.
18585         Reported by Bruno Haible.
18586
18587 2008-01-10  Bruno Haible  <bruno@clisp.org>
18588
18589         Make c-strstr rely on strstr.
18590         * lib/c-strstr.c: Don't include str-kmp.h.
18591         (c_strstr): Define in terms of strstr.
18592         * modules/c-strstr (Files): Remove lib/str-kmp.h.
18593         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
18594
18595 2008-01-10  Bruno Haible  <bruno@clisp.org>
18596
18597         * doc/gnulib.texi (String Functions in C Locale): New section.
18598         * doc/c-ctype.texi: New file.
18599         * doc/c-strcase.texi: New file.
18600         * doc/c-strcaseeq.texi: New file.
18601         * doc/c-strcasestr.texi: New file.
18602         * doc/c-strstr.texi: New file.
18603         * doc/c-strtod.texi: New file.
18604         * doc/c-strtold.texi: New file.
18605
18606 2008-01-10  Eric Blake  <ebb9@byu.net>
18607
18608         * lib/relocatable.h: Fix a comment.
18609
18610 2008-01-10  Eric Blake  <ebb9@byu.net>
18611
18612         Share two-way algorithm.
18613         * lib/str-two-way.h: New file, merged from...
18614         * lib/memmem.c: ...here...
18615         * lib/strstr.c: ...and here.
18616         * modules/memmem (Files): Use it.
18617         * modules/strstr (Files): Likewise.
18618
18619         Avoid quadratic strstr implementations.
18620         * lib/strstr.c: New file.
18621         * m4/strstr.m4: Likewise.
18622         * modules/strstr: Likewise.
18623         * modules/strstr-tests: Likewise.
18624         * tests/test-strstr.c: Likewise.
18625         * lib/string.in.h (rpl_strstr): Declare.
18626         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
18627         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
18628         * modules/string (Makefile.am): Likewise.
18629         * MODULES.html.sh (string handling): Mention new module.
18630         * doc/functions/strstr.texi (strstr): Document the bug.
18631
18632 2008-01-10  Bruno Haible  <bruno@clisp.org>
18633
18634         * lib/relocatable.h (relocate): State whether result is freshly
18635         allocated or not.
18636         * lib/relocatable.c (relocate): Return a freshly allocated string
18637         instead of a pointer to a privately held string.
18638         Reported by Sylvain Beucler <beuc@gnu.org>.
18639
18640 2008-01-10  Colin Watson  <cjwatson@debian.org>
18641
18642         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
18643         s/S_ISNLK/S_ISLNK/.
18644
18645 2008-01-09  Bruno Haible  <bruno@clisp.org>
18646
18647         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
18648         and other files.
18649         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
18650         if it's only a guess.
18651         * modules/memmem: Simplify by depending on memmem-simple.
18652
18653 2008-01-09  Bruno Haible  <bruno@clisp.org>
18654
18655         Work around OpenBSD 4.0 tdelete() bug.
18656         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
18657         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
18658         macros and don't redefine the enum values.
18659         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
18660         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
18661         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
18662
18663 2008-01-09  Bruno Haible  <bruno@clisp.org>
18664
18665         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
18666         (main): Don't perform the tests if setlocale did not install a UTF-8
18667         locale. Needed on OpenBSD 4.0.
18668         * modules/wcwidth-tests (Depends-on): Add localcharset.
18669
18670 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
18671
18672         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
18673         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
18674         * NEWS: announce this.
18675         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
18676
18677 2008-01-09  Simon Josefsson  <simon@josefsson.org>
18678         and Eric Blake  <ebb9@byu.net>
18679
18680         Add memmem-simple module.
18681         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
18682         (gl_FUNC_MEMMEM): Separate performance from presence checks.
18683         * modules/memmem-simple: New file.
18684         * modules/memmem (Description): Tweak.
18685         * MODULES.html.sh (string handling): Mention new module.
18686         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
18687         addressed by memmem-simple.
18688         * NEWS: Document the difference.
18689
18690 2008-01-09  Eric Blake  <ebb9@byu.net>
18691
18692         Give gcc some memmem optimization hints.
18693         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
18694         (strcasestr): Declare as pure.
18695         * modules/memmem (Maintainer): Claim my implementation.
18696
18697 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18698
18699         Support AIX 6.1 and higher.
18700         * build-aux/config.libpath: Likewise.
18701         * build-aux/config.rpath: Likewise.
18702
18703 2008-01-08  Jim Meyering  <meyering@redhat.com>
18704             Bruno Haible  <bruno@clisp.org>
18705
18706         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
18707         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
18708         Reported by Peter Fales in
18709         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
18710
18711 2008-01-08  Bruno Haible  <bruno@clisp.org>
18712
18713         * modules/unictype/category-of (Depends-on): Add
18714         unictype/category-none.
18715         * modules/unictype/category-and-tests (Depends-on): Add
18716         unictype/category-{L,N,Lu,Nd}.
18717         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
18718         * modules/unictype/category-or-tests (Depends-on): Add
18719         unictype/category-{L,N}.
18720         * modules/unictype/category-name-tests (Depends-on): Add
18721         unictype/category-{Z,Nl}.
18722         Reported by Simon Josefsson.
18723
18724 2008-01-08  Bruno Haible  <bruno@clisp.org>
18725
18726         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
18727         convention better.
18728         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
18729         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
18730         Reported by Peter Miller <millerp@canb.auug.org.au>.
18731
18732 2008-01-08  Eric Blake  <ebb9@byu.net>
18733
18734         Rewrite memmem to guarantee linear complexity without malloc.
18735         * lib/memmem.c (memmem): Use Two-Way rather than
18736         Knuth-Morris-Pratt, to allow O(1) space usage.
18737         (critical_factorization, two_way_short_needle)
18738         (two_way_long_needle): New functions.
18739         (knuth_morris_pratt): Delete.
18740         * modules/memmem (Depends-on): No longer need malloca or stdbool.
18741         Add stdint.
18742         * tests/test-memmem.c (main): Add tests for periodic needle and
18743         sublinear performance.
18744         * doc/functions/memmem.texi (memmem): Document other deficiencies
18745         in cygwin and older glibc.
18746
18747 2008-01-08  Bruno Haible  <bruno@clisp.org>
18748
18749         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
18750         augmentation.
18751
18752 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
18753
18754         Add a configure time option: --disable-acl.
18755         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
18756         AC_ARG_ENABLE(acl).
18757
18758 2008-01-06  Simon Josefsson  <simon@josefsson.org>
18759
18760         * tests/test-localename.c: Don't include obsolete "setenv.h".
18761
18762         * modules/localename-tests (Depends-on): Need unsetenv.
18763
18764 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18765
18766         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
18767
18768 2008-01-06  Colin Watson  <cjwatson@debian.org>
18769
18770         * users.txt: Add man-db.
18771
18772 2008-01-07  Bruno Haible  <bruno@clisp.org>
18773
18774         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
18775         previous section name.
18776
18777 2008-01-07  Bruno Haible  <bruno@clisp.org>
18778
18779         * lib/progname.c (set_program_name): Don't strip off a leading
18780         "lt-" prefix outside a .libs directory.
18781         Suggested by Paul Eggert.
18782
18783 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
18784             Bruno Haible  <bruno@clisp.org>
18785
18786         Improve memory cleanup in 'relocatable' module.
18787         * lib/relocatable.h (compute_curr_prefix): Change return type to
18788         'char *'.
18789         * lib/relocatable.c (compute_curr_prefix): Change return type to
18790         'char *'. Free curr_installdir after use.
18791         (relocate): Free curr_prefix_better after use.
18792         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
18793
18794 2008-01-01  Bruno Haible  <bruno@clisp.org>
18795
18796         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
18797         failure on older glibc systems.
18798         Reported by Peter Fales <psfales@alcatel-lucent.com>.
18799
18800 2008-01-05  Eric Blake  <ebb9@byu.net>
18801
18802         Avoid quadratic system memmem.
18803         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
18804         Reported by Ralf Wildenhues.
18805
18806         Fix memmem test for mingw.
18807         * modules/memmem-tests (configure.ac): Check for alarm.
18808         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
18809         it.
18810         * doc/functions/memmem.texi: New file.
18811         * doc/gnulib.texi (Function Substitutes): Add memmem.
18812         Reported by Bruno Haible.
18813
18814 2008-01-04  Bruno Haible  <bruno@clisp.org>
18815
18816         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
18817         Require gl_HEADER_STRINGS_H_DEFAULTS, not
18818         gl_HEADER_STRING_H_DEFAULTS.
18819
18820 2008-01-04  Eric Blake  <ebb9@byu.net>
18821
18822         Shorten duration of memmem test.
18823         * tests/test-memmem.c (main): Use alarm to declare failure if test
18824         is taking too long.
18825         Reported by Ralf Wildenhues.
18826
18827 2007-12-21  Simon Josefsson  <simon@josefsson.org>
18828
18829         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
18830         string, needed by strerror.
18831
18832 2008-01-03  Colin Watson  <cjwatson@debian.org>
18833             Bruno Haible  <bruno@clisp.org>
18834
18835         * doc/gnulib-tool.texi (Localization): New section.
18836
18837 2008-01-02  Bruno Haible  <bruno@clisp.org>
18838
18839         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
18840         variables to 'unsigned char *' type.
18841         Reported by Paul Eggert.
18842
18843 2008-01-02  Jim Meyering  <jim@meyering.net>
18844
18845         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
18846
18847 2007-12-31  Jim Meyering  <jim@meyering.net>
18848
18849         Avoid use of private FTS type name.
18850         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
18851
18852 2007-12-30  Karl Berry  <karl@gnu.org>
18853
18854         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
18855         work around defect in Texinfo and/or the standalone Info browser.
18856
18857 2007-12-30  Bruno Haible  <bruno@clisp.org>
18858
18859         Unify 5 copies of the KMP code.
18860         * lib/str-kmp.h: New file.
18861         * lib/c-strcasestr.c: Include str-kmp.h.
18862         (knuth_morris_pratt): Remove function.
18863         (c_strcasestr): Update.
18864         * lib/c-strstr.c: Include str-kmp.h.
18865         (knuth_morris_pratt): Remove function.
18866         (c_strcasestr): Update.
18867         * lib/mbscasestr.c: Include str-kmp.h.
18868         (knuth_morris_pratt_unibyte): Remove function.
18869         * lib/mbsstr.c: Include str-kmp.h.
18870         (knuth_morris_pratt_unibyte): Remove function.
18871         * lib/strcasestr.c: Include str-kmp.h.
18872         (knuth_morris_pratt): Remove function.
18873         (strcasestr): Update.
18874         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
18875         * modules/c-strstr (Files): Likewise.
18876         * modules/mbscasestr (Files): Likewise.
18877         * modules/mbsstr (Files): Likewise.
18878         * modules/strcasestr (Files): Likewise.
18879         Suggested by Paul Eggert.
18880
18881 2007-12-30  Bruno Haible  <bruno@clisp.org>
18882
18883         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
18884         defined.
18885
18886 2007-12-30  Bruno Haible  <bruno@clisp.org>
18887
18888         * lib/xmalloca.h: Include xalloc.h.
18889         (xnmalloca): New macro.
18890
18891 2007-12-30  Bruno Haible  <bruno@clisp.org>
18892
18893         * lib/malloca.h (nmalloca): New macro.
18894         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
18895         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
18896         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
18897         knuth_morris_pratt_multibyte): Likewise.
18898         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
18899         knuth_morris_pratt_multibyte): Likewise.
18900         * lib/memmem.c (knuth_morris_pratt): Likewise.
18901         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
18902
18903 2007-12-25  Bruno Haible  <bruno@clisp.org>
18904
18905         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
18906         * lib/glob.c: Don't include openat.h.
18907         (link_exists2_p): Add back the code that deals with the
18908         !GLOB_ALTDIRFUNC case.
18909         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
18910         let it do the filename concatenation.
18911         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
18912         * modules/glob (Depends-on): Remove openat.
18913
18914 2007-12-31  Bruno Haible  <bruno@clisp.org>
18915
18916         * modules/dirfd (License): Change to LGPLv2+.
18917         Approved by Jim Meyering.
18918
18919 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
18920
18921         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
18922         when multiplying M by sizeof (size_t).
18923
18924 2007-12-10  Martin Lambers  <marlam@marlam.de>
18925
18926         Override getpagesize on mingw.
18927         * lib/getpagesize.c: New file.
18928         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
18929         * modules/getpagesize (Files): Add lib/getpagesize.c.
18930         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
18931         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
18932         REPLACE_GETPAGESIZE.
18933         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
18934
18935 2007-12-25  Bruno Haible  <bruno@clisp.org>
18936
18937         * modules/localcharset (Notice): New field.
18938         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
18939         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
18940
18941 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
18942             Bruno Haible  <bruno@clisp.org>
18943
18944         Avoid using the syntax symbol() in formatted documentation.
18945         * MODULES.html.sh (func_module): When replacing symbol() with a
18946         hyperlink, remove the parentheses. Show an error if some remain.
18947         Recognize and render the '...' syntax.
18948         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
18949         Rework. Add paragraph about GCC's inlining.
18950         * doc/alloca.texi: Likewise.
18951         * doc/error.texi: Remove parentheses from symbol reference.
18952         * doc/gnulib-intro.texi: Likewise.
18953         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
18954         * modules/fnmatch (Description): Reword to say "the ... function".
18955         * modules/full-read (Description): Likewise.
18956         * modules/full-write (Description): Likewise.
18957         * modules/safe-read (Description): Likewise.
18958         * modules/safe-write (Description): Likewise.
18959         * modules/strchrnul (Description): Likewise.
18960         * modules/trim (Description): Likewise.
18961         * modules/error (Description): Remove parentheses from symbol
18962         references.
18963         * modules/verror (Description): Likewise.
18964         Reported by Karl Berry.
18965
18966 2007-12-25  Bruno Haible  <bruno@clisp.org>
18967
18968         Fixup after 2007-10-16 commit.
18969         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
18970
18971 2007-12-24  Bruno Haible  <bruno@clisp.org>
18972
18973         Make --enable-relocatable work with DESTDIR.
18974         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
18975         to compute installdir from destprog.
18976         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
18977         also set the RELOC_DESTDIR variable.
18978         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
18979
18980 2007-12-24  Bruno Haible  <bruno@clisp.org>
18981
18982         Fix link error due to xalloc_die().
18983         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
18984         of xreadlink.
18985         * lib/relocwrapper.c: Update comments.
18986         * build-aux/install-reloc: Remove xreadlink.c from file list.
18987         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
18988         xreadlink.c.
18989         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
18990
18991 2007-12-24  Bruno Haible  <bruno@clisp.org>
18992
18993         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
18994         * lib/setenv.h: Remove file.
18995         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
18996         lib/setenv.h.
18997         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
18998         (Depends-on): Add stdlib.
18999         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
19000         gl_FUNC_UNSETENV.
19001         (Include): Replace setenv.h with <stdlib.h>.
19002         * modules/unsetenv: New file.
19003         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
19004         * lib/unsetenv.c: Include <stdlib.h> first.
19005         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
19006         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
19007         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
19008         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
19009         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
19010         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
19011         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
19012         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
19013         * doc/functions/unsetenv.texi: Update.
19014         * modules/xsetenv (Depends-on): Add unsetenv.
19015         * modules/getdate (Depends-on): Likewise.
19016         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
19017         * lib/xsetenv.c: Don't include setenv.h.
19018         * lib/getdate.y: Likewise.
19019         * lib/relocwrapper.c: Likewise.
19020         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
19021         (Depends-on): Add stdlib.
19022         * NEWS: Mention the changes.
19023         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
19024
19025 2007-12-23  Bruno Haible  <bruno@clisp.org>
19026
19027         * lib/memmem.c (memmem): Use lowercase variable names. Tab
19028         indentation.
19029
19030 2007-12-23  Bruno Haible  <bruno@clisp.org>
19031
19032         * lib/c-strcasestr.c: Add more comments.
19033         * lib/c-strstr.c: Likewise.
19034         * lib/mbscasestr.c: Likewise.
19035         * lib/mbsstr.c: Likewise.
19036         * lib/strcasestr.c: Likewise.
19037         * lib/memmem.c: Likewise.
19038
19039 2007-12-23  Bruno Haible  <bruno@clisp.org>
19040
19041         * tests/test-memmem.c: Include <string.h> first.
19042
19043 2007-12-22  Bruno Haible  <bruno@clisp.org>
19044
19045         * gnulib-tool (func_create_testdir): Change $auxdir while generating
19046         the contents of $testsbase.
19047         Reported by Ralf Wildenhues.
19048
19049 2007-12-22  Bruno Haible  <bruno@clisp.org>
19050
19051         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
19052         two variables local_ldadd_before, local_ldadd_last.
19053
19054 2007-12-20  Eric Blake  <ebb9@byu.net>
19055
19056         Work around circular library issue when cross-compiling.
19057         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
19058         that progname.o does not need to pull in rpl_memcmp.
19059
19060 2007-12-19  Eric Blake  <ebb9@byu.net>
19061
19062         Fix memmem to avoid O(n^2) worst-case complexity.
19063         * lib/memmem.c (knuth_morris_pratt): New function.
19064         (memmem): Use it if first few naive iterations fail.
19065         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
19066         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
19067         * modules/memchr (License): Likewise.
19068         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
19069         malloca.
19070         * tests/test-memmem.c: Rewrite, borrowing ideas from
19071         test-mbsstr1.c; the old version wouldn't even compile!
19072         * modules/memmem-tests: New file.
19073         * lib/string.in.h (rpl_memmem): Add declaration.
19074         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
19075         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
19076         REPLACE_MEMMEM.
19077
19078 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
19079
19080         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
19081         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
19082         before any system include files, and undef after them all.  This
19083         should fix a problem on VMS reported by John E. Malmberg in
19084         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
19085
19086 2007-12-17  Eric Blake  <ebb9@byu.net>
19087
19088         Revert addition of verify, for BSD/OS.
19089         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
19090         can't handle large files, for the sake of obsolete platforms.
19091         * modules/fseeko (Depends-on): Remove verify.
19092         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
19093         * doc/functions/ftello.texi (ftello): Likewise.
19094         * doc/functions/fgetpos.texi (fgetpos): Likewise.
19095         Reported by Larry Jones.
19096
19097 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
19098
19099         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
19100         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
19101
19102 2007-12-17  Jim Meyering  <meyering@redhat.com>
19103
19104         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
19105         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
19106         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
19107         * modules/getcwd (Depends-on): Add openat.
19108         Reported by Petr Salinger.
19109
19110 2007-12-17  Bruno Haible  <bruno@clisp.org>
19111
19112         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
19113         avoid a segmentation fault of the configure test on x86_64 systems.
19114
19115 2007-12-15  Jim Meyering  <meyering@redhat.com>
19116
19117         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
19118
19119 2007-12-13  Eric Blake  <ebb9@byu.net>
19120
19121         Another fseek test.
19122         * tests/test-fseek.c (main): Also test ungetc handling.
19123         * tests/test-fseeko.c (main): Likewise.
19124         * modules/fseeko (Depends-on): Add verify.
19125         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
19126         large.
19127         Reported by Larry Jones.
19128
19129         Fix fseeko on mingw.
19130         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
19131         seek.
19132
19133         Beef up fseek tests.
19134         * tests/test-fseek.c (main): Also test eof handling.
19135         * tests/test-fseeko.c (main): Likewise.
19136         Reported by Larry Jones.
19137
19138 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
19139
19140         Fix fseeko on BSD-based platforms.
19141         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
19142         successful seek.
19143
19144 2007-12-12  Eric Blake  <ebb9@byu.net>
19145
19146         Allow circular dependency of separate libtests.a
19147         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
19148         when use_libtests.
19149
19150 2007-12-11  Eric Blake  <ebb9@byu.net>
19151
19152         Fix bug with -0.0L in previous patch.
19153         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
19154         * tests/test-isnan.c (main): Also test on zeroes.
19155         * tests/test-isnanf.c (main): Likewise.
19156         * tests/test-isnanl.h (main): Likewise.
19157
19158         Detect pseudo-denormals on x86 even when cross-compiling.
19159         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
19160         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
19161         invalid bit patterns that happen to satisfy ==.
19162
19163         Avoid link failures with separate libtests.a.
19164         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
19165         last, to satisfy circular dependencies.
19166
19167 2007-12-11  Eric Blake  <ebb9@byu.net>
19168         and Bruno Haible  <bruno@clisp.org>
19169
19170         Fix OpenBSD 4.0 <float.h> handling of long double.
19171         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
19172         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
19173         * doc/headers/float.texi (float.h): Document OpenBSD bug.
19174
19175 2007-12-11  Jim Meyering  <meyering@redhat.com>
19176
19177         * users.txt: Add libvirt.
19178
19179         Support versions of autoconf prior to 2.59c.
19180         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
19181         if it is not already defined.
19182
19183 2007-12-09  Bruno Haible  <bruno@clisp.org>
19184
19185         Let 'gnulib-tool --import' collect sources needed for the tests in
19186         tests/ rather than in lib/.
19187         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
19188         argument. If true, add rules to generate libtests.a, and put libtests.a
19189         into $(LDADD). Consider source files in subdirectories and set
19190         uses_subdirs.
19191         (func_emit_initmacro_start, func_emit_initmacro_end,
19192         func_emit_initmacro_done): Pass all arguments explicitly.
19193         (func_import): Determine two module lists main_modules,
19194         testsrelated_modules. Determine use_libtests. Determine two variables
19195         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
19196         instead of just sed_transform_lib_file. Determine two variables
19197         main_files and testsrelated_files. Compute 'files' as the union of
19198         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
19199         func_add_or_update. In the generated gnulib-comp.m4, collect the
19200         object files for tests/ in different variables than those for lib/.
19201         Substitute LIBTESTS_LIBDEPS.
19202         (func_create_testdir): Combine the uses_subdirs results from
19203         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
19204
19205 2007-12-09  Bruno Haible  <bruno@clisp.org>
19206
19207         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
19208         the build-aux directory.
19209
19210 2007-12-09  Bruno Haible  <bruno@clisp.org>
19211
19212         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
19213         introduced on 2006-09-09.
19214
19215 2007-12-07  Jim Meyering  <meyering@redhat.com>
19216
19217         Let these macros work also with autoconf-2.59.
19218         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
19219         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
19220         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
19221
19222 2007-12-06  Jim Meyering  <meyering@redhat.com>
19223
19224         Avoid a configure-time syntax error in gl_FUNC_ACL.
19225         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
19226         function in each branch, before testing the cache variable.
19227
19228 2007-12-04  Eric Blake  <ebb9@byu.net>
19229
19230         Make scripts executable.
19231         * build-aux/config.guess: Add execute permissions.
19232         * build-aux/config.sub: Likewise.
19233         * build-aux/gendocs.sh: Likewise.
19234
19235         Fix frexp on mingw.
19236         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
19237         cross-compiling.
19238         * doc/functions/frexp.texi (frexp): Document the bug.
19239
19240         Make cygwin fseeko check more reliable.
19241         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
19242         version numbers, rather than unrelated feature check.
19243         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
19244         * doc/functions/ftello.texi (ftello): Likewise.
19245         Reported by Bruno Haible.
19246
19247         * m4/strerror.m4: Bump version number.
19248
19249 2007-12-03  Bruno Haible  <bruno@clisp.org>
19250
19251         * doc/functions/mprotect.texi: Mention the mingw problem.
19252
19253 2007-12-03  Eric Blake  <ebb9@byu.net>
19254
19255         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
19256         REPLACE_STRERROR is initialized before this macro.
19257
19258 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
19259
19260         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
19261         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
19262         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
19263         put -lsec in even for programs other than 'ls'.  This fixes a problem
19264         for gettext reported by Bruno Haible in
19265         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
19266         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
19267         Add support for Solaris 10.  This isn't efficient, but should get the
19268         job done for now.
19269
19270 2007-12-03  James Youngman  <jay@gnu.org>
19271
19272         * doc/regexprops-generic.texi: change "an close-group" to "a
19273         close-group" and "illegal" to "not allowed".
19274
19275 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19276
19277         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
19278         pr_byname.h. Needed for the rare case when the maintainer has done
19279         "make maintainer-clean" in the source directory and then attempts a
19280         build outside the source directory.
19281         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
19282         scripts_byname.h.
19283
19284 2007-12-02  Martin Lambers <marlam@marlam.de>
19285             Bruno Haible  <bruno@clisp.org>
19286
19287         * lib/getpagesize.h: Remove file.
19288         * lib/unistd.in.h: Include declaration of getpagesize here.
19289         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
19290         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
19291         HAVE_SYS_PARAM_H.
19292         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
19293         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
19294         * modules/getpagesize (Files): Remove lib/getpagesize.h.
19295         (Depends-on): Add unistd.
19296         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
19297         (Include): Use <unistd.h> instead of getpagesize.h.
19298         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
19299         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
19300         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
19301         gl_GETPAGESIZE invocation, already handled by module dependency.
19302         * lib/pagealign_alloc.c: Don't include getpagesize.h.
19303
19304 2007-12-02  Bruno Haible  <bruno@clisp.org>
19305
19306         * modules/strings-tests: New file.
19307         * tests/test-strings.c: New file.
19308
19309         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
19310         * lib/strings.in.h: New file.
19311         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
19312         * m4/strings_h.m4: New file.
19313         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
19314         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
19315         * modules/strings: New file.
19316         * modules/string (Makefile.am): Update.
19317         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
19318         Reported by Karl Berry.
19319
19320 2007-12-01  Eric Blake  <ebb9@byu.net>
19321
19322         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
19323         accomodate fix in cygwin 1.5.25.
19324
19325 2007-12-01  Jim Meyering  <meyering@redhat.com>
19326
19327         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
19328         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
19329         that would inhibit utf8-optimization of a regexp containing line-
19330         or buffer-anchors, e.g., `^', `$'.
19331
19332 2007-11-30  Bruno Haible  <bruno@clisp.org>
19333
19334         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
19335         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
19336         glthread_recursive_lock_init.
19337         * lib/lock.c (glthread_recursive_lock_init)
19338         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
19339         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
19340
19341 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
19342
19343         New function qset_acl, like set_acl but with syscall semantics.
19344         * lib/acl.h (qset_acl): New decl.
19345         * lib/acl.c (qset_acl): New function.
19346         (set_acl): Use new function.  Use more-consistent diagnostics.
19347
19348 2007-11-28  Jim Meyering  <meyering@redhat.com>
19349
19350         * modules/physmem (License): Change from GPL to LGPLv2+.
19351
19352 2007-11-26  Bruno Haible  <bruno@clisp.org>
19353
19354         * lib/vasnprintf.c (decode_long_double): Don't abort if the
19355         'long double' type has excess precision.
19356         Reported by Jim Meyering in
19357         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
19358
19359 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19360
19361         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
19362         Sync from <http://gnu.org/licenses>.
19363         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
19364         with license text from same location.
19365         * doc/maintain.texi, doc/standards.texi:  Sync from
19366         <http://savannah.gnu.org/projects/gnustandards>.
19367
19368 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
19369         and Jim Meyering  <meyering@redhat.com>
19370
19371         Adjust getdate' grammar to accept a slightly more regular language.
19372         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
19373         Before, the former was rejected.
19374         * lib/getdate.y (digits_to_date_time): New function, factored
19375         out of ...
19376         (number): ...here.  Just call digits_to_date_time.
19377         (hybrid): New non-terminal to handle an <unsigned number,
19378         signed relative offset> sequence consistently.
19379
19380 2007-11-18  Jim Meyering  <meyering@redhat.com>
19381
19382         Pull my changes from coreutils:
19383         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
19384         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
19385         use of $gnulib_tool_option_extras, so that it's separated from the
19386         preceding argument.
19387
19388         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
19389         * build-aux/bootstrap (cp_mark_as_generated): Create any required
19390         parent destination directories before copying a file into place.
19391
19392 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
19393
19394         bootstrap: work also with 4-argument variant of AC_INIT
19395         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
19396
19397 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19398
19399         Port test-getaddrinfo to Solaris.
19400         Problem reported by Bruno Haible in
19401         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
19402         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
19403         explanation of setting 'hints'.
19404         Don't reject an implementation merely because it returns EAI_SERVICE.
19405         (EAI_SERVICE): Define to 0 if not defined.
19406
19407 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
19408
19409         The license of gnu-make and posix-shell is now "GPLed build tool".
19410         * modules/gnu-make (License): Likewise.
19411         * modules/posix-shell (License): Likewise.
19412
19413         New module posix-shell, for determining a POSIX shell
19414         or perhaps something that is close enough to a POSIX shell.
19415         * m4/posix-shell.m4: New file.
19416         * modules/posix-shell: New file.
19417
19418         * MODULES.html.sh: Mention new module.
19419
19420         New module gnu-make, for determining whether we're using GNU Make.
19421         * m4/gnu-make.m4: New file.
19422         * modules/gnu-make: New file.
19423         * MODULES.html.sh: Mention new module.
19424
19425 2007-11-14  Jim Meyering  <meyering@redhat.com>
19426
19427         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
19428         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
19429         use this macro to create a function _definition_.
19430         Remove useless "#undef ARGMATCH_DIE".
19431
19432 2007-11-14  Bruno Haible  <bruno@clisp.org>
19433
19434         * lib/config.charset: Update for OpenBSD 4.1.
19435         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
19436
19437 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
19438
19439         Document 64-bit #if problems in stdint.texi.
19440         * doc/headers/stdint.texi (stdint.h): Mention problems with
19441         64-bit-#if, and how to work around them.
19442
19443         Don't insist on 'long long int' support in the preprocessor.  It
19444         breaks too many things.  For example, PRIdMAX still uses a 'long
19445         long int' format with the latest Sun compiler, even though
19446         HAVE_LONG_LONG_INT isn't defined due to that compiler's
19447         preprocessor problem.  This causes the latest coreutils to dump
19448         core on Solaris 10 sparc with the Sun C compiler.
19449         Instead, fix the 2007-10-16 problem in a different way, by evaluating
19450         the troublesome expressions at configure-time, not at #if-time.
19451         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
19452         preprocessor.
19453         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
19454         compile-time C checks, done at 'configure'-time.
19455         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
19456         * modules/inttypes (Makefile): Substitute the new symbols that
19457         gl_INTTYPES_H now generates.
19458         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
19459
19460 2007-11-12  Bruno Haible  <bruno@clisp.org>
19461
19462         Tests for Unicode character classification functions.
19463
19464         * modules/unictype/bidicategory-byname-tests: New file.
19465         * modules/unictype/bidicategory-name-tests: New file.
19466         * modules/unictype/bidicategory-of-tests: New file.
19467         * modules/unictype/bidicategory-test-tests: New file.
19468         * modules/unictype/block-list-tests: New file.
19469         * modules/unictype/block-of-tests: New file.
19470         * modules/unictype/block-test-tests: New file.
19471         * modules/unictype/category-C-tests: New file.
19472         * modules/unictype/category-Cc-tests: New file.
19473         * modules/unictype/category-Cf-tests: New file.
19474         * modules/unictype/category-Cn-tests: New file.
19475         * modules/unictype/category-Co-tests: New file.
19476         * modules/unictype/category-Cs-tests: New file.
19477         * modules/unictype/category-L-tests: New file.
19478         * modules/unictype/category-Ll-tests: New file.
19479         * modules/unictype/category-Lm-tests: New file.
19480         * modules/unictype/category-Lo-tests: New file.
19481         * modules/unictype/category-Lt-tests: New file.
19482         * modules/unictype/category-Lu-tests: New file.
19483         * modules/unictype/category-M-tests: New file.
19484         * modules/unictype/category-Mc-tests: New file.
19485         * modules/unictype/category-Me-tests: New file.
19486         * modules/unictype/category-Mn-tests: New file.
19487         * modules/unictype/category-N-tests: New file.
19488         * modules/unictype/category-Nd-tests: New file.
19489         * modules/unictype/category-Nl-tests: New file.
19490         * modules/unictype/category-No-tests: New file.
19491         * modules/unictype/category-P-tests: New file.
19492         * modules/unictype/category-Pc-tests: New file.
19493         * modules/unictype/category-Pd-tests: New file.
19494         * modules/unictype/category-Pe-tests: New file.
19495         * modules/unictype/category-Pf-tests: New file.
19496         * modules/unictype/category-Pi-tests: New file.
19497         * modules/unictype/category-Po-tests: New file.
19498         * modules/unictype/category-Ps-tests: New file.
19499         * modules/unictype/category-S-tests: New file.
19500         * modules/unictype/category-Sc-tests: New file.
19501         * modules/unictype/category-Sk-tests: New file.
19502         * modules/unictype/category-Sm-tests: New file.
19503         * modules/unictype/category-So-tests: New file.
19504         * modules/unictype/category-Z-tests: New file.
19505         * modules/unictype/category-Zl-tests: New file.
19506         * modules/unictype/category-Zp-tests: New file.
19507         * modules/unictype/category-Zs-tests: New file.
19508         * modules/unictype/category-and-not-tests: New file.
19509         * modules/unictype/category-and-tests: New file.
19510         * modules/unictype/category-byname-tests: New file.
19511         * modules/unictype/category-name-tests: New file.
19512         * modules/unictype/category-none-tests: New file.
19513         * modules/unictype/category-of-tests: New file.
19514         * modules/unictype/category-or-tests: New file.
19515         * modules/unictype/category-test-withtable-tests: New file.
19516         * modules/unictype/combining-class-tests: New file.
19517         * modules/unictype/ctype-alnum-tests: New file.
19518         * modules/unictype/ctype-alpha-tests: New file.
19519         * modules/unictype/ctype-blank-tests: New file.
19520         * modules/unictype/ctype-cntrl-tests: New file.
19521         * modules/unictype/ctype-digit-tests: New file.
19522         * modules/unictype/ctype-graph-tests: New file.
19523         * modules/unictype/ctype-lower-tests: New file.
19524         * modules/unictype/ctype-print-tests: New file.
19525         * modules/unictype/ctype-punct-tests: New file.
19526         * modules/unictype/ctype-space-tests: New file.
19527         * modules/unictype/ctype-upper-tests: New file.
19528         * modules/unictype/ctype-xdigit-tests: New file.
19529         * modules/unictype/decimal-digit-tests: New file.
19530         * modules/unictype/digit-tests: New file.
19531         * modules/unictype/mirror-tests: New file.
19532         * modules/unictype/numeric-tests: New file.
19533         * modules/unictype/property-alphabetic-tests: New file.
19534         * modules/unictype/property-ascii-hex-digit-tests: New file.
19535         * modules/unictype/property-bidi-arabic-digit-tests: New file.
19536         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
19537         * modules/unictype/property-bidi-block-separator-tests: New file.
19538         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
19539         * modules/unictype/property-bidi-common-separator-tests: New file.
19540         * modules/unictype/property-bidi-control-tests: New file.
19541         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
19542         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
19543         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
19544         * modules/unictype/property-bidi-european-digit-tests: New file.
19545         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
19546         * modules/unictype/property-bidi-left-to-right-tests: New file.
19547         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
19548         * modules/unictype/property-bidi-other-neutral-tests: New file.
19549         * modules/unictype/property-bidi-pdf-tests: New file.
19550         * modules/unictype/property-bidi-segment-separator-tests: New file.
19551         * modules/unictype/property-bidi-whitespace-tests: New file.
19552         * modules/unictype/property-byname-tests: New file.
19553         * modules/unictype/property-combining-tests: New file.
19554         * modules/unictype/property-composite-tests: New file.
19555         * modules/unictype/property-currency-symbol-tests: New file.
19556         * modules/unictype/property-dash-tests: New file.
19557         * modules/unictype/property-decimal-digit-tests: New file.
19558         * modules/unictype/property-default-ignorable-code-point-tests: New file.
19559         * modules/unictype/property-deprecated-tests: New file.
19560         * modules/unictype/property-diacritic-tests: New file.
19561         * modules/unictype/property-extender-tests: New file.
19562         * modules/unictype/property-format-control-tests: New file.
19563         * modules/unictype/property-grapheme-base-tests: New file.
19564         * modules/unictype/property-grapheme-extend-tests: New file.
19565         * modules/unictype/property-grapheme-link-tests: New file.
19566         * modules/unictype/property-hex-digit-tests: New file.
19567         * modules/unictype/property-hyphen-tests: New file.
19568         * modules/unictype/property-id-continue-tests: New file.
19569         * modules/unictype/property-id-start-tests: New file.
19570         * modules/unictype/property-ideographic-tests: New file.
19571         * modules/unictype/property-ids-binary-operator-tests: New file.
19572         * modules/unictype/property-ids-trinary-operator-tests: New file.
19573         * modules/unictype/property-ignorable-control-tests: New file.
19574         * modules/unictype/property-iso-control-tests: New file.
19575         * modules/unictype/property-join-control-tests: New file.
19576         * modules/unictype/property-left-of-pair-tests: New file.
19577         * modules/unictype/property-line-separator-tests: New file.
19578         * modules/unictype/property-logical-order-exception-tests: New file.
19579         * modules/unictype/property-lowercase-tests: New file.
19580         * modules/unictype/property-math-tests: New file.
19581         * modules/unictype/property-non-break-tests: New file.
19582         * modules/unictype/property-not-a-character-tests: New file.
19583         * modules/unictype/property-numeric-tests: New file.
19584         * modules/unictype/property-other-alphabetic-tests: New file.
19585         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
19586         * modules/unictype/property-other-grapheme-extend-tests: New file.
19587         * modules/unictype/property-other-id-continue-tests: New file.
19588         * modules/unictype/property-other-id-start-tests: New file.
19589         * modules/unictype/property-other-lowercase-tests: New file.
19590         * modules/unictype/property-other-math-tests: New file.
19591         * modules/unictype/property-other-uppercase-tests: New file.
19592         * modules/unictype/property-paired-punctuation-tests: New file.
19593         * modules/unictype/property-paragraph-separator-tests: New file.
19594         * modules/unictype/property-pattern-syntax-tests: New file.
19595         * modules/unictype/property-pattern-white-space-tests: New file.
19596         * modules/unictype/property-private-use-tests: New file.
19597         * modules/unictype/property-punctuation-tests: New file.
19598         * modules/unictype/property-quotation-mark-tests: New file.
19599         * modules/unictype/property-radical-tests: New file.
19600         * modules/unictype/property-sentence-terminal-tests: New file.
19601         * modules/unictype/property-soft-dotted-tests: New file.
19602         * modules/unictype/property-space-tests: New file.
19603         * modules/unictype/property-terminal-punctuation-tests: New file.
19604         * modules/unictype/property-test-tests: New file.
19605         * modules/unictype/property-titlecase-tests: New file.
19606         * modules/unictype/property-unassigned-code-value-tests: New file.
19607         * modules/unictype/property-unified-ideograph-tests: New file.
19608         * modules/unictype/property-uppercase-tests: New file.
19609         * modules/unictype/property-variation-selector-tests: New file.
19610         * modules/unictype/property-white-space-tests: New file.
19611         * modules/unictype/property-xid-continue-tests: New file.
19612         * modules/unictype/property-xid-start-tests: New file.
19613         * modules/unictype/property-zero-width-tests: New file.
19614         * modules/unictype/scripts-tests: New file.
19615         * modules/unictype/syntax-c-ident-tests: New file.
19616         * modules/unictype/syntax-c-whitespace-tests: New file.
19617         * modules/unictype/syntax-java-ident-tests: New file.
19618         * modules/unictype/syntax-java-whitespace-tests: New file.
19619         * tests/unictype/test-bidi_byname.c: New file.
19620         * tests/unictype/test-bidi_name.c: New file.
19621         * tests/unictype/test-bidi_of.c: New file.
19622         * tests/unictype/test-bidi_test.c: New file.
19623         * tests/unictype/test-block_list.c: New file.
19624         * tests/unictype/test-block_of.c: New file.
19625         * tests/unictype/test-block_test.c: New file.
19626         * tests/unictype/test-categ_and.c: New file.
19627         * tests/unictype/test-categ_and_not.c: New file.
19628         * tests/unictype/test-categ_byname.c: New file.
19629         * tests/unictype/test-categ_name.c: New file.
19630         * tests/unictype/test-categ_none.c: New file.
19631         * tests/unictype/test-categ_of.c: New file.
19632         * tests/unictype/test-categ_or.c: New file.
19633         * tests/unictype/test-categ_test_withtable.c: New file.
19634         * tests/unictype/test-combining.c: New file.
19635         * tests/unictype/test-decdigit.c: New file.
19636         * tests/unictype/test-digit.c: New file.
19637         * tests/unictype/test-mirror.c: New file.
19638         * tests/unictype/test-numeric.c: New file.
19639         * tests/unictype/test-pr_byname.c: New file.
19640         * tests/unictype/test-pr_test.c: New file.
19641         * tests/unictype/test-predicate-part1.h: New file.
19642         * tests/unictype/test-predicate-part2.h: New file.
19643         * tests/unictype/test-scripts.c: New file.
19644         * tests/unictype/test-sy_c_ident.c: New file.
19645         * tests/unictype/test-sy_java_ident.c: New file.
19646
19647         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
19648         for Unicode 5.0.0.
19649         * tests/unictype/test-categ_Cc.c: Likewise.
19650         * tests/unictype/test-categ_Cf.c: Likewise.
19651         * tests/unictype/test-categ_Cn.c: Likewise.
19652         * tests/unictype/test-categ_Co.c: Likewise.
19653         * tests/unictype/test-categ_Cs.c: Likewise.
19654         * tests/unictype/test-categ_L.c: Likewise.
19655         * tests/unictype/test-categ_Ll.c: Likewise.
19656         * tests/unictype/test-categ_Lm.c: Likewise.
19657         * tests/unictype/test-categ_Lo.c: Likewise.
19658         * tests/unictype/test-categ_Lt.c: Likewise.
19659         * tests/unictype/test-categ_Lu.c: Likewise.
19660         * tests/unictype/test-categ_M.c: Likewise.
19661         * tests/unictype/test-categ_Mc.c: Likewise.
19662         * tests/unictype/test-categ_Me.c: Likewise.
19663         * tests/unictype/test-categ_Mn.c: Likewise.
19664         * tests/unictype/test-categ_N.c: Likewise.
19665         * tests/unictype/test-categ_Nd.c: Likewise.
19666         * tests/unictype/test-categ_Nl.c: Likewise.
19667         * tests/unictype/test-categ_No.c: Likewise.
19668         * tests/unictype/test-categ_P.c: Likewise.
19669         * tests/unictype/test-categ_Pc.c: Likewise.
19670         * tests/unictype/test-categ_Pd.c: Likewise.
19671         * tests/unictype/test-categ_Pe.c: Likewise.
19672         * tests/unictype/test-categ_Pf.c: Likewise.
19673         * tests/unictype/test-categ_Pi.c: Likewise.
19674         * tests/unictype/test-categ_Po.c: Likewise.
19675         * tests/unictype/test-categ_Ps.c: Likewise.
19676         * tests/unictype/test-categ_S.c: Likewise.
19677         * tests/unictype/test-categ_Sc.c: Likewise.
19678         * tests/unictype/test-categ_Sk.c: Likewise.
19679         * tests/unictype/test-categ_Sm.c: Likewise.
19680         * tests/unictype/test-categ_So.c: Likewise.
19681         * tests/unictype/test-categ_Z.c: Likewise.
19682         * tests/unictype/test-categ_Zl.c: Likewise.
19683         * tests/unictype/test-categ_Zp.c: Likewise.
19684         * tests/unictype/test-categ_Zs.c: Likewise.
19685         * tests/unictype/test-ctype_alnum.c: Likewise.
19686         * tests/unictype/test-ctype_alpha.c: Likewise.
19687         * tests/unictype/test-ctype_blank.c: Likewise.
19688         * tests/unictype/test-ctype_cntrl.c: Likewise.
19689         * tests/unictype/test-ctype_digit.c: Likewise.
19690         * tests/unictype/test-ctype_graph.c: Likewise.
19691         * tests/unictype/test-ctype_lower.c: Likewise.
19692         * tests/unictype/test-ctype_print.c: Likewise.
19693         * tests/unictype/test-ctype_punct.c: Likewise.
19694         * tests/unictype/test-ctype_space.c: Likewise.
19695         * tests/unictype/test-ctype_upper.c: Likewise.
19696         * tests/unictype/test-ctype_xdigit.c: Likewise.
19697         * tests/unictype/test-decdigit.h: Likewise.
19698         * tests/unictype/test-digit.h: Likewise.
19699         * tests/unictype/test-numeric.h: Likewise.
19700         * tests/unictype/test-pr_alphabetic.c: Likewise.
19701         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
19702         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
19703         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
19704         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
19705         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
19706         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
19707         * tests/unictype/test-pr_bidi_control.c: Likewise.
19708         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
19709         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
19710         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
19711         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
19712         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
19713         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
19714         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
19715         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
19716         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
19717         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
19718         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
19719         * tests/unictype/test-pr_combining.c: Likewise.
19720         * tests/unictype/test-pr_composite.c: Likewise.
19721         * tests/unictype/test-pr_currency_symbol.c: Likewise.
19722         * tests/unictype/test-pr_dash.c: Likewise.
19723         * tests/unictype/test-pr_decimal_digit.c: Likewise.
19724         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
19725         * tests/unictype/test-pr_deprecated.c: Likewise.
19726         * tests/unictype/test-pr_diacritic.c: Likewise.
19727         * tests/unictype/test-pr_extender.c: Likewise.
19728         * tests/unictype/test-pr_format_control.c: Likewise.
19729         * tests/unictype/test-pr_grapheme_base.c: Likewise.
19730         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
19731         * tests/unictype/test-pr_grapheme_link.c: Likewise.
19732         * tests/unictype/test-pr_hex_digit.c: Likewise.
19733         * tests/unictype/test-pr_hyphen.c: Likewise.
19734         * tests/unictype/test-pr_id_continue.c: Likewise.
19735         * tests/unictype/test-pr_id_start.c: Likewise.
19736         * tests/unictype/test-pr_ideographic.c: Likewise.
19737         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
19738         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
19739         * tests/unictype/test-pr_ignorable_control.c: Likewise.
19740         * tests/unictype/test-pr_iso_control.c: Likewise.
19741         * tests/unictype/test-pr_join_control.c: Likewise.
19742         * tests/unictype/test-pr_left_of_pair.c: Likewise.
19743         * tests/unictype/test-pr_line_separator.c: Likewise.
19744         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
19745         * tests/unictype/test-pr_lowercase.c: Likewise.
19746         * tests/unictype/test-pr_math.c: Likewise.
19747         * tests/unictype/test-pr_non_break.c: Likewise.
19748         * tests/unictype/test-pr_not_a_character.c: Likewise.
19749         * tests/unictype/test-pr_numeric.c: Likewise.
19750         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
19751         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
19752         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
19753         * tests/unictype/test-pr_other_id_continue.c: Likewise.
19754         * tests/unictype/test-pr_other_id_start.c: Likewise.
19755         * tests/unictype/test-pr_other_lowercase.c: Likewise.
19756         * tests/unictype/test-pr_other_math.c: Likewise.
19757         * tests/unictype/test-pr_other_uppercase.c: Likewise.
19758         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
19759         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
19760         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
19761         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
19762         * tests/unictype/test-pr_private_use.c: Likewise.
19763         * tests/unictype/test-pr_punctuation.c: Likewise.
19764         * tests/unictype/test-pr_quotation_mark.c: Likewise.
19765         * tests/unictype/test-pr_radical.c: Likewise.
19766         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
19767         * tests/unictype/test-pr_soft_dotted.c: Likewise.
19768         * tests/unictype/test-pr_space.c: Likewise.
19769         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
19770         * tests/unictype/test-pr_titlecase.c: Likewise.
19771         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
19772         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
19773         * tests/unictype/test-pr_uppercase.c: Likewise.
19774         * tests/unictype/test-pr_variation_selector.c: Likewise.
19775         * tests/unictype/test-pr_white_space.c: Likewise.
19776         * tests/unictype/test-pr_xid_continue.c: Likewise.
19777         * tests/unictype/test-pr_xid_start.c: Likewise.
19778         * tests/unictype/test-pr_zero_width.c: Likewise.
19779         * tests/unictype/test-sy_c_whitespace.c: Likewise.
19780         * tests/unictype/test-sy_java_whitespace.c: Likewise.
19781
19782 2007-11-12  Bruno Haible  <bruno@clisp.org>
19783
19784         Unicode character classification functions.
19785         * lib/unictype.h: New file.
19786         * modules/unictype/base: New file.
19787         * modules/unictype/category-L: New file.
19788         * modules/unictype/category-Lu: New file.
19789         * modules/unictype/category-Ll: New file.
19790         * modules/unictype/category-Lt: New file.
19791         * modules/unictype/category-Lm: New file.
19792         * modules/unictype/category-Lo: New file.
19793         * modules/unictype/category-M: New file.
19794         * modules/unictype/category-Mn: New file.
19795         * modules/unictype/category-Mc: New file.
19796         * modules/unictype/category-Me: New file.
19797         * modules/unictype/category-N: New file.
19798         * modules/unictype/category-Nd: New file.
19799         * modules/unictype/category-Nl: New file.
19800         * modules/unictype/category-No: New file.
19801         * modules/unictype/category-P: New file.
19802         * modules/unictype/category-Pc: New file.
19803         * modules/unictype/category-Pd: New file.
19804         * modules/unictype/category-Ps: New file.
19805         * modules/unictype/category-Pe: New file.
19806         * modules/unictype/category-Pi: New file.
19807         * modules/unictype/category-Pf: New file.
19808         * modules/unictype/category-Po: New file.
19809         * modules/unictype/category-S: New file.
19810         * modules/unictype/category-Sm: New file.
19811         * modules/unictype/category-Sc: New file.
19812         * modules/unictype/category-Sk: New file.
19813         * modules/unictype/category-So: New file.
19814         * modules/unictype/category-Z: New file.
19815         * modules/unictype/category-Zs: New file.
19816         * modules/unictype/category-Zl: New file.
19817         * modules/unictype/category-Zp: New file.
19818         * modules/unictype/category-C: New file.
19819         * modules/unictype/category-Cc: New file.
19820         * modules/unictype/category-Cf: New file.
19821         * modules/unictype/category-Cs: New file.
19822         * modules/unictype/category-Co: New file.
19823         * modules/unictype/category-Cn: New file.
19824         * modules/unictype/category-or: New file.
19825         * modules/unictype/category-of: New file.
19826         * modules/unictype/category-test: New file.
19827         * modules/unictype/category-test-withtable: New file.
19828         * modules/unictype/category-byname: New file.
19829         * modules/unictype/category-none: New file.
19830         * modules/unictype/category-and: New file.
19831         * modules/unictype/category-and-not: New file.
19832         * modules/unictype/category-name: New file.
19833         * modules/unictype/combining-class: New file.
19834         * modules/unictype/category-all: New file.
19835         * modules/unictype/bidicategory-all: New file.
19836         * modules/unictype/bidicategory-byname: New file.
19837         * modules/unictype/bidicategory-name: New file.
19838         * modules/unictype/bidicategory-of: New file.
19839         * modules/unictype/bidicategory-test: New file.
19840         * modules/unictype/decimal-digit: New file.
19841         * modules/unictype/digit: New file.
19842         * modules/unictype/numeric: New file.
19843         * modules/unictype/mirror: New file.
19844         * modules/unictype/property-white-space: New file.
19845         * modules/unictype/property-alphabetic: New file.
19846         * modules/unictype/property-other-alphabetic: New file.
19847         * modules/unictype/property-not-a-character: New file.
19848         * modules/unictype/property-default-ignorable-code-point: New file.
19849         * modules/unictype/property-other-default-ignorable-code-point: New
19850         file.
19851         * modules/unictype/property-deprecated: New file.
19852         * modules/unictype/property-logical-order-exception: New file.
19853         * modules/unictype/property-variation-selector: New file.
19854         * modules/unictype/property-private-use: New file.
19855         * modules/unictype/property-unassigned-code-value: New file.
19856         * modules/unictype/property-uppercase: New file.
19857         * modules/unictype/property-other-uppercase: New file.
19858         * modules/unictype/property-lowercase: New file.
19859         * modules/unictype/property-other-lowercase: New file.
19860         * modules/unictype/property-titlecase: New file.
19861         * modules/unictype/property-soft-dotted: New file.
19862         * modules/unictype/property-id-start: New file.
19863         * modules/unictype/property-other-id-start: New file.
19864         * modules/unictype/property-id-continue: New file.
19865         * modules/unictype/property-other-id-continue: New file.
19866         * modules/unictype/property-xid-start: New file.
19867         * modules/unictype/property-xid-continue: New file.
19868         * modules/unictype/property-pattern-white-space: New file.
19869         * modules/unictype/property-pattern-syntax: New file.
19870         * modules/unictype/property-join-control: New file.
19871         * modules/unictype/property-grapheme-base: New file.
19872         * modules/unictype/property-grapheme-extend: New file.
19873         * modules/unictype/property-other-grapheme-extend: New file.
19874         * modules/unictype/property-grapheme-link: New file.
19875         * modules/unictype/property-bidi-control: New file.
19876         * modules/unictype/property-bidi-left-to-right: New file.
19877         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
19878         * modules/unictype/property-bidi-arabic-right-to-left: New file.
19879         * modules/unictype/property-bidi-european-digit: New file.
19880         * modules/unictype/property-bidi-eur-num-separator: New file.
19881         * modules/unictype/property-bidi-eur-num-terminator: New file.
19882         * modules/unictype/property-bidi-arabic-digit: New file.
19883         * modules/unictype/property-bidi-common-separator: New file.
19884         * modules/unictype/property-bidi-block-separator: New file.
19885         * modules/unictype/property-bidi-segment-separator: New file.
19886         * modules/unictype/property-bidi-whitespace: New file.
19887         * modules/unictype/property-bidi-non-spacing-mark: New file.
19888         * modules/unictype/property-bidi-boundary-neutral: New file.
19889         * modules/unictype/property-bidi-pdf: New file.
19890         * modules/unictype/property-bidi-embedding-or-override: New file.
19891         * modules/unictype/property-bidi-other-neutral: New file.
19892         * modules/unictype/property-hex-digit: New file.
19893         * modules/unictype/property-ascii-hex-digit: New file.
19894         * modules/unictype/property-ideographic: New file.
19895         * modules/unictype/property-unified-ideograph: New file.
19896         * modules/unictype/property-radical: New file.
19897         * modules/unictype/property-ids-binary-operator: New file.
19898         * modules/unictype/property-ids-trinary-operator: New file.
19899         * modules/unictype/property-zero-width: New file.
19900         * modules/unictype/property-space: New file.
19901         * modules/unictype/property-non-break: New file.
19902         * modules/unictype/property-iso-control: New file.
19903         * modules/unictype/property-format-control: New file.
19904         * modules/unictype/property-dash: New file.
19905         * modules/unictype/property-hyphen: New file.
19906         * modules/unictype/property-punctuation: New file.
19907         * modules/unictype/property-line-separator: New file.
19908         * modules/unictype/property-paragraph-separator: New file.
19909         * modules/unictype/property-quotation-mark: New file.
19910         * modules/unictype/property-sentence-terminal: New file.
19911         * modules/unictype/property-terminal-punctuation: New file.
19912         * modules/unictype/property-currency-symbol: New file.
19913         * modules/unictype/property-math: New file.
19914         * modules/unictype/property-other-math: New file.
19915         * modules/unictype/property-paired-punctuation: New file.
19916         * modules/unictype/property-left-of-pair: New file.
19917         * modules/unictype/property-combining: New file.
19918         * modules/unictype/property-composite: New file.
19919         * modules/unictype/property-decimal-digit: New file.
19920         * modules/unictype/property-numeric: New file.
19921         * modules/unictype/property-diacritic: New file.
19922         * modules/unictype/property-extender: New file.
19923         * modules/unictype/property-ignorable-control: New file.
19924         * modules/unictype/property-test: New file.
19925         * modules/unictype/property-byname: New file.
19926         * modules/unictype/property-all: New file.
19927         * modules/unictype/scripts: New file.
19928         * modules/unictype/scripts-all: New file.
19929         * modules/unictype/block-of: New file.
19930         * modules/unictype/block-test: New file.
19931         * modules/unictype/block-list: New file.
19932         * modules/unictype/block-all: New file.
19933         * modules/unictype/syntax-c-whitespace: New file.
19934         * modules/unictype/syntax-java-whitespace: New file.
19935         * modules/unictype/syntax-c-ident: New file.
19936         * modules/unictype/syntax-java-ident: New file.
19937         * modules/unictype/ctype-alnum: New file.
19938         * modules/unictype/ctype-alpha: New file.
19939         * modules/unictype/ctype-cntrl: New file.
19940         * modules/unictype/ctype-digit: New file.
19941         * modules/unictype/ctype-graph: New file.
19942         * modules/unictype/ctype-lower: New file.
19943         * modules/unictype/ctype-print: New file.
19944         * modules/unictype/ctype-punct: New file.
19945         * modules/unictype/ctype-space: New file.
19946         * modules/unictype/ctype-upper: New file.
19947         * modules/unictype/ctype-xdigit: New file.
19948         * modules/unictype/ctype-blank: New file.
19949         * lib/unictype/bidi_byname.c: New file.
19950         * lib/unictype/bidi_name.c: New file.
19951         * lib/unictype/bidi_of.c: New file.
19952         * lib/unictype/bidi_test.c: New file.
19953         * lib/unictype/bitmap.h: New file.
19954         * lib/unictype/block_test.c: New file.
19955         * lib/unictype/blocks.c: New file.
19956         * lib/unictype/categ_C.c: New file.
19957         * lib/unictype/categ_Cc.c: New file.
19958         * lib/unictype/categ_Cf.c: New file.
19959         * lib/unictype/categ_Cn.c: New file.
19960         * lib/unictype/categ_Co.c: New file.
19961         * lib/unictype/categ_Cs.c: New file.
19962         * lib/unictype/categ_L.c: New file.
19963         * lib/unictype/categ_Ll.c: New file.
19964         * lib/unictype/categ_Lm.c: New file.
19965         * lib/unictype/categ_Lo.c: New file.
19966         * lib/unictype/categ_Lt.c: New file.
19967         * lib/unictype/categ_Lu.c: New file.
19968         * lib/unictype/categ_M.c: New file.
19969         * lib/unictype/categ_Mc.c: New file.
19970         * lib/unictype/categ_Me.c: New file.
19971         * lib/unictype/categ_Mn.c: New file.
19972         * lib/unictype/categ_N.c: New file.
19973         * lib/unictype/categ_Nd.c: New file.
19974         * lib/unictype/categ_Nl.c: New file.
19975         * lib/unictype/categ_No.c: New file.
19976         * lib/unictype/categ_P.c: New file.
19977         * lib/unictype/categ_Pc.c: New file.
19978         * lib/unictype/categ_Pd.c: New file.
19979         * lib/unictype/categ_Pe.c: New file.
19980         * lib/unictype/categ_Pf.c: New file.
19981         * lib/unictype/categ_Pi.c: New file.
19982         * lib/unictype/categ_Po.c: New file.
19983         * lib/unictype/categ_Ps.c: New file.
19984         * lib/unictype/categ_S.c: New file.
19985         * lib/unictype/categ_Sc.c: New file.
19986         * lib/unictype/categ_Sk.c: New file.
19987         * lib/unictype/categ_Sm.c: New file.
19988         * lib/unictype/categ_So.c: New file.
19989         * lib/unictype/categ_Z.c: New file.
19990         * lib/unictype/categ_Zl.c: New file.
19991         * lib/unictype/categ_Zp.c: New file.
19992         * lib/unictype/categ_Zs.c: New file.
19993         * lib/unictype/categ_and.c: New file.
19994         * lib/unictype/categ_and_not.c: New file.
19995         * lib/unictype/categ_byname.c: New file.
19996         * lib/unictype/categ_name.c: New file.
19997         * lib/unictype/categ_none.c: New file.
19998         * lib/unictype/categ_of.c: New file.
19999         * lib/unictype/categ_or.c: New file.
20000         * lib/unictype/categ_test.c: New file.
20001         * lib/unictype/combining.c: New file.
20002         * lib/unictype/ctype_alnum.c: New file.
20003         * lib/unictype/ctype_alpha.c: New file.
20004         * lib/unictype/ctype_blank.c: New file.
20005         * lib/unictype/ctype_cntrl.c: New file.
20006         * lib/unictype/ctype_digit.c: New file.
20007         * lib/unictype/ctype_graph.c: New file.
20008         * lib/unictype/ctype_lower.c: New file.
20009         * lib/unictype/ctype_print.c: New file.
20010         * lib/unictype/ctype_punct.c: New file.
20011         * lib/unictype/ctype_space.c: New file.
20012         * lib/unictype/ctype_upper.c: New file.
20013         * lib/unictype/ctype_xdigit.c: New file.
20014         * lib/unictype/decdigit.c: New file.
20015         * lib/unictype/digit.c: New file.
20016         * lib/unictype/identsyntaxmap.h: New file.
20017         * lib/unictype/mirror.c: New file.
20018         * lib/unictype/numeric.c: New file.
20019         * lib/unictype/pr_alphabetic.c: New file.
20020         * lib/unictype/pr_ascii_hex_digit.c: New file.
20021         * lib/unictype/pr_bidi_arabic_digit.c: New file.
20022         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
20023         * lib/unictype/pr_bidi_block_separator.c: New file.
20024         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
20025         * lib/unictype/pr_bidi_common_separator.c: New file.
20026         * lib/unictype/pr_bidi_control.c: New file.
20027         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
20028         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
20029         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
20030         * lib/unictype/pr_bidi_european_digit.c: New file.
20031         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
20032         * lib/unictype/pr_bidi_left_to_right.c: New file.
20033         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
20034         * lib/unictype/pr_bidi_other_neutral.c: New file.
20035         * lib/unictype/pr_bidi_pdf.c: New file.
20036         * lib/unictype/pr_bidi_segment_separator.c: New file.
20037         * lib/unictype/pr_bidi_whitespace.c: New file.
20038         * lib/unictype/pr_byname.c: New file.
20039         * lib/unictype/pr_byname.gperf: New file.
20040         * lib/unictype/pr_combining.c: New file.
20041         * lib/unictype/pr_composite.c: New file.
20042         * lib/unictype/pr_currency_symbol.c: New file.
20043         * lib/unictype/pr_dash.c: New file.
20044         * lib/unictype/pr_decimal_digit.c: New file.
20045         * lib/unictype/pr_default_ignorable_code_point.c: New file.
20046         * lib/unictype/pr_deprecated.c: New file.
20047         * lib/unictype/pr_diacritic.c: New file.
20048         * lib/unictype/pr_extender.c: New file.
20049         * lib/unictype/pr_format_control.c: New file.
20050         * lib/unictype/pr_grapheme_base.c: New file.
20051         * lib/unictype/pr_grapheme_extend.c: New file.
20052         * lib/unictype/pr_grapheme_link.c: New file.
20053         * lib/unictype/pr_hex_digit.c: New file.
20054         * lib/unictype/pr_hyphen.c: New file.
20055         * lib/unictype/pr_id_continue.c: New file.
20056         * lib/unictype/pr_id_start.c: New file.
20057         * lib/unictype/pr_ideographic.c: New file.
20058         * lib/unictype/pr_ids_binary_operator.c: New file.
20059         * lib/unictype/pr_ids_trinary_operator.c: New file.
20060         * lib/unictype/pr_ignorable_control.c: New file.
20061         * lib/unictype/pr_iso_control.c: New file.
20062         * lib/unictype/pr_join_control.c: New file.
20063         * lib/unictype/pr_left_of_pair.c: New file.
20064         * lib/unictype/pr_line_separator.c: New file.
20065         * lib/unictype/pr_logical_order_exception.c: New file.
20066         * lib/unictype/pr_lowercase.c: New file.
20067         * lib/unictype/pr_math.c: New file.
20068         * lib/unictype/pr_non_break.c: New file.
20069         * lib/unictype/pr_not_a_character.c: New file.
20070         * lib/unictype/pr_numeric.c: New file.
20071         * lib/unictype/pr_other_alphabetic.c: New file.
20072         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
20073         * lib/unictype/pr_other_grapheme_extend.c: New file.
20074         * lib/unictype/pr_other_id_continue.c: New file.
20075         * lib/unictype/pr_other_id_start.c: New file.
20076         * lib/unictype/pr_other_lowercase.c: New file.
20077         * lib/unictype/pr_other_math.c: New file.
20078         * lib/unictype/pr_other_uppercase.c: New file.
20079         * lib/unictype/pr_paired_punctuation.c: New file.
20080         * lib/unictype/pr_paragraph_separator.c: New file.
20081         * lib/unictype/pr_pattern_syntax.c: New file.
20082         * lib/unictype/pr_pattern_white_space.c: New file.
20083         * lib/unictype/pr_private_use.c: New file.
20084         * lib/unictype/pr_punctuation.c: New file.
20085         * lib/unictype/pr_quotation_mark.c: New file.
20086         * lib/unictype/pr_radical.c: New file.
20087         * lib/unictype/pr_sentence_terminal.c: New file.
20088         * lib/unictype/pr_soft_dotted.c: New file.
20089         * lib/unictype/pr_space.c: New file.
20090         * lib/unictype/pr_terminal_punctuation.c: New file.
20091         * lib/unictype/pr_test.c: New file.
20092         * lib/unictype/pr_titlecase.c: New file.
20093         * lib/unictype/pr_unassigned_code_value.c: New file.
20094         * lib/unictype/pr_unified_ideograph.c: New file.
20095         * lib/unictype/pr_uppercase.c: New file.
20096         * lib/unictype/pr_variation_selector.c: New file.
20097         * lib/unictype/pr_white_space.c: New file.
20098         * lib/unictype/pr_xid_continue.c: New file.
20099         * lib/unictype/pr_xid_start.c: New file.
20100         * lib/unictype/pr_zero_width.c: New file.
20101         * lib/unictype/scripts.c: New file.
20102         * lib/unictype/sy_c_ident.c: New file.
20103         * lib/unictype/sy_c_whitespace.c: New file.
20104         * lib/unictype/sy_java_ident.c: New file.
20105         * lib/unictype/sy_java_whitespace.c: New file.
20106
20107         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
20108         Unicode 5.0.0.
20109         * lib/unictype/blocks.h: Likewise.
20110         * lib/unictype/categ_C.h: Likewise.
20111         * lib/unictype/categ_Cc.h: Likewise.
20112         * lib/unictype/categ_Cf.h: Likewise.
20113         * lib/unictype/categ_Cn.h: Likewise.
20114         * lib/unictype/categ_Co.h: Likewise.
20115         * lib/unictype/categ_Cs.h: Likewise.
20116         * lib/unictype/categ_L.h: Likewise.
20117         * lib/unictype/categ_Ll.h: Likewise.
20118         * lib/unictype/categ_Lm.h: Likewise.
20119         * lib/unictype/categ_Lo.h: Likewise.
20120         * lib/unictype/categ_Lt.h: Likewise.
20121         * lib/unictype/categ_Lu.h: Likewise.
20122         * lib/unictype/categ_M.h: Likewise.
20123         * lib/unictype/categ_Mc.h: Likewise.
20124         * lib/unictype/categ_Me.h: Likewise.
20125         * lib/unictype/categ_Mn.h: Likewise.
20126         * lib/unictype/categ_N.h: Likewise.
20127         * lib/unictype/categ_Nd.h: Likewise.
20128         * lib/unictype/categ_Nl.h: Likewise.
20129         * lib/unictype/categ_No.h: Likewise.
20130         * lib/unictype/categ_P.h: Likewise.
20131         * lib/unictype/categ_Pc.h: Likewise.
20132         * lib/unictype/categ_Pd.h: Likewise.
20133         * lib/unictype/categ_Pe.h: Likewise.
20134         * lib/unictype/categ_Pf.h: Likewise.
20135         * lib/unictype/categ_Pi.h: Likewise.
20136         * lib/unictype/categ_Po.h: Likewise.
20137         * lib/unictype/categ_Ps.h: Likewise.
20138         * lib/unictype/categ_S.h: Likewise.
20139         * lib/unictype/categ_Sc.h: Likewise.
20140         * lib/unictype/categ_Sk.h: Likewise.
20141         * lib/unictype/categ_Sm.h: Likewise.
20142         * lib/unictype/categ_So.h: Likewise.
20143         * lib/unictype/categ_Z.h: Likewise.
20144         * lib/unictype/categ_Zl.h: Likewise.
20145         * lib/unictype/categ_Zp.h: Likewise.
20146         * lib/unictype/categ_Zs.h: Likewise.
20147         * lib/unictype/categ_of.h: Likewise.
20148         * lib/unictype/combining.h: Likewise.
20149         * lib/unictype/ctype_alnum.h: Likewise.
20150         * lib/unictype/ctype_alpha.h: Likewise.
20151         * lib/unictype/ctype_blank.h: Likewise.
20152         * lib/unictype/ctype_cntrl.h: Likewise.
20153         * lib/unictype/ctype_digit.h: Likewise.
20154         * lib/unictype/ctype_graph.h: Likewise.
20155         * lib/unictype/ctype_lower.h: Likewise.
20156         * lib/unictype/ctype_print.h: Likewise.
20157         * lib/unictype/ctype_punct.h: Likewise.
20158         * lib/unictype/ctype_space.h: Likewise.
20159         * lib/unictype/ctype_upper.h: Likewise.
20160         * lib/unictype/ctype_xdigit.h: Likewise.
20161         * lib/unictype/decdigit.h: Likewise.
20162         * lib/unictype/digit.h: Likewise.
20163         * lib/unictype/mirror.h: Likewise.
20164         * lib/unictype/numeric.h: Likewise.
20165         * lib/unictype/pr_alphabetic.h: Likewise.
20166         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
20167         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
20168         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
20169         * lib/unictype/pr_bidi_block_separator.h: Likewise.
20170         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
20171         * lib/unictype/pr_bidi_common_separator.h: Likewise.
20172         * lib/unictype/pr_bidi_control.h: Likewise.
20173         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
20174         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
20175         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
20176         * lib/unictype/pr_bidi_european_digit.h: Likewise.
20177         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
20178         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
20179         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
20180         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
20181         * lib/unictype/pr_bidi_pdf.h: Likewise.
20182         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
20183         * lib/unictype/pr_bidi_whitespace.h: Likewise.
20184         * lib/unictype/pr_combining.h: Likewise.
20185         * lib/unictype/pr_composite.h: Likewise.
20186         * lib/unictype/pr_currency_symbol.h: Likewise.
20187         * lib/unictype/pr_dash.h: Likewise.
20188         * lib/unictype/pr_decimal_digit.h: Likewise.
20189         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
20190         * lib/unictype/pr_deprecated.h: Likewise.
20191         * lib/unictype/pr_diacritic.h: Likewise.
20192         * lib/unictype/pr_extender.h: Likewise.
20193         * lib/unictype/pr_format_control.h: Likewise.
20194         * lib/unictype/pr_grapheme_base.h: Likewise.
20195         * lib/unictype/pr_grapheme_extend.h: Likewise.
20196         * lib/unictype/pr_grapheme_link.h: Likewise.
20197         * lib/unictype/pr_hex_digit.h: Likewise.
20198         * lib/unictype/pr_hyphen.h: Likewise.
20199         * lib/unictype/pr_id_continue.h: Likewise.
20200         * lib/unictype/pr_id_start.h: Likewise.
20201         * lib/unictype/pr_ideographic.h: Likewise.
20202         * lib/unictype/pr_ids_binary_operator.h: Likewise.
20203         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
20204         * lib/unictype/pr_ignorable_control.h: Likewise.
20205         * lib/unictype/pr_iso_control.h: Likewise.
20206         * lib/unictype/pr_join_control.h: Likewise.
20207         * lib/unictype/pr_left_of_pair.h: Likewise.
20208         * lib/unictype/pr_line_separator.h: Likewise.
20209         * lib/unictype/pr_logical_order_exception.h: Likewise.
20210         * lib/unictype/pr_lowercase.h: Likewise.
20211         * lib/unictype/pr_math.h: Likewise.
20212         * lib/unictype/pr_non_break.h: Likewise.
20213         * lib/unictype/pr_not_a_character.h: Likewise.
20214         * lib/unictype/pr_numeric.h: Likewise.
20215         * lib/unictype/pr_other_alphabetic.h: Likewise.
20216         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
20217         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
20218         * lib/unictype/pr_other_id_continue.h: Likewise.
20219         * lib/unictype/pr_other_id_start.h: Likewise.
20220         * lib/unictype/pr_other_lowercase.h: Likewise.
20221         * lib/unictype/pr_other_math.h: Likewise.
20222         * lib/unictype/pr_other_uppercase.h: Likewise.
20223         * lib/unictype/pr_paired_punctuation.h: Likewise.
20224         * lib/unictype/pr_paragraph_separator.h: Likewise.
20225         * lib/unictype/pr_pattern_syntax.h: Likewise.
20226         * lib/unictype/pr_pattern_white_space.h: Likewise.
20227         * lib/unictype/pr_private_use.h: Likewise.
20228         * lib/unictype/pr_punctuation.h: Likewise.
20229         * lib/unictype/pr_quotation_mark.h: Likewise.
20230         * lib/unictype/pr_radical.h: Likewise.
20231         * lib/unictype/pr_sentence_terminal.h: Likewise.
20232         * lib/unictype/pr_soft_dotted.h: Likewise.
20233         * lib/unictype/pr_space.h: Likewise.
20234         * lib/unictype/pr_terminal_punctuation.h: Likewise.
20235         * lib/unictype/pr_titlecase.h: Likewise.
20236         * lib/unictype/pr_unassigned_code_value.h: Likewise.
20237         * lib/unictype/pr_unified_ideograph.h: Likewise.
20238         * lib/unictype/pr_uppercase.h: Likewise.
20239         * lib/unictype/pr_variation_selector.h: Likewise.
20240         * lib/unictype/pr_white_space.h: Likewise.
20241         * lib/unictype/pr_xid_continue.h: Likewise.
20242         * lib/unictype/pr_xid_start.h: Likewise.
20243         * lib/unictype/pr_zero_width.h: Likewise.
20244         * lib/unictype/scripts.h: Likewise.
20245         * lib/unictype/scripts_byname.gperf: Likewise.
20246         * lib/unictype/sy_c_ident.h: Likewise.
20247         * lib/unictype/sy_c_whitespace.h: Likewise.
20248         * lib/unictype/sy_java_ident.h: Likewise.
20249         * lib/unictype/sy_java_whitespace.h: Likewise.
20250
20251         * lib/unictype/Makefile: New file.
20252         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
20253         glibc.
20254         * lib/unictype/3level.h: New file, copied from glibc.
20255         * lib/unictype/3levelbit.h: New file.
20256
20257 2007-11-11  Bruno Haible  <bruno@clisp.org>
20258
20259         * modules/gperf: New file.
20260         * modules/iconv_open (Depends-on): Add it.
20261         (Makefile.am): Remove the GPERF definition.
20262
20263 2007-11-11  Bruno Haible  <bruno@clisp.org>
20264
20265         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
20266         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
20267
20268 2007-11-11  Bruno Haible  <bruno@clisp.org>
20269
20270         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
20271         (usage): Remove function.
20272
20273 2007-11-11  Bruno Haible  <bruno@clisp.org>
20274
20275         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
20276         gl_FUNC_CEILF_LIBS.
20277         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
20278         gl_FUNC_CEIL_LIBS.
20279         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
20280         gl_FUNC_CEILL_LIBS.
20281         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
20282         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
20283         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
20284
20285 2007-11-11  Bruno Haible  <bruno@clisp.org>
20286
20287         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
20288         roundf were declared but do not exist on functions.
20289         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
20290         roundl were declared but do not exist on functions.
20291         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
20292         HAVE_FLOORL_AND_CEILL, respectively.
20293         Needed for Sun C on Solaris 10.
20294
20295 2007-11-11  Bruno Haible  <bruno@clisp.org>
20296
20297         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
20298         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
20299         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
20300         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
20301         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
20302         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
20303         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
20304         HAVE_DECL_ROUNDF.
20305         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
20306         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
20307         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
20308         of HAVE_DECL_ROUND*.
20309         * modules/math (Makefile.am): Update.
20310
20311 2007-11-10  Bruno Haible  <bruno@clisp.org>
20312
20313         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
20314         ptrdiff_t as m4/intl.m4.
20315
20316 2007-11-10  Jim Meyering  <meyering@redhat.com>
20317
20318         Avoid link failure for the argmatch test.
20319         * tests/test-argmatch.c (usage): Define function to avoid a link
20320         failure: argmatch_die requires a usage function.
20321
20322 2007-11-09  Bruno Haible  <bruno@clisp.org>
20323
20324         * doc/functions/snprintf.texi: Mention BeOS deficiency.
20325         * doc/functions/vsnprintf.texi: Likewise.
20326         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
20327         with a size argument < 2.
20328
20329 2007-11-09  Bruno Haible  <bruno@clisp.org>
20330
20331         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
20332         buffer. Fixes an inefficiency introduced on 2007-11-03.
20333
20334 2007-11-09  Bruno Haible  <bruno@clisp.org>
20335
20336         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
20337         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
20338
20339 2007-11-08  Jim Meyering  <meyering@redhat.com>
20340
20341         Change cache variable name prefix "jm_" to "gl_" everywhere.
20342         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
20343         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
20344         * m4/uptime.m4: s/gl_/jm_/
20345
20346 2007-11-07  Bruno Haible  <bruno@clisp.org>
20347
20348         Update to GNU gettext 0.17.
20349         * m4/intl.m4: Update to GNU gettext 0.17.
20350         * m4/po.m4: Likewise.
20351         * modules/gettext (Files): Remove m4/ulonglong.m4.
20352         (configure.ac): Require gettext infrastructure from version 0.17.
20353
20354 2007-11-06  Bruno Haible  <bruno@clisp.org>
20355
20356         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
20357         symbolic values are not defined in a public header.
20358         * lib/freadable.c (freadable) [QNX]: Likewise.
20359         * lib/freadahead.c (freadahead) [QNX]: Likewise.
20360         * lib/freading.c (freading) [QNX]: Likewise.
20361         * lib/fseterr.c (fseterr) [QNX]: Likewise.
20362         * lib/fwritable.c (fwritable) [QNX]: Likewise.
20363         * lib/fwriting.c (fwriting) [QNX]: Likewise.
20364         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
20365         Reported by Alain Magloire.
20366
20367         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
20368
20369 2007-11-05  Bruno Haible  <bruno@clisp.org>
20370
20371         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
20372         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
20373         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
20374         Reported by Eric Blake.
20375
20376 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20377             Bruno Haible  <bruno@clisp.org>
20378
20379         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
20380         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
20381         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
20382         (malloc): Undefine also before including <stdlib.h>.
20383         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
20384         Needed on OSF/1 4.0.
20385
20386 2007-11-05  Jim Meyering  <meyering@redhat.com>
20387
20388         git-version-gen: sync from coreutils.
20389         * build-aux/git-version-gen: Add comments.
20390         Change the first '-' to '.' in the snapshot version string,
20391         e.g., 6.9-377-08144 -> 6.9.377-08144
20392         Remove first parameter.
20393         Don't declare a version "-dirty" merely because a time
20394         stamp has changed.
20395
20396 2007-11-04  Bruno Haible  <bruno@clisp.org>
20397
20398         * lib/lock.h: Protect all macro definitions containing an 'if'
20399         statement through a "do { ... } while (0)".
20400         * lib/tls.h: Likewise.
20401
20402 2007-11-04  Bruno Haible  <bruno@clisp.org>
20403
20404         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
20405
20406 2007-11-04  Bruno Haible  <bruno@clisp.org>
20407
20408         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
20409         * modules/fprintf-posix (Depends-on): Add nocrash.
20410         * modules/snprintf-posix (Depends-on): Likewise.
20411         * modules/sprintf-posix (Depends-on): Likewise.
20412         * modules/vasnprintf-posix (Depends-on): Likewise.
20413         * modules/vasprintf-posix (Depends-on): Likewise.
20414         * modules/vfprintf-posix (Depends-on): Likewise.
20415         * modules/vsnprintf-posix (Depends-on): Likewise.
20416         * modules/vsprintf-posix (Depends-on): Likewise.
20417         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
20418         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
20419         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
20420         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
20421         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
20422         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
20423         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
20424
20425 2007-11-04  Bruno Haible  <bruno@clisp.org>
20426
20427         * modules/nocrash: New file.
20428         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
20429         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
20430
20431 2007-11-04  Bruno Haible  <bruno@clisp.org>
20432
20433         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
20434         precision handling.
20435         * tests/test-vasprintf-posix.c (test_function): Likewise.
20436         * tests/test-snprintf-posix.h (test_function): Likewise.
20437         * tests/test-sprintf-posix.h (test_function): Likewise.
20438
20439         Fix *printf behaviour for large precisions on mingw and BeOS.
20440         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
20441         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
20442         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
20443         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
20444         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20445         gl_PRINTF_PRECISION and test its result. Invoke
20446         gl_PREREQ_VASNPRINTF_PRECISION.
20447         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20448         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20449         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20450         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20451         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20452         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20453         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20454         * doc/functions/fprintf.texi: Update.
20455         * doc/functions/printf.texi: Update.
20456         * doc/functions/snprintf.texi: Update.
20457         * doc/functions/sprintf.texi: Update.
20458         * doc/functions/vfprintf.texi: Update.
20459         * doc/functions/vprintf.texi: Update.
20460         * doc/functions/vsnprintf.texi: Update.
20461         * doc/functions/vsprintf.texi: Update.
20462
20463 2007-11-04  Bruno Haible  <bruno@clisp.org>
20464
20465         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
20466
20467 2007-11-04  Bruno Haible  <bruno@clisp.org>
20468
20469         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
20470         Reported by Sylvain Beucler <beuc@gnu.org>.
20471
20472 2007-11-03  Bruno Haible  <bruno@clisp.org>
20473
20474         * tests/test-fprintf-posix2.sh: New file.
20475         * tests/test-fprintf-posix2.c: New file.
20476         * modules/fprintf-posix-tests (Files): Add them.
20477         (TESTS): Add test-fprintf-posix2.sh.
20478         (configure.ac): Check for getrlimit and setrlimit.
20479         (check_PROGRAMS): Add test-fprintf-posix2.
20480
20481         * tests/test-printf-posix2.sh: New file.
20482         * tests/test-printf-posix2.c: New file.
20483         * modules/printf-posix-tests (Files): Add them.
20484         (TESTS): Add test-printf-posix2.sh.
20485         (configure.ac): Check for getrlimit and setrlimit.
20486         (check_PROGRAMS): Add test-printf-posix2.
20487
20488         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
20489         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
20490         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
20491         (decode_double): New function, copied from decode_long_double.
20492         (scale10_round_decimal_decoded): New function, extracted from
20493         scale10_round_decimal_long_double.
20494         (scale10_round_decimal_long_double): Use it.
20495         (scale10_round_decimal_double): New function.
20496         (floorlog10): New function.
20497         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
20498         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
20499         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
20500         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20501         gl_PRINTF_ENOMEM and test its result. Invoke
20502         gl_PREREQ_VASNPRINTF_ENOMEM.
20503         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20504         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20505         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20506         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20507         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20508         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20509         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20510         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
20511         * modules/snprintf-posix (Depends-on): Likewise.
20512         * modules/sprintf-posix (Depends-on): Likewise.
20513         * modules/vasnprintf-posix (Depends-on): Likewise.
20514         * modules/vasprintf-posix (Depends-on): Likewise.
20515         * modules/vfprintf-posix (Depends-on): Likewise.
20516         * modules/vsnprintf-posix (Depends-on): Likewise.
20517         * modules/vsprintf-posix (Depends-on): Likewise.
20518         * doc/functions/fprintf.texi: Update.
20519         * doc/functions/printf.texi: Update.
20520         * doc/functions/snprintf.texi: Update.
20521         * doc/functions/sprintf.texi: Update.
20522         * doc/functions/vfprintf.texi: Update.
20523         * doc/functions/vprintf.texi: Update.
20524         * doc/functions/vsnprintf.texi: Update.
20525         * doc/functions/vsprintf.texi: Update.
20526
20527 2007-11-03  Bruno Haible  <bruno@clisp.org>
20528
20529         * modules/frexp-nolibm-tests: New file.
20530
20531         * modules/frexp-nolibm: New file.
20532         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
20533
20534 2007-11-03  Bruno Haible  <bruno@clisp.org>
20535
20536         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
20537         value is C99 compliant.
20538         Needed for OSF/1 5.1.
20539
20540 2007-11-03  Bruno Haible  <bruno@clisp.org>
20541
20542         Fix out-of-memory handling of vasnprintf.
20543         * lib/printf-parse.c: Include <errno.h>.
20544         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
20545         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
20546         is already set.
20547
20548 2007-11-02  Eric Blake  <ebb9@byu.net>
20549
20550         Fix tests on cygwin.
20551         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
20552
20553 2007-11-01  Bruno Haible  <bruno@clisp.org>
20554
20555         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
20556         warning.
20557         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
20558         needed for POSIX compatibility.
20559
20560 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
20561
20562         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
20563         for compatibility with GNU.
20564
20565 2007-11-01  Bruno Haible  <bruno@clisp.org>
20566
20567         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
20568         (putenv): Renamed from rpl_putenv. Change argument type from
20569         'const char *' to 'char *'.
20570         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
20571         of defining putenv in config.h, just set REPLACE_PUTENV.
20572         * modules/putenv (Depends-on): Add stdlib.
20573         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
20574         (Include): Use <stdlib.h>.
20575         * lib/stdlib.in.h (putenv): New declaration.
20576         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
20577         REPLACE_PUTENV.
20578         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
20579         REPLACE_PUTENV.
20580         Needed for MacOS X 10.5.0.
20581         Reported by Peter O'Gorman <peter@pogma.com>.
20582
20583 2007-11-01  Jim Meyering  <meyering@redhat.com>
20584
20585         Treat an empty date string exactly like "0".
20586         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
20587         if the remaining date string (to be parsed) is empty, use "0".
20588         Reported by Mischa Molhoek and discussed in this thread:
20589         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
20590
20591 2007-10-31  Bruno Haible  <bruno@clisp.org>
20592
20593         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
20594         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
20595         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
20596         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
20597         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
20598         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
20599
20600 2007-10-31  Bruno Haible  <bruno@clisp.org>
20601
20602         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
20603         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
20604         (AC_TYPE_LONG_LONG_INT): Use it.
20605         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
20606         it as well.
20607         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
20608         to m4/longlong.m4.
20609         * modules/stdint (Files): Remove m4/ulonglong.m4.
20610         * modules/strtoull (Files): Use m4/longlong.m4 instead of
20611         m4/ulonglong.m4.
20612         * modules/strtoumax (Files): Likewise.
20613
20614 2007-10-30  Bruno Haible  <bruno@clisp.org>
20615
20616         * modules/xvasprintf-posix: New file.
20617         Suggested by Eric Blake.
20618
20619 2007-10-30  Bruno Haible  <bruno@clisp.org>
20620
20621         * modules/xprintf-posix-tests: New file.
20622         * tests/test-xprintf-posix.sh: New file.
20623         * tests/test-xprintf-posix.c: New file.
20624         * tests/test-xfprintf-posix.c: New file.
20625
20626         * modules/xprintf-posix: New file.
20627
20628 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20629
20630         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
20631         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
20632         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
20633
20634 2007-10-29  Bruno Haible  <bruno@clisp.org>
20635
20636         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
20637         contain the special marker '_cv_'.
20638         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
20639         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
20640         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
20641         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
20642         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
20643         Reported by Ralf Wildenhues.
20644
20645 2007-10-29  Bruno Haible  <bruno@clisp.org>
20646
20647         * gnulib-tool (func_import): When --lgpl is not specified, set
20648         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
20649         GPLv3.
20650         Reported by Simon Josefsson.
20651
20652 2007-10-28  Bruno Haible  <bruno@clisp.org>
20653
20654         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
20655         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
20656         HAVE_DECL_ISFINITE.
20657         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
20658         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
20659         HAVE_DECL_ISFINITE.
20660
20661 2007-10-28  Bruno Haible  <bruno@clisp.org>
20662
20663         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
20664         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
20665
20666 2007-10-28  Bruno Haible  <bruno@clisp.org>
20667
20668         Fix link errors with Sun C 5.0 on Solaris 10.
20669         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
20670         function is declared but not present in the compiler's libm.
20671         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
20672         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
20673         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
20674         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
20675         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
20676         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
20677         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
20678         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
20679         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
20680         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
20681         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
20682         HAVE_DECL_FLOORL.
20683
20684 2007-10-28  Bruno Haible  <bruno@clisp.org>
20685
20686         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
20687         gl_FUNC_FLOORL. Cache the result.
20688         (gl_FUNC_FLOORL): Use it.
20689         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
20690         gl_FUNC_CEILL. Cache the result.
20691         (gl_FUNC_CEILL): Use it.
20692
20693         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
20694         gl_FUNC_FLOOR. Cache the result.
20695         (gl_FUNC_FLOOR): Use it.
20696         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
20697         gl_FUNC_CEIL. Cache the result.
20698         (gl_FUNC_CEIL): Use it.
20699
20700         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
20701         gl_FUNC_FLOORF. Cache the result.
20702         (gl_FUNC_FLOORF): Use it.
20703         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
20704         gl_FUNC_CEILF. Cache the result.
20705         (gl_FUNC_CEILF): Use it.
20706
20707 2007-10-28  Bruno Haible  <bruno@clisp.org>
20708
20709         * gnulib-tool: Allow specifying the LGPL version number through
20710         --lgpl=2 or --lgpl=3.
20711         (func_usage): Document --lgpl with argument.
20712         Handle --lgpl=... arguments.
20713         (func_import): Recognize also gl_LGPL calls with an argument. When
20714         --lgpl=2 is used and the module's license is just LGPL, report an
20715         error. Set sed_transform_lib_file according to the lgpl variable. In
20716         the generated files, use --lgpl or gl_LGPL invocations with argument,
20717         if necessary.
20718         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
20719         an LGPv2+ license.
20720         * doc/gnulib-tool.texi (Modified imports): Update explanation of
20721         gl_LGPL macro.
20722
20723 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20724             Bruno Haible  <bruno@clisp.org>
20725
20726         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
20727         (u16_uctomb_aux): Likewise.
20728         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
20729         !HAVE_INLINE.
20730         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
20731
20732 2007-10-28  Bruno Haible  <bruno@clisp.org>
20733
20734         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
20735         Invoke AM_GETTEXT_OPTION if it exists.
20736         * modules/vasprintf: Likewise.
20737         * modules/verror: Likewise.
20738         * modules/xprintf: Likewise.
20739         * modules/xvasprintf: Likewise.
20740
20741 2007-10-27  Ben Pfaff  <blp@gnu.org>
20742
20743         * lib/math.in.h: Define isfinite macro and prototypes for
20744         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
20745         implementations.
20746         * m4/math_h.m4: New substitutions for isfinite module.
20747         * lib/isfinite.c: New file.
20748         * m4/isfinite.m4: New file.
20749         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
20750         * modules/isfinite: New file.
20751         * modules/isfinite-tests: New file.
20752         * tests/tests-isfinite.c: New file.
20753         * doc/functions/isfinite.texi: Mention isfinite module.
20754         * MODULES.html.sh: Mention new module.
20755
20756 2007-10-27  Ben Pfaff  <blp@gnu.org>
20757
20758         Ralf Wildenhues reported that Tru64 4.0D declares the round
20759         functions but does not have definitions.
20760         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
20761         cannot be found in any library, set the output variable to
20762         "missing" instead of "".
20763         * m4/round.m4: Also use our substitute if we cannot find round in
20764         any library, even if it is declared.
20765         * m4/roundf.m4: Likewise for roundf.
20766         * m4/roundl.m4: Likewise for roundl.
20767         * lib/math.in.h: Undefine roundf, round, roundl before defining
20768         their replacements, to allow for hypothetical systems where these
20769         may be defined as macros but not available in libraries.
20770
20771 2007-10-27  Bruno Haible  <bruno@clisp.org>
20772
20773         * doc/gnulib.texi: Invoke @firstparagraphindent.
20774         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
20775         changes in gnulib.
20776         (Source changes): New section.
20777
20778 2007-10-26  Bruno Haible  <bruno@clisp.org>
20779
20780         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
20781         borrowed from autoconf.
20782
20783 2007-10-26  Bruno Haible  <bruno@clisp.org>
20784
20785         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
20786         strerror returned the empty string. Needed on HP-UX 11.00.
20787
20788 2007-10-24  Micah Cowan  <micah@cowan.name>
20789
20790         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
20791         * build-aux/bootstrap: Remove support for now-unnecessary option,
20792         --cvs-user, and envvars CVS_USER, CVS_RSH.
20793
20794 2007-10-24  Jim Meyering  <meyering@redhat.com>
20795
20796         Avoid diagnostics from sha1sum when there is no cached checksum.
20797         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
20798         if the po.s1 file hasn't been created yet.
20799
20800         * build-aux/bootstrap: Sync from coreutils:
20801         2007-10-24  Jim Meyering  <meyering@redhat.com>
20802         Get gnulib from the git repository, not from an obsolete cvs one.
20803         * build-aux/bootstrap: Suggestion from Micah Cowan.
20804         2007-10-04  Jim Meyering  <jim@meyering.net>
20805         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
20806         (update_po_files): Work also when there are no .po files in po/.
20807
20808 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
20809
20810         * README: Append ".git" to git and cg examples.
20811         Problem reported by Benoit Sigoure.
20812
20813 2007-10-23  Micah Cowan  <micah@cowan.name>
20814
20815         * users.txt: Add wget.
20816
20817 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20818
20819         Fix linking of some unistdio tests on FreeBSD.
20820         * modules/unistdio/u16-vsnprintf-tests
20821         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
20822         * modules/unistdio/u16-vsprintf-tests
20823         (test_u16_vsnprintf1_LDADD): Likewise.
20824         * modules/unistdio/u32-vsnprintf-tests
20825         (test_u32_vsnprintf1_LDADD): Likewise.
20826         * modules/unistdio/u32-vsprintf-tests
20827         (test_u32_vsprintf1_LDADD): Likewise.
20828         * modules/unistdio/u8-vsnprintf-tests
20829         (test_u8_vsnprintf1_LDADD): Likewise.
20830         * modules/unistdio/u8-vsprintf-tests
20831         (test_u8_vsprintf1_LDADD): Likewise.
20832         * modules/unistdio/ulc-vsnprintf-tests
20833         (test_ulc_vsnprintf1_LDADD): Likewise.
20834         * modules/unistdio/ulc-vsprintf-tests
20835         (test_ulc_vsprintf1_LDADD): Likewise.
20836
20837         Fix linking of some uniconv tests on FreeBSD.
20838         * modules/uniconv/u16-conv-from-enc-tests
20839         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
20840         * modules/uniconv/u16-conv-to-enc-tests
20841         (test_u16_conv_to_enc_LDADD): Likewise.
20842         * modules/uniconv/u16-strconv-from-enc-tests
20843         (test_u16_strconv_from_enc_LDADD): Likewise.
20844         * modules/uniconv/u16-strconv-to-enc-tests
20845         (test_u16_strconv_to_enc_LDADD): Likewise.
20846         * modules/uniconv/u32-conv-from-enc-tests
20847         (test_u32_conv_from_enc_LDADD): Likewise.
20848         * modules/uniconv/u32-conv-to-enc-tests
20849         (test_u32_conv_to_enc_LDADD): Likewise.
20850         * modules/uniconv/u32-strconv-from-enc-tests
20851         (test_u32_strconv_from_enc_LDADD): Likewise.
20852         * modules/uniconv/u32-strconv-to-enc-tests
20853         (test_u32_strconv_to_enc_LDADD): Likewise.
20854         * modules/uniconv/u8-conv-from-enc-tests
20855         (test_u8_conv_from_enc_LDADD): Likewise.
20856         * modules/uniconv/u8-conv-to-enc-tests
20857         (test_u8_conv_to_enc_LDADD): Likewise.
20858         * modules/uniconv/u8-strconv-from-enc-tests
20859         (test_u8_strconv_from_enc_LDADD): Likewise.
20860         * modules/uniconv/u8-strconv-to-enc-tests
20861         (test_u8_strconv_to_enc_LDADD): Likewise.
20862
20863 2007-10-22  Bruno Haible  <bruno@clisp.org>
20864
20865         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
20866         size.
20867
20868 2007-10-22  Eric Blake  <ebb9@byu.net>
20869
20870         Tweak x*printf documentation.
20871         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
20872         variable name and comments.
20873         Suggested by Bruno Haible.
20874
20875 2007-10-22  Bruno Haible  <bruno@clisp.org>
20876
20877         * lib/acl.c (copy_acl): Fix file name in comment.
20878
20879 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
20880
20881         Fix Tru64 problem with stdbool.h.
20882         * lib/stdbool.in.h (false, true):
20883         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
20884         Don't declare as an enum in this situation; it runs afoul of Tru64.
20885         Problem reported by Steven M. Schweda in
20886         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
20887
20888 2007-10-22  Eric Blake  <ebb9@byu.net>
20889
20890         Also wrap vf?printf.
20891         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
20892         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
20893         (xvprintf, xvfprintf): New functions.
20894
20895 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20896
20897         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
20898         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
20899
20900         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
20901         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
20902
20903 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
20904
20905         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
20906         by Bruno Haible.
20907
20908 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20909
20910         * lib/getloadavg.c
20911         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
20912         Undef `sys' after including sys/table.h, for Tru64 4.0D.
20913
20914         * tests/test-i-ring.c: Work for C89.
20915
20916 2007-10-22  Bruno Haible  <bruno@clisp.org>
20917
20918         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
20919         -1u, in preprocessor expression, so that we don't test for the bug
20920         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
20921         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
20922
20923 2007-10-22  Eric Blake  <ebb9@byu.net>
20924
20925         * tests/test-yesno.sh: Silence stderr during test.
20926
20927 2007-10-22  Simon Josefsson  <simon@josefsson.org>
20928
20929         * modules/crypto/gc-camellia: New file.
20930
20931         * m4/gc-camellia.m4: New file.
20932
20933         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
20934
20935         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
20936
20937 2007-10-22  Simon Josefsson  <simon@josefsson.org>
20938
20939         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
20940         --help to stdout.  Reported by sms@antinode.org (Steven
20941         M. Schweda).
20942
20943 2007-10-22  Simon Josefsson  <simon@josefsson.org>
20944
20945         * users.txt: Fix link to libksba.
20946
20947 2007-10-21  Ben Pfaff  <blp@gnu.org>
20948
20949         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
20950         round.c roundf implementation that depends on floorf and ceilf to
20951         be tested unconditionally.
20952
20953 2007-10-21  Ben Pfaff  <blp@gnu.org>
20954
20955         * m4/check-libm-func.m4: Removed.
20956         * m4/check-math-lib.m4: New file.
20957         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
20958         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
20959         definition and lack of AC_LIBOBJ([roundf]).
20960         * m4/roundl.m4: Ditto, and similarly for roundl.
20961         * modules/round: Reference new m4 file.
20962         * modules/roundf: Ditto.
20963         * modules/roundl: Ditto.
20964         * tests/test-round2.c (main): Use ROUND instead of round.
20965         Bug report from Bruno Haible.
20966
20967 2007-10-21  Bruno Haible  <bruno@clisp.org>
20968
20969         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
20970         context.
20971
20972 2007-10-21  Bruno Haible  <bruno@clisp.org>
20973
20974         * tests/test-wcwidth.c (main): Allow negative result for some control
20975         characters.
20976
20977         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
20978         Needed on OSF/1 5.1.
20979
20980 2007-10-21  Bruno Haible  <bruno@clisp.org>
20981
20982         * tests/test-floorf1.c: Include isnanf.h.
20983         (main): Use isnanf() instead of isnan().
20984         * tests/test-ceilf1.c: Include isnanf.h.
20985         (main): Use isnanf() instead of isnan().
20986         * tests/test-truncf1.c: Include isnanf.h.
20987         (main): Use isnanf() instead of isnan().
20988         * tests/test-roundf1.c: Include isnanf.h.
20989         (main): Use isnanf() instead of isnan().
20990
20991 2007-10-21  Eric Blake  <ebb9@byu.net>
20992
20993         * users.txt: Update URL for m4.
20994
20995 2007-10-21  Bruno Haible  <bruno@clisp.org>
20996
20997         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
20998
20999 2007-10-21  Bruno Haible  <bruno@clisp.org>
21000
21001         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
21002         Git's management files if the CVS files are not present.
21003
21004 2007-10-20  Bruno Haible  <bruno@clisp.org>
21005
21006         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
21007         gcc-3.4.x.
21008
21009 2007-10-20  Ben Pfaff  <blp@gnu.org>
21010
21011         * lib/math.in.h: Declare round, roundf, roundl if we are providing
21012         implementations.
21013         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
21014         * lib/round.c: New file.
21015         * lib/roundf.c: New file.
21016         * lib/roundl.c: New file.
21017         * m4/round.m4: New file.
21018         * m4/roundf.m4: New file.
21019         * m4/roundl.m4: New file.
21020         * m4/check-libm-func-m4: New file.
21021         * modules/math: Replace round, roundf, roundl related @VARS@ in
21022         math.in.h.
21023         * modules/round: New file.
21024         * modules/round-tests: New file.
21025         * modules/roundf: New file.
21026         * modules/roundf-tests: New file.
21027         * modules/roundl: New file.
21028         * modules/roundl-tests: New file.
21029         * tests/test-round1.c: New file.
21030         * tests/test-round2.c: New file.
21031         * tests/test-roundf1.c: New file.
21032         * tests/test-roundf2.c: New file.
21033         * tests/test-roundl.c: New file.
21034         * doc/functions/round.texi: Mention round module.
21035         * doc/functions/roundf.texi: Mention roundf module.
21036         * doc/functions/roundl.texi: Mention roundl module.
21037         * MODULES.html.sh: Mention new modules.
21038         Thanks to Bruno Haible for suggestions.
21039
21040 2007-10-20  Jim Meyering  <meyering@redhat.com>
21041
21042         * lib/xprintf.c: Include <config.h> unconditionally.
21043
21044         Change xprintf's license to GPL.
21045         * modules/xprintf (License): s/LGPL/GPL/, since this module
21046         depends on modules (exit and exitfail) which are GPL.
21047         Suggestion from Bruno Haible.
21048
21049         xprintf fixes.
21050         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
21051         Use a clearer diagnostic.
21052         Patch from Bruno Haible.
21053
21054 2007-10-20  Bruno Haible  <bruno@clisp.org>
21055
21056         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
21057         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
21058         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21059
21060 2007-10-20  Bruno Haible  <bruno@clisp.org>
21061
21062         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
21063         precision in the comparison result > x - 1 or similar.
21064         * tests/test-ceilf2.c (correct_result_p): Likewise.
21065         * tests/test-truncf2.c (correct_result_p): Likewise.
21066         * tests/test-trunc2.c (correct_result_p): Likewise.
21067         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21068
21069 2007-10-20  Bruno Haible  <bruno@clisp.org>
21070
21071         * modules/ceil: New file.
21072         * m4/ceil.m4: New file.
21073         * doc/functions/ceil.texi: Mention the 'ceil' module.
21074
21075 2007-10-20  Bruno Haible  <bruno@clisp.org>
21076
21077         * modules/floor: New file.
21078         * m4/floor.m4: New file.
21079         * doc/functions/floor.texi: Mention the 'floor' module.
21080
21081 2007-10-20  Bruno Haible  <bruno@clisp.org>
21082
21083         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
21084         of %a.
21085         * modules/floorf-tests (Depends-on): Likewise.
21086         * modules/truncf-tests (Depends-on): Likewise.
21087         * modules/trunc-tests (Depends-on): Likewise.
21088         Reported by Ben Pfaff.
21089
21090 2007-10-19  Jim Meyering  <meyering@redhat.com>
21091
21092         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
21093         Don't bother testing specific errno values.  Just test ferror.
21094
21095         New module: xprintf
21096         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
21097
21098 2007-10-19  Bruno Haible  <bruno@clisp.org>
21099
21100         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
21101         syntax.
21102         * modules/javaexec (Makefile.am): Likewise.
21103         * modules/relocatable-prog (Makefile.am): Likewise.
21104         Suggested by Jim Meyering.
21105
21106 2007-10-18  Bruno Haible  <bruno@clisp.org>
21107
21108         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
21109         Reported by Jim Meyering.
21110
21111 2007-10-18  Eric Blake  <ebb9@byu.net>
21112
21113         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
21114
21115 2007-10-18  Bruno Haible  <bruno@clisp.org>
21116
21117         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
21118         the format string into writable memory. Needed in Fortify conditions.
21119
21120 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
21121             Bruno Haible  <bruno@clisp.org>
21122
21123         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
21124         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
21125         * modules/trim (Depends-on): Add mbchar.
21126         (configure.ac): Add gl_FUNC_MBRTOWC.
21127         (Makefile.am): Augment lib_SOURCES.
21128
21129 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
21130
21131         Modify glob.c to use fstatat and dirfd, to simplify it.
21132         Suggested by Eric Blake.
21133         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
21134         Don't include <stdbool.h>; not used.
21135         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
21136         (link_exists_p): Simplify implementation, since we can now assume
21137         dirfd and fstatat.
21138         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
21139
21140 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21141
21142         * gnulib-tool (func_get_dependencies): Fix sed script to
21143         match only tests.
21144
21145 2007-10-17  Bruno Haible  <bruno@clisp.org>
21146
21147         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
21148         allow locale names without encoding suffix.
21149         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
21150         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
21151
21152 2007-10-16  Bruno Haible  <bruno@clisp.org>
21153
21154         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
21155         * lib/getgroups.c (getgroups): Likewise.
21156         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
21157
21158 2007-10-16  Bruno Haible  <bruno@clisp.org>
21159
21160         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
21161         * modules/malloc-posix (License): Likewise.
21162         * modules/realloc-posix (License): Likewise.
21163         * modules/calloc-posix (License): Likewise.
21164         * modules/intprops (License): Change from GPL to LGPL, with
21165         Paul Eggert's approval.
21166
21167 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
21168
21169         Merge glibc changes into lib/glob.c.
21170
21171         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
21172         2007-10-15 04:59:03 UTC.  Here are the changes:
21173
21174         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
21175
21176         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
21177
21178         * lib/glob.c: Add some branch prediction throughout.
21179
21180         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
21181
21182         [BZ #5103]
21183         * lib/glob.c (glob): Recognize patterns starting \/.
21184
21185         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
21186
21187         [BZ #3996]
21188         * lib/glob.c (attribute_hidden): Define if not defined.
21189         (glob): Unescape dirname, filename or username when needed and not
21190         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
21191         is NULL.  Handle unescaped [ in pattern without closing ].
21192         Don't pass GLOB_CHECK down to recursive glob for directories.
21193         (__glob_pattern_type): New function.
21194         (__glob_pattern_p): Implement using __glob_pattern_type.
21195         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
21196         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
21197         Remove unreachable code.
21198
21199         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
21200
21201         * lib/glob.c (glob_in_dir): Add some comments and asserts to
21202         explain why there are no leaks.
21203
21204         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
21205
21206         [BZ #3253]
21207         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
21208         time, rather allocate increasingly bigger arrays of pointers, if
21209         possible with alloca, if too large with malloc.
21210
21211 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
21212
21213         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
21214         Problem reported by H.Merijn Brand in
21215         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
21216         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
21217         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
21218
21219 2007-10-15  Bruno Haible  <bruno@clisp.org>
21220
21221         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
21222         with explicit rpl_ prefix.
21223         * lib/fopen.c (fopen): Likewise.
21224         * lib/freopen.c (freopen): Likewise.
21225         * lib/iconv.c (iconv): Likewise.
21226         * lib/iconv_close.c (iconv_close): Likewise.
21227
21228 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21229
21230         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
21231
21232 2007-10-15  Bruno Haible  <bruno@clisp.org>
21233
21234         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
21235         <stddef.h> instead of <stdlib.h> since we only need NULL.
21236         Reported by Ben Pfaff <blp@cs.stanford.edu>.
21237
21238 2007-10-15  Bruno Haible  <bruno@clisp.org>
21239
21240         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
21241         Replace paragraph talking about LIBOBJS.
21242         Reported by Colin Watson <cjwatson@debian.org>.
21243
21244 2007-10-15  Bruno Haible  <bruno@clisp.org>
21245
21246         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
21247         <stdlib.h> before using NULL.
21248
21249 2007-10-15  Simon Josefsson  <simon@josefsson.org>
21250
21251         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
21252         Reported by Albert Chin <china@thewrittenword.com>.
21253
21254 2007-10-14  Bruno Haible  <bruno@clisp.org>
21255
21256         * modules/iconv_open-utf-tests: New file.
21257         * tests/test-iconv-utf.c: New file.
21258
21259         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
21260         * modules/iconv_open-utf: New file.
21261         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
21262         (iconv, iconv_close): New declarations.
21263         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
21264         be defined.
21265         (iconv_open): Add special handling of conversion between UTF-8 and
21266         UTF-{16,32}{BE,LE}.
21267         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
21268         * lib/iconv_close.c: New file.
21269         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
21270         gl_FUNC_ICONV_OPEN.
21271         (gl_FUNC_ICONV_OPEN): Use it.
21272         (gl_FUNC_ICONV_OPEN_UTF): New macro.
21273         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
21274         and REPLACE_ICONV_UTF.
21275         * modules/iconv_open (Depends-on): Add c-strcase.
21276         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
21277         ICONV_CONST.
21278         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
21279
21280 2007-10-13  Albert Chin  <china@thewrittenword.com>
21281             Bruno Haible  <bruno@clisp.org>
21282
21283         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
21284         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
21285
21286 2007-10-13  Bruno Haible  <bruno@clisp.org>
21287
21288         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
21289         defined, use the ISO C99 inline semantics.
21290         * lib/argp.h (ARGP_EI): Likewise.
21291
21292 2007-10-13  Bruno Haible  <bruno@clisp.org>
21293
21294         Handle 'inline' change in gcc 4.3.0.
21295         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
21296         argp_fmtstream_write, argp_fmtstream_set_lmargin,
21297         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
21298         argp_fmtstream_point): Disable 'extern' declaration if the function
21299         definition is going to be provided inline.
21300         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
21301         semantics, not the ISO C99 inline semantics.
21302         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
21303         'extern' declaration if the function definition is going to be provided
21304         inline.
21305         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
21306         the GNU C inline semantics, not the ISO C99 inline semantics. With
21307         GCC 4.2, avoid a warning.
21308
21309 2007-10-13  Bruno Haible  <bruno@clisp.org>
21310
21311         * lib/freading.h (freading): Enable the use of __freading for
21312         glibc >= 2.7.
21313         * lib/freading.c (freading): Likewise.
21314
21315 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
21316
21317         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
21318         "warning: C99 inline functions are not supported; using GNU89".
21319
21320 2007-10-12  Bruno Haible  <bruno@clisp.org>
21321
21322         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
21323         of 2.
21324         * tests/test-ceilf2.c: New file.
21325         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
21326
21327         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
21328         * modules/ceilf-tests: Update.
21329
21330 2007-10-12  Bruno Haible  <bruno@clisp.org>
21331
21332         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
21333         of 2.
21334         * tests/test-floorf2.c: New file.
21335         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
21336
21337         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
21338         * modules/floorf-tests: Update.
21339
21340 2007-10-12  Bruno Haible  <bruno@clisp.org>
21341
21342         * tests/test-trunc2.c: New file.
21343         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
21344
21345         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
21346         * modules/trunc-tests: Update.
21347
21348 2007-10-12  Bruno Haible  <bruno@clisp.org>
21349
21350         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
21351         of 2.
21352         * tests/test-truncf2.c: New file.
21353         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
21354
21355         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
21356         * modules/truncf-tests: Update.
21357
21358 2007-10-11  Eric Blake  <ebb9@byu.net>
21359
21360         Don't claim strerror is broken on Interix.
21361         * doc/functions/strerror.texi (strerror): Known broken systems are
21362         now Solaris 8, and not Interix.
21363         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
21364         Interix on cross-compile.
21365         Reported by Martin Koeppe in
21366         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
21367
21368 2007-10-11  Bruno Haible  <bruno@clisp.org>
21369
21370         * modules/i-ring-tests: New file.
21371         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
21372         instead of assert.
21373
21374 2007-10-11  Bruno Haible  <bruno@clisp.org>
21375
21376         * modules/filenamecat-tests: New file.
21377         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
21378         * lib/filenamecat.c: Remove test code.
21379
21380 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
21381
21382         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
21383
21384         * lib/strerror.c: Include <string.h> always, to test interface,
21385         and to remove the need for the dummy.
21386         Include intprops.h to compute width instead of doing it ourselves
21387         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
21388         (strerror): Define it to return NULL if there's no system strerror.
21389         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
21390         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
21391         ancient pre-strerror Unix systems well any more.  Saying "unknown
21392         system error" is enough.
21393         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
21394         simpler strerror.c implementation.
21395         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
21396         Simplify the tests to reflect the simpler strerror implementation.
21397         * modules/strerror (Depends-on): Add intprops.
21398
21399 2007-10-09  Eric Blake  <ebb9@byu.net>
21400
21401         Silence test-fpending.
21402         * modules/fpending-tests (Files): Add wrapper script.
21403         * tests/test-fpending.sh: New file.
21404
21405 2007-10-09  Bruno Haible  <bruno@clisp.org>
21406
21407         * MODULES.html.sh (func_module): Don't create a hyperlink for
21408         function names like 'printf_frexp'.
21409         (Misc): Add crc, memxor.
21410         (Characteristics of floating types): New section.
21411         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
21412         isnanf-nolibm, signbit, trunc, truncf, truncl.
21413         (Enhancements for ISO C 99 functions): New subsection Input/output.
21414         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
21415         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
21416         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
21417         (Compatibility checks for POSIX:2001 functions): Add clock-time.
21418         (Enhancements for POSIX:2001 functions): Add chdir-long.
21419         (File system functions): Add areadlink, chdir-safer, read-file.
21420         Remove cycle-check.
21421         (File system as inode set): New section.
21422         (Date and time): Add gethrxtime.
21423         (Multithreading): Add openmp.
21424         (Internationalization functions): Add localename.
21425         (Unicode string functions): Add unistr/u*-mbsnlen.
21426         (Support for maintaining and releasing projects): Add git-version-gen.
21427         (Lone files): Remove directories.
21428
21429 2007-10-08  Ben Pfaff  <blp@gnu.org>
21430
21431         * lib/xmalloca.h: Fix typo in comment.
21432
21433 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
21434
21435         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
21436         when avoiding problems with integer overflow.  Use a portable test
21437         instead.
21438
21439 2007-10-08  Simon Josefsson  <simon@josefsson.org>
21440
21441         * modules/dummy (License): Change to LGPLv2+.
21442         * modules/float (License): Likewise
21443         * modules/realloc (License): Likewise
21444         * modules/stdlib (License): Likewise
21445
21446 2007-10-07  Bruno Haible  <bruno@clisp.org>
21447
21448         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
21449         * floor.c (TWO_MANT_DIG): Likewise.
21450         * ceil.c (TWO_MANT_DIG): Likewise.
21451         Reported by Ben Pfaff.
21452
21453 2007-10-07  Bruno Haible  <bruno@clisp.org>
21454
21455         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
21456         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
21457         * lib/frexp.c (FUNC): Likewise.
21458         * lib/printf-frexp.h (printf_frexp): Likewise.
21459         * lib/printf-frexpl.h (printf_frexpl): Likewise.
21460         * lib/printf-frexp.c (FUNC): Likewise.
21461         Suggested by Jim Meyering.
21462
21463 2007-10-07  Jim Meyering  <meyering@redhat.com>
21464
21465         Make xnanosleep's integer overflow test more robust.
21466         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
21467         so that gcc-4.3.0 doesn't optimize away this test for overflow.
21468
21469 2007-10-07  Bruno Haible  <bruno@clisp.org>
21470
21471         * NEWS: Mention the license change.
21472
21473         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
21474         abbreviations in the modules files.
21475
21476         Change copyright notice from GPLv2+ to GPLv3+.
21477         * README: Change copyright notice.
21478         * MODULES.html.sh: Likewise.
21479         * build-aux/bootstrap.conf: Likewise.
21480         * build-aux/config.libpath: Likewise.
21481         * build-aux/csharpcomp.sh.in: Likewise.
21482         * build-aux/csharpexec.sh.in: Likewise.
21483         * build-aux/install-reloc: Likewise.
21484         * build-aux/javacomp.sh.in: Likewise.
21485         * build-aux/javaexec.sh.in: Likewise.
21486         * build-aux/ldd.sh.in: Likewise.
21487         * build-aux/reloc-ldflags: Likewise.
21488         * build-aux/relocatable.sh.in: Likewise.
21489         * build-aux/x-to-1.in: Likewise.
21490         * check-module: Likewise.
21491         * config/srclistvars.sh: Likewise.
21492         * gnulib-tool: Likewise.
21493         * lib/acl-internal.h: Likewise.
21494         * lib/acl.c: Likewise.
21495         * lib/acl.h: Likewise.
21496         * lib/acl_entries.c: Likewise.
21497         * lib/areadlink-with-size.c: Likewise.
21498         * lib/areadlink.c: Likewise.
21499         * lib/areadlink.h: Likewise.
21500         * lib/argmatch.c: Likewise.
21501         * lib/argmatch.h: Likewise.
21502         * lib/argp-ba.c: Likewise.
21503         * lib/argp-eexst.c: Likewise.
21504         * lib/argp-fmtstream.c: Likewise.
21505         * lib/argp-fmtstream.h: Likewise.
21506         * lib/argp-fs-xinl.c: Likewise.
21507         * lib/argp-help.c: Likewise.
21508         * lib/argp-namefrob.h: Likewise.
21509         * lib/argp-parse.c: Likewise.
21510         * lib/argp-pin.c: Likewise.
21511         * lib/argp-pv.c: Likewise.
21512         * lib/argp-pvh.c: Likewise.
21513         * lib/argp-xinl.c: Likewise.
21514         * lib/argp.h: Likewise.
21515         * lib/at-func.c: Likewise.
21516         * lib/atanl.c: Likewise.
21517         * lib/backupfile.c: Likewise.
21518         * lib/backupfile.h: Likewise.
21519         * lib/basename.c: Likewise.
21520         * lib/binary-io.h: Likewise.
21521         * lib/byteswap.in.h: Likewise.
21522         * lib/c-stack.c: Likewise.
21523         * lib/c-stack.h: Likewise.
21524         * lib/c-strcasestr.c: Likewise.
21525         * lib/c-strcasestr.h: Likewise.
21526         * lib/c-strstr.c: Likewise.
21527         * lib/c-strstr.h: Likewise.
21528         * lib/c-strtod.c: Likewise.
21529         * lib/calloc.c: Likewise.
21530         * lib/canon-host.c: Likewise.
21531         * lib/canon-host.h: Likewise.
21532         * lib/canonicalize-lgpl.c: Likewise.
21533         * lib/canonicalize.c: Likewise.
21534         * lib/canonicalize.h: Likewise.
21535         * lib/ceil.c: Likewise.
21536         * lib/ceilf.c: Likewise.
21537         * lib/ceill.c: Likewise.
21538         * lib/chdir-long.c: Likewise.
21539         * lib/chdir-long.h: Likewise.
21540         * lib/chdir-safer.c: Likewise.
21541         * lib/chdir-safer.h: Likewise.
21542         * lib/chown.c: Likewise.
21543         * lib/classpath.c: Likewise.
21544         * lib/classpath.h: Likewise.
21545         * lib/clean-temp.c: Likewise.
21546         * lib/clean-temp.h: Likewise.
21547         * lib/cloexec.c: Likewise.
21548         * lib/close-stream.c: Likewise.
21549         * lib/closein.c: Likewise.
21550         * lib/closein.h: Likewise.
21551         * lib/closeout.c: Likewise.
21552         * lib/closeout.h: Likewise.
21553         * lib/concat-filename.c: Likewise.
21554         * lib/copy-file.c: Likewise.
21555         * lib/copy-file.h: Likewise.
21556         * lib/count-one-bits.h: Likewise.
21557         * lib/crc.c: Likewise.
21558         * lib/crc.h: Likewise.
21559         * lib/creat-safer.c: Likewise.
21560         * lib/csharpcomp.c: Likewise.
21561         * lib/csharpcomp.h: Likewise.
21562         * lib/csharpexec.c: Likewise.
21563         * lib/csharpexec.h: Likewise.
21564         * lib/cycle-check.c: Likewise.
21565         * lib/cycle-check.h: Likewise.
21566         * lib/diacrit.c: Likewise.
21567         * lib/diacrit.h: Likewise.
21568         * lib/diffseq.h: Likewise.
21569         * lib/dirchownmod.c: Likewise.
21570         * lib/dirent.in.h: Likewise.
21571         * lib/dirfd.c: Likewise.
21572         * lib/dirfd.h: Likewise.
21573         * lib/dirname.c: Likewise.
21574         * lib/dirname.h: Likewise.
21575         * lib/dummy.c: Likewise.
21576         * lib/dup-safer.c: Likewise.
21577         * lib/dup2.c: Likewise.
21578         * lib/eealloc.h: Likewise.
21579         * lib/error.c: Likewise.
21580         * lib/error.h: Likewise.
21581         * lib/euidaccess.c: Likewise.
21582         * lib/exclude.c: Likewise.
21583         * lib/exclude.h: Likewise.
21584         * lib/execute.c: Likewise.
21585         * lib/execute.h: Likewise.
21586         * lib/exitfail.c: Likewise.
21587         * lib/exitfail.h: Likewise.
21588         * lib/expl.c: Likewise.
21589         * lib/fatal-signal.c: Likewise.
21590         * lib/fatal-signal.h: Likewise.
21591         * lib/fbufmode.c: Likewise.
21592         * lib/fbufmode.h: Likewise.
21593         * lib/fchdir.c: Likewise.
21594         * lib/fchmodat.c: Likewise.
21595         * lib/fchownat.c: Likewise.
21596         * lib/fcntl--.h: Likewise.
21597         * lib/fcntl-safer.h: Likewise.
21598         * lib/fcntl.in.h: Likewise.
21599         * lib/fd-safer.c: Likewise.
21600         * lib/fflush.c: Likewise.
21601         * lib/file-has-acl.c: Likewise.
21602         * lib/file-set.c: Likewise.
21603         * lib/file-type.c: Likewise.
21604         * lib/file-type.h: Likewise.
21605         * lib/fileblocks.c: Likewise.
21606         * lib/filemode.c: Likewise.
21607         * lib/filemode.h: Likewise.
21608         * lib/filename.h: Likewise.
21609         * lib/filenamecat.c: Likewise.
21610         * lib/filenamecat.h: Likewise.
21611         * lib/findprog.c: Likewise.
21612         * lib/findprog.h: Likewise.
21613         * lib/float.in.h: Likewise.
21614         * lib/floor.c: Likewise.
21615         * lib/floorf.c: Likewise.
21616         * lib/floorl.c: Likewise.
21617         * lib/fopen-safer.c: Likewise.
21618         * lib/fopen.c: Likewise.
21619         * lib/fpending.c: Likewise.
21620         * lib/fpending.h: Likewise.
21621         * lib/fprintf.c: Likewise.
21622         * lib/fprintftime.h: Likewise.
21623         * lib/fpucw.h: Likewise.
21624         * lib/fpurge.c: Likewise.
21625         * lib/fpurge.h: Likewise.
21626         * lib/freadable.c: Likewise.
21627         * lib/freadable.h: Likewise.
21628         * lib/freadahead.c: Likewise.
21629         * lib/freadahead.h: Likewise.
21630         * lib/freading.c: Likewise.
21631         * lib/freading.h: Likewise.
21632         * lib/free.c: Likewise.
21633         * lib/freopen.c: Likewise.
21634         * lib/frexp.c: Likewise.
21635         * lib/frexpl.c: Likewise.
21636         * lib/fseek.c: Likewise.
21637         * lib/fseterr.c: Likewise.
21638         * lib/fseterr.h: Likewise.
21639         * lib/fstatat.c: Likewise.
21640         * lib/fstrcmp.c: Likewise.
21641         * lib/fstrcmp.h: Likewise.
21642         * lib/fsusage.c: Likewise.
21643         * lib/fsusage.h: Likewise.
21644         * lib/ftell.c: Likewise.
21645         * lib/ftello.c: Likewise.
21646         * lib/fts-cycle.c: Likewise.
21647         * lib/fts.c: Likewise.
21648         * lib/fts_.h: Likewise.
21649         * lib/full-read.c: Likewise.
21650         * lib/full-read.h: Likewise.
21651         * lib/full-write.c: Likewise.
21652         * lib/full-write.h: Likewise.
21653         * lib/fwritable.c: Likewise.
21654         * lib/fwritable.h: Likewise.
21655         * lib/fwriteerror.c: Likewise.
21656         * lib/fwriteerror.h: Likewise.
21657         * lib/fwriting.c: Likewise.
21658         * lib/fwriting.h: Likewise.
21659         * lib/gcd.c: Likewise.
21660         * lib/gcd.h: Likewise.
21661         * lib/getcwd.c: Likewise.
21662         * lib/getdate.h: Likewise.
21663         * lib/getdate.y: Likewise.
21664         * lib/getdomainname.c: Likewise.
21665         * lib/getdomainname.h: Likewise.
21666         * lib/getgroups.c: Likewise.
21667         * lib/gethostname.c: Likewise.
21668         * lib/gethrxtime.c: Likewise.
21669         * lib/gethrxtime.h: Likewise.
21670         * lib/getloadavg.c: Likewise.
21671         * lib/getndelim2.c: Likewise.
21672         * lib/getndelim2.h: Likewise.
21673         * lib/getnline.c: Likewise.
21674         * lib/getnline.h: Likewise.
21675         * lib/getopt.c: Likewise.
21676         * lib/getopt.in.h: Likewise.
21677         * lib/getopt1.c: Likewise.
21678         * lib/getopt_int.h: Likewise.
21679         * lib/getpagesize.h: Likewise.
21680         * lib/getsubopt.c: Likewise.
21681         * lib/gettime.c: Likewise.
21682         * lib/getugroups.c: Likewise.
21683         * lib/getugroups.h: Likewise.
21684         * lib/getusershell.c: Likewise.
21685         * lib/gl_anyavltree_list1.h: Likewise.
21686         * lib/gl_anyavltree_list2.h: Likewise.
21687         * lib/gl_anyhash_list1.h: Likewise.
21688         * lib/gl_anyhash_list2.h: Likewise.
21689         * lib/gl_anylinked_list1.h: Likewise.
21690         * lib/gl_anylinked_list2.h: Likewise.
21691         * lib/gl_anyrbtree_list1.h: Likewise.
21692         * lib/gl_anyrbtree_list2.h: Likewise.
21693         * lib/gl_anytree_list1.h: Likewise.
21694         * lib/gl_anytree_list2.h: Likewise.
21695         * lib/gl_anytree_oset.h: Likewise.
21696         * lib/gl_anytreehash_list1.h: Likewise.
21697         * lib/gl_anytreehash_list2.h: Likewise.
21698         * lib/gl_array_list.c: Likewise.
21699         * lib/gl_array_list.h: Likewise.
21700         * lib/gl_array_oset.c: Likewise.
21701         * lib/gl_array_oset.h: Likewise.
21702         * lib/gl_avltree_list.c: Likewise.
21703         * lib/gl_avltree_list.h: Likewise.
21704         * lib/gl_avltree_oset.c: Likewise.
21705         * lib/gl_avltree_oset.h: Likewise.
21706         * lib/gl_avltreehash_list.c: Likewise.
21707         * lib/gl_avltreehash_list.h: Likewise.
21708         * lib/gl_carray_list.c: Likewise.
21709         * lib/gl_carray_list.h: Likewise.
21710         * lib/gl_linked_list.c: Likewise.
21711         * lib/gl_linked_list.h: Likewise.
21712         * lib/gl_linkedhash_list.c: Likewise.
21713         * lib/gl_linkedhash_list.h: Likewise.
21714         * lib/gl_list.c: Likewise.
21715         * lib/gl_list.h: Likewise.
21716         * lib/gl_oset.c: Likewise.
21717         * lib/gl_oset.h: Likewise.
21718         * lib/gl_rbtree_list.c: Likewise.
21719         * lib/gl_rbtree_list.h: Likewise.
21720         * lib/gl_rbtree_oset.c: Likewise.
21721         * lib/gl_rbtree_oset.h: Likewise.
21722         * lib/gl_rbtreehash_list.c: Likewise.
21723         * lib/gl_rbtreehash_list.h: Likewise.
21724         * lib/gl_sublist.c: Likewise.
21725         * lib/gl_sublist.h: Likewise.
21726         * lib/group-member.c: Likewise.
21727         * lib/group-member.h: Likewise.
21728         * lib/hard-locale.c: Likewise.
21729         * lib/hard-locale.h: Likewise.
21730         * lib/hash-pjw.c: Likewise.
21731         * lib/hash-pjw.h: Likewise.
21732         * lib/hash-triple.c: Likewise.
21733         * lib/hash.c: Likewise.
21734         * lib/hash.h: Likewise.
21735         * lib/human.c: Likewise.
21736         * lib/human.h: Likewise.
21737         * lib/i-ring.c: Likewise.
21738         * lib/i-ring.h: Likewise.
21739         * lib/idcache.c: Likewise.
21740         * lib/imaxabs.c: Likewise.
21741         * lib/imaxdiv.c: Likewise.
21742         * lib/inet_pton.c: Likewise.
21743         * lib/inet_pton.h: Likewise.
21744         * lib/intprops.h: Likewise.
21745         * lib/inttostr.c: Likewise.
21746         * lib/inttostr.h: Likewise.
21747         * lib/inttypes.in.h: Likewise.
21748         * lib/isapipe.c: Likewise.
21749         * lib/isdir.c: Likewise.
21750         * lib/isnan.c: Likewise.
21751         * lib/isnan.h: Likewise.
21752         * lib/isnanf.c: Likewise.
21753         * lib/isnanf.h: Likewise.
21754         * lib/isnanl-nolibm.h: Likewise.
21755         * lib/isnanl.c: Likewise.
21756         * lib/isnanl.h: Likewise.
21757         * lib/javacomp.c: Likewise.
21758         * lib/javacomp.h: Likewise.
21759         * lib/javaexec.c: Likewise.
21760         * lib/javaexec.h: Likewise.
21761         * lib/javaversion.c: Likewise.
21762         * lib/javaversion.h: Likewise.
21763         * lib/javaversion.java: Likewise.
21764         * lib/lbrkprop.h: Likewise.
21765         * lib/lchmod.h: Likewise.
21766         * lib/lchown.c: Likewise.
21767         * lib/ldexpl.c: Likewise.
21768         * lib/linebreak.c: Likewise.
21769         * lib/linebreak.h: Likewise.
21770         * lib/linebuffer.c: Likewise.
21771         * lib/linebuffer.h: Likewise.
21772         * lib/locale.in.h: Likewise.
21773         * lib/logl.c: Likewise.
21774         * lib/long-options.c: Likewise.
21775         * lib/long-options.h: Likewise.
21776         * lib/lstat.c: Likewise.
21777         * lib/lstat.h: Likewise.
21778         * lib/math.in.h: Likewise.
21779         * lib/mbchar.c: Likewise.
21780         * lib/mbchar.h: Likewise.
21781         * lib/mbfile.h: Likewise.
21782         * lib/mbiter.h: Likewise.
21783         * lib/mbscasecmp.c: Likewise.
21784         * lib/mbscasestr.c: Likewise.
21785         * lib/mbschr.c: Likewise.
21786         * lib/mbscspn.c: Likewise.
21787         * lib/mbslen.c: Likewise.
21788         * lib/mbsncasecmp.c: Likewise.
21789         * lib/mbsnlen.c: Likewise.
21790         * lib/mbspbrk.c: Likewise.
21791         * lib/mbspcasecmp.c: Likewise.
21792         * lib/mbsrchr.c: Likewise.
21793         * lib/mbssep.c: Likewise.
21794         * lib/mbsspn.c: Likewise.
21795         * lib/mbsstr.c: Likewise.
21796         * lib/mbstok_r.c: Likewise.
21797         * lib/mbswidth.c: Likewise.
21798         * lib/mbswidth.h: Likewise.
21799         * lib/mbuiter.h: Likewise.
21800         * lib/memcasecmp.c: Likewise.
21801         * lib/memcasecmp.h: Likewise.
21802         * lib/memchr.c: Likewise.
21803         * lib/memcmp.c: Likewise.
21804         * lib/memcoll.c: Likewise.
21805         * lib/memcoll.h: Likewise.
21806         * lib/memcpy.c: Likewise.
21807         * lib/memrchr.c: Likewise.
21808         * lib/mkancesdirs.c: Likewise.
21809         * lib/mkdir-p.c: Likewise.
21810         * lib/mkdir-p.h: Likewise.
21811         * lib/mkdir.c: Likewise.
21812         * lib/mkdirat.c: Likewise.
21813         * lib/mkdtemp.c: Likewise.
21814         * lib/mkstemp-safer.c: Likewise.
21815         * lib/mkstemp.c: Likewise.
21816         * lib/modechange.c: Likewise.
21817         * lib/modechange.h: Likewise.
21818         * lib/mountlist.c: Likewise.
21819         * lib/mountlist.h: Likewise.
21820         * lib/mpsort.c: Likewise.
21821         * lib/nanosleep.c: Likewise.
21822         * lib/obstack.c: Likewise.
21823         * lib/obstack.h: Likewise.
21824         * lib/open-safer.c: Likewise.
21825         * lib/open.c: Likewise.
21826         * lib/openat-die.c: Likewise.
21827         * lib/openat-priv.h: Likewise.
21828         * lib/openat-proc.c: Likewise.
21829         * lib/openat.c: Likewise.
21830         * lib/openat.h: Likewise.
21831         * lib/pagealign_alloc.c: Likewise.
21832         * lib/pagealign_alloc.h: Likewise.
21833         * lib/physmem.c: Likewise.
21834         * lib/physmem.h: Likewise.
21835         * lib/pipe-safer.c: Likewise.
21836         * lib/pipe.c: Likewise.
21837         * lib/pipe.h: Likewise.
21838         * lib/posixtm.c: Likewise.
21839         * lib/posixtm.h: Likewise.
21840         * lib/posixver.c: Likewise.
21841         * lib/printf-frexp.c: Likewise.
21842         * lib/printf-frexp.h: Likewise.
21843         * lib/printf-frexpl.c: Likewise.
21844         * lib/printf-frexpl.h: Likewise.
21845         * lib/printf.c: Likewise.
21846         * lib/progname.c: Likewise.
21847         * lib/progname.h: Likewise.
21848         * lib/progreloc.c: Likewise.
21849         * lib/putenv.c: Likewise.
21850         * lib/quote.c: Likewise.
21851         * lib/quote.h: Likewise.
21852         * lib/quotearg.c: Likewise.
21853         * lib/quotearg.h: Likewise.
21854         * lib/raise.c: Likewise.
21855         * lib/readline.c: Likewise.
21856         * lib/readline.h: Likewise.
21857         * lib/readlink.c: Likewise.
21858         * lib/readtokens.c: Likewise.
21859         * lib/readtokens.h: Likewise.
21860         * lib/readtokens0.c: Likewise.
21861         * lib/readtokens0.h: Likewise.
21862         * lib/readutmp.c: Likewise.
21863         * lib/readutmp.h: Likewise.
21864         * lib/realloc.c: Likewise.
21865         * lib/relocwrapper.c: Likewise.
21866         * lib/rename-dest-slash.c: Likewise.
21867         * lib/rename.c: Likewise.
21868         * lib/rmdir.c: Likewise.
21869         * lib/rpmatch.c: Likewise.
21870         * lib/safe-read.c: Likewise.
21871         * lib/safe-read.h: Likewise.
21872         * lib/safe-write.c: Likewise.
21873         * lib/safe-write.h: Likewise.
21874         * lib/same-inode.h: Likewise.
21875         * lib/same.c: Likewise.
21876         * lib/same.h: Likewise.
21877         * lib/save-cwd.c: Likewise.
21878         * lib/save-cwd.h: Likewise.
21879         * lib/savedir.c: Likewise.
21880         * lib/savedir.h: Likewise.
21881         * lib/savewd.c: Likewise.
21882         * lib/savewd.h: Likewise.
21883         * lib/search.in.h: Likewise.
21884         * lib/setenv.c: Likewise.
21885         * lib/setenv.h: Likewise.
21886         * lib/settime.c: Likewise.
21887         * lib/sh-quote.c: Likewise.
21888         * lib/sh-quote.h: Likewise.
21889         * lib/sig2str.c: Likewise.
21890         * lib/sig2str.h: Likewise.
21891         * lib/signal.in.h: Likewise.
21892         * lib/signbitd.c: Likewise.
21893         * lib/signbitf.c: Likewise.
21894         * lib/signbitl.c: Likewise.
21895         * lib/sigprocmask.c: Likewise.
21896         * lib/sincosl.c: Likewise.
21897         * lib/sleep.c: Likewise.
21898         * lib/sprintf.c: Likewise.
21899         * lib/sqrtl.c: Likewise.
21900         * lib/stat-time.h: Likewise.
21901         * lib/stdio--.h: Likewise.
21902         * lib/stdio-safer.h: Likewise.
21903         * lib/stdlib--.h: Likewise.
21904         * lib/stdlib-safer.h: Likewise.
21905         * lib/stdlib.in.h: Likewise.
21906         * lib/stpcpy.c: Likewise.
21907         * lib/stpncpy.c: Likewise.
21908         * lib/strchrnul.c: Likewise.
21909         * lib/strcspn.c: Likewise.
21910         * lib/strerror.c: Likewise.
21911         * lib/strftime.c: Likewise.
21912         * lib/strftime.h: Likewise.
21913         * lib/striconveh.c: Likewise.
21914         * lib/striconveh.h: Likewise.
21915         * lib/striconveha.c: Likewise.
21916         * lib/striconveha.h: Likewise.
21917         * lib/stripslash.c: Likewise.
21918         * lib/strnlen1.c: Likewise.
21919         * lib/strnlen1.h: Likewise.
21920         * lib/strtod.c: Likewise.
21921         * lib/strtoimax.c: Likewise.
21922         * lib/strtok_r.c: Likewise.
21923         * lib/strtol.c: Likewise.
21924         * lib/strtoll.c: Likewise.
21925         * lib/strtoul.c: Likewise.
21926         * lib/strtoull.c: Likewise.
21927         * lib/sysexits.in.h: Likewise.
21928         * lib/tempname.c: Likewise.
21929         * lib/tempname.h: Likewise.
21930         * lib/timespec.h: Likewise.
21931         * lib/tls.c: Likewise.
21932         * lib/tls.h: Likewise.
21933         * lib/tmpdir.c: Likewise.
21934         * lib/tmpdir.h: Likewise.
21935         * lib/tmpfile-safer.c: Likewise.
21936         * lib/tmpfile.c: Likewise.
21937         * lib/trigl.c: Likewise.
21938         * lib/trigl.h: Likewise.
21939         * lib/trim.c: Likewise.
21940         * lib/trim.h: Likewise.
21941         * lib/trunc.c: Likewise.
21942         * lib/truncf.c: Likewise.
21943         * lib/truncl.c: Likewise.
21944         * lib/tsearch.c: Likewise.
21945         * lib/unicodeio.c: Likewise.
21946         * lib/unicodeio.h: Likewise.
21947         * lib/unistd--.h: Likewise.
21948         * lib/unistd-safer.h: Likewise.
21949         * lib/unistdio/ulc-fprintf.c: Likewise.
21950         * lib/unistdio/ulc-vfprintf.c: Likewise.
21951         * lib/unlinkdir.c: Likewise.
21952         * lib/unlinkdir.h: Likewise.
21953         * lib/unlocked-io.h: Likewise.
21954         * lib/unsetenv.c: Likewise.
21955         * lib/userspec.c: Likewise.
21956         * lib/utime.c: Likewise.
21957         * lib/utimecmp.c: Likewise.
21958         * lib/utimecmp.h: Likewise.
21959         * lib/utimens.c: Likewise.
21960         * lib/verify.h: Likewise.
21961         * lib/verror.c: Likewise.
21962         * lib/verror.h: Likewise.
21963         * lib/version-etc-fsf.c: Likewise.
21964         * lib/version-etc.c: Likewise.
21965         * lib/version-etc.h: Likewise.
21966         * lib/vfprintf.c: Likewise.
21967         * lib/vprintf.c: Likewise.
21968         * lib/vsprintf.c: Likewise.
21969         * lib/w32spawn.h: Likewise.
21970         * lib/wait-process.c: Likewise.
21971         * lib/wait-process.h: Likewise.
21972         * lib/wcwidth.c: Likewise.
21973         * lib/write-any-file.c: Likewise.
21974         * lib/xalloc-die.c: Likewise.
21975         * lib/xalloc.h: Likewise.
21976         * lib/xasprintf.c: Likewise.
21977         * lib/xgetcwd.c: Likewise.
21978         * lib/xgetcwd.h: Likewise.
21979         * lib/xgetdomainname.c: Likewise.
21980         * lib/xgetdomainname.h: Likewise.
21981         * lib/xgethostname.c: Likewise.
21982         * lib/xmalloc.c: Likewise.
21983         * lib/xmalloca.c: Likewise.
21984         * lib/xmalloca.h: Likewise.
21985         * lib/xmemcoll.c: Likewise.
21986         * lib/xnanosleep.c: Likewise.
21987         * lib/xreadlink.c: Likewise.
21988         * lib/xreadlink.h: Likewise.
21989         * lib/xsetenv.c: Likewise.
21990         * lib/xsetenv.h: Likewise.
21991         * lib/xstriconv.c: Likewise.
21992         * lib/xstriconv.h: Likewise.
21993         * lib/xstrndup.c: Likewise.
21994         * lib/xstrndup.h: Likewise.
21995         * lib/xstrtod.c: Likewise.
21996         * lib/xstrtod.h: Likewise.
21997         * lib/xstrtol-error.c: Likewise.
21998         * lib/xstrtol.c: Likewise.
21999         * lib/xstrtol.h: Likewise.
22000         * lib/xtime.h: Likewise.
22001         * lib/xvasprintf.c: Likewise.
22002         * lib/xvasprintf.h: Likewise.
22003         * lib/yesno.c: Likewise.
22004         * lib/yesno.h: Likewise.
22005         * posix-modules: Likewise.
22006         * tests/test-alloca-opt.c: Likewise.
22007         * tests/test-arcfour.c: Likewise.
22008         * tests/test-arctwo.c: Likewise.
22009         * tests/test-argmatch.c: Likewise.
22010         * tests/test-argp-2.sh: Likewise.
22011         * tests/test-argp.c: Likewise.
22012         * tests/test-arpa_inet.c: Likewise.
22013         * tests/test-array_list.c: Likewise.
22014         * tests/test-array_oset.c: Likewise.
22015         * tests/test-atexit.c: Likewise.
22016         * tests/test-avltree_list.c: Likewise.
22017         * tests/test-avltree_oset.c: Likewise.
22018         * tests/test-avltreehash_list.c: Likewise.
22019         * tests/test-base64.c: Likewise.
22020         * tests/test-binary-io.c: Likewise.
22021         * tests/test-byteswap.c: Likewise.
22022         * tests/test-c-ctype.c: Likewise.
22023         * tests/test-c-strcasecmp.c: Likewise.
22024         * tests/test-c-strcasestr.c: Likewise.
22025         * tests/test-c-strncasecmp.c: Likewise.
22026         * tests/test-c-strstr.c: Likewise.
22027         * tests/test-canonicalize-lgpl.c: Likewise.
22028         * tests/test-canonicalize.c: Likewise.
22029         * tests/test-carray_list.c: Likewise.
22030         * tests/test-ceilf.c: Likewise.
22031         * tests/test-ceill.c: Likewise.
22032         * tests/test-count-one-bits.c: Likewise.
22033         * tests/test-crc.c: Likewise.
22034         * tests/test-dirname.c: Likewise.
22035         * tests/test-fbufmode.c: Likewise.
22036         * tests/test-fcntl.c: Likewise.
22037         * tests/test-fflush.c: Likewise.
22038         * tests/test-floorf.c: Likewise.
22039         * tests/test-floorl.c: Likewise.
22040         * tests/test-fopen.c: Likewise.
22041         * tests/test-fprintf-posix.c: Likewise.
22042         * tests/test-fprintf-posix.h: Likewise.
22043         * tests/test-fpurge.c: Likewise.
22044         * tests/test-freadable.c: Likewise.
22045         * tests/test-freadahead.c: Likewise.
22046         * tests/test-freading.c: Likewise.
22047         * tests/test-freopen.c: Likewise.
22048         * tests/test-frexp.c: Likewise.
22049         * tests/test-frexpl.c: Likewise.
22050         * tests/test-fseek.c: Likewise.
22051         * tests/test-fseeko.c: Likewise.
22052         * tests/test-fseterr.c: Likewise.
22053         * tests/test-fstrcmp.c: Likewise.
22054         * tests/test-ftell.c: Likewise.
22055         * tests/test-ftello.c: Likewise.
22056         * tests/test-fwritable.c: Likewise.
22057         * tests/test-fwriting.c: Likewise.
22058         * tests/test-getaddrinfo.c: Likewise.
22059         * tests/test-getpass.c: Likewise.
22060         * tests/test-gettimeofday.c: Likewise.
22061         * tests/test-hmac-md5.c: Likewise.
22062         * tests/test-hmac-sha1.c: Likewise.
22063         * tests/test-iconv.c: Likewise.
22064         * tests/test-iconvme.c: Likewise.
22065         * tests/test-inttypes.c: Likewise.
22066         * tests/test-isnan.c: Likewise.
22067         * tests/test-isnanf.c: Likewise.
22068         * tests/test-isnanl-nolibm.c: Likewise.
22069         * tests/test-isnanl.c: Likewise.
22070         * tests/test-isnanl.h: Likewise.
22071         * tests/test-ldexpl.c: Likewise.
22072         * tests/test-linked_list.c: Likewise.
22073         * tests/test-linkedhash_list.c: Likewise.
22074         * tests/test-locale.c: Likewise.
22075         * tests/test-localename.c: Likewise.
22076         * tests/test-lock.c: Likewise.
22077         * tests/test-lseek.c: Likewise.
22078         * tests/test-malloca.c: Likewise.
22079         * tests/test-math.c: Likewise.
22080         * tests/test-mbscasecmp.c: Likewise.
22081         * tests/test-mbscasestr1.c: Likewise.
22082         * tests/test-mbscasestr2.c: Likewise.
22083         * tests/test-mbscasestr3.c: Likewise.
22084         * tests/test-mbscasestr4.c: Likewise.
22085         * tests/test-mbschr.c: Likewise.
22086         * tests/test-mbscspn.c: Likewise.
22087         * tests/test-mbsncasecmp.c: Likewise.
22088         * tests/test-mbspbrk.c: Likewise.
22089         * tests/test-mbspcasecmp.c: Likewise.
22090         * tests/test-mbsrchr.c: Likewise.
22091         * tests/test-mbsspn.c: Likewise.
22092         * tests/test-mbsstr1.c: Likewise.
22093         * tests/test-mbsstr2.c: Likewise.
22094         * tests/test-mbsstr3.c: Likewise.
22095         * tests/test-md5.c: Likewise.
22096         * tests/test-memmem.c: Likewise.
22097         * tests/test-netinet_in.c: Likewise.
22098         * tests/test-open.c: Likewise.
22099         * tests/test-printf-frexp.c: Likewise.
22100         * tests/test-printf-frexpl.c: Likewise.
22101         * tests/test-printf-posix.c: Likewise.
22102         * tests/test-printf-posix.h: Likewise.
22103         * tests/test-rbtree_list.c: Likewise.
22104         * tests/test-rbtree_oset.c: Likewise.
22105         * tests/test-rbtreehash_list.c: Likewise.
22106         * tests/test-read-file.c: Likewise.
22107         * tests/test-rijndael.c: Likewise.
22108         * tests/test-search.c: Likewise.
22109         * tests/test-signbit.c: Likewise.
22110         * tests/test-sleep.c: Likewise.
22111         * tests/test-snprintf-posix.c: Likewise.
22112         * tests/test-snprintf-posix.h: Likewise.
22113         * tests/test-snprintf.c: Likewise.
22114         * tests/test-sprintf-posix.c: Likewise.
22115         * tests/test-sprintf-posix.h: Likewise.
22116         * tests/test-stat-time.c: Likewise.
22117         * tests/test-stdbool.c: Likewise.
22118         * tests/test-stdint.c: Likewise.
22119         * tests/test-stdio.c: Likewise.
22120         * tests/test-stdlib.c: Likewise.
22121         * tests/test-stpncpy.c: Likewise.
22122         * tests/test-strcasestr.c: Likewise.
22123         * tests/test-striconv.c: Likewise.
22124         * tests/test-striconveh.c: Likewise.
22125         * tests/test-striconveha.c: Likewise.
22126         * tests/test-string.c: Likewise.
22127         * tests/test-sys_select.c: Likewise.
22128         * tests/test-sys_socket.c: Likewise.
22129         * tests/test-sys_stat.c: Likewise.
22130         * tests/test-sys_time.c: Likewise.
22131         * tests/test-sysexits.c: Likewise.
22132         * tests/test-time.c: Likewise.
22133         * tests/test-tls.c: Likewise.
22134         * tests/test-trunc.c: Likewise.
22135         * tests/test-truncf.c: Likewise.
22136         * tests/test-truncl.c: Likewise.
22137         * tests/test-unistd.c: Likewise.
22138         * tests/test-vasnprintf-posix.c: Likewise.
22139         * tests/test-vasnprintf-posix2.c: Likewise.
22140         * tests/test-vasnprintf.c: Likewise.
22141         * tests/test-vasprintf-posix.c: Likewise.
22142         * tests/test-vasprintf.c: Likewise.
22143         * tests/test-verify.c: Likewise.
22144         * tests/test-vfprintf-posix.c: Likewise.
22145         * tests/test-vprintf-posix.c: Likewise.
22146         * tests/test-vsnprintf-posix.c: Likewise.
22147         * tests/test-vsnprintf.c: Likewise.
22148         * tests/test-vsprintf-posix.c: Likewise.
22149         * tests/test-wchar.c: Likewise.
22150         * tests/test-wctype.c: Likewise.
22151         * tests/test-wcwidth.c: Likewise.
22152         * tests/test-xstrtol.c: Likewise.
22153         * tests/test-xvasprintf.c: Likewise.
22154         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
22155         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
22156         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
22157         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
22158         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
22159         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
22160         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
22161         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
22162         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
22163         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
22164         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
22165         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
22166         * tests/uniname/test-uninames.c: Likewise.
22167         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
22168         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
22169         * tests/unistdio/test-u16-printf1.h: Likewise.
22170         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
22171         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
22172         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
22173         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
22174         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
22175         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
22176         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
22177         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
22178         * tests/unistdio/test-u32-printf1.h: Likewise.
22179         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
22180         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
22181         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
22182         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
22183         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
22184         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
22185         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
22186         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
22187         * tests/unistdio/test-u8-printf1.h: Likewise.
22188         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
22189         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
22190         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
22191         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
22192         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
22193         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
22194         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
22195         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
22196         * tests/unistdio/test-ulc-printf1.h: Likewise.
22197         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
22198         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
22199         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
22200         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
22201         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
22202         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
22203         * tests/uniwidth/test-u16-strwidth.c: Likewise.
22204         * tests/uniwidth/test-u16-width.c: Likewise.
22205         * tests/uniwidth/test-u32-strwidth.c: Likewise.
22206         * tests/uniwidth/test-u32-width.c: Likewise.
22207         * tests/uniwidth/test-u8-strwidth.c: Likewise.
22208         * tests/uniwidth/test-u8-width.c: Likewise.
22209         * tests/uniwidth/test-uc_width.c: Likewise.
22210         * config/srclist-update: Likewise.
22211         (fixlicense): Update to GPLv3+.
22212
22213         Change copyright notice from LGPLv2.1+ to LGPLv3+.
22214         * tests/test-tsearch.c: Change copyright notice.
22215
22216         Change copyright notice from LGPLv2.0+ to LGPLv3+.
22217         * lib/c-strcaseeq.h: Change copyright notice.
22218         * lib/streq.h: Likewise.
22219         * lib/uniconv.h: Likewise.
22220         * lib/uniconv/u-conv-from-enc.h: Likewise.
22221         * lib/uniconv/u-conv-to-enc.h: Likewise.
22222         * lib/uniconv/u-strconv-from-enc.h: Likewise.
22223         * lib/uniconv/u-strconv-to-enc.h: Likewise.
22224         * lib/uniconv/u16-conv-from-enc.c: Likewise.
22225         * lib/uniconv/u16-conv-to-enc.c: Likewise.
22226         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
22227         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
22228         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
22229         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
22230         * lib/uniconv/u32-conv-from-enc.c: Likewise.
22231         * lib/uniconv/u32-conv-to-enc.c: Likewise.
22232         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
22233         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
22234         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
22235         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
22236         * lib/uniconv/u8-conv-from-enc.c: Likewise.
22237         * lib/uniconv/u8-conv-to-enc.c: Likewise.
22238         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
22239         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
22240         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
22241         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
22242         * lib/uniname.h: Likewise.
22243         * lib/uniname/uniname.c: Likewise.
22244         * lib/unistdio.h: Likewise.
22245         * lib/unistdio/u-asnprintf.h: Likewise.
22246         * lib/unistdio/u-asprintf.h: Likewise.
22247         * lib/unistdio/u-printf-args.c: Likewise.
22248         * lib/unistdio/u-printf-args.h: Likewise.
22249         * lib/unistdio/u-printf-parse.h: Likewise.
22250         * lib/unistdio/u-snprintf.h: Likewise.
22251         * lib/unistdio/u-sprintf.h: Likewise.
22252         * lib/unistdio/u-vasprintf.h: Likewise.
22253         * lib/unistdio/u-vsnprintf.h: Likewise.
22254         * lib/unistdio/u-vsprintf.h: Likewise.
22255         * lib/unistdio/u16-asnprintf.c: Likewise.
22256         * lib/unistdio/u16-asprintf.c: Likewise.
22257         * lib/unistdio/u16-printf-parse.c: Likewise.
22258         * lib/unistdio/u16-snprintf.c: Likewise.
22259         * lib/unistdio/u16-sprintf.c: Likewise.
22260         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
22261         * lib/unistdio/u16-u16-asprintf.c: Likewise.
22262         * lib/unistdio/u16-u16-snprintf.c: Likewise.
22263         * lib/unistdio/u16-u16-sprintf.c: Likewise.
22264         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
22265         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
22266         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
22267         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
22268         * lib/unistdio/u16-vasnprintf.c: Likewise.
22269         * lib/unistdio/u16-vasprintf.c: Likewise.
22270         * lib/unistdio/u16-vsnprintf.c: Likewise.
22271         * lib/unistdio/u16-vsprintf.c: Likewise.
22272         * lib/unistdio/u32-asnprintf.c: Likewise.
22273         * lib/unistdio/u32-asprintf.c: Likewise.
22274         * lib/unistdio/u32-printf-parse.c: Likewise.
22275         * lib/unistdio/u32-snprintf.c: Likewise.
22276         * lib/unistdio/u32-sprintf.c: Likewise.
22277         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
22278         * lib/unistdio/u32-u32-asprintf.c: Likewise.
22279         * lib/unistdio/u32-u32-snprintf.c: Likewise.
22280         * lib/unistdio/u32-u32-sprintf.c: Likewise.
22281         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
22282         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
22283         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
22284         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
22285         * lib/unistdio/u32-vasnprintf.c: Likewise.
22286         * lib/unistdio/u32-vasprintf.c: Likewise.
22287         * lib/unistdio/u32-vsnprintf.c: Likewise.
22288         * lib/unistdio/u32-vsprintf.c: Likewise.
22289         * lib/unistdio/u8-asnprintf.c: Likewise.
22290         * lib/unistdio/u8-asprintf.c: Likewise.
22291         * lib/unistdio/u8-printf-parse.c: Likewise.
22292         * lib/unistdio/u8-snprintf.c: Likewise.
22293         * lib/unistdio/u8-sprintf.c: Likewise.
22294         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
22295         * lib/unistdio/u8-u8-asprintf.c: Likewise.
22296         * lib/unistdio/u8-u8-snprintf.c: Likewise.
22297         * lib/unistdio/u8-u8-sprintf.c: Likewise.
22298         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
22299         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
22300         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
22301         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
22302         * lib/unistdio/u8-vasnprintf.c: Likewise.
22303         * lib/unistdio/u8-vasprintf.c: Likewise.
22304         * lib/unistdio/u8-vsnprintf.c: Likewise.
22305         * lib/unistdio/u8-vsprintf.c: Likewise.
22306         * lib/unistdio/ulc-asnprintf.c: Likewise.
22307         * lib/unistdio/ulc-asprintf.c: Likewise.
22308         * lib/unistdio/ulc-printf-parse.c: Likewise.
22309         * lib/unistdio/ulc-snprintf.c: Likewise.
22310         * lib/unistdio/ulc-sprintf.c: Likewise.
22311         * lib/unistdio/ulc-vasnprintf.c: Likewise.
22312         * lib/unistdio/ulc-vasprintf.c: Likewise.
22313         * lib/unistdio/ulc-vsnprintf.c: Likewise.
22314         * lib/unistdio/ulc-vsprintf.c: Likewise.
22315         * lib/unistr.h: Likewise.
22316         * lib/unistr/u-cpy-alloc.h: Likewise.
22317         * lib/unistr/u-cpy.h: Likewise.
22318         * lib/unistr/u-endswith.h: Likewise.
22319         * lib/unistr/u-move.h: Likewise.
22320         * lib/unistr/u-set.h: Likewise.
22321         * lib/unistr/u-startswith.h: Likewise.
22322         * lib/unistr/u-stpcpy.h: Likewise.
22323         * lib/unistr/u-stpncpy.h: Likewise.
22324         * lib/unistr/u-strcat.h: Likewise.
22325         * lib/unistr/u-strcpy.h: Likewise.
22326         * lib/unistr/u-strcspn.h: Likewise.
22327         * lib/unistr/u-strdup.h: Likewise.
22328         * lib/unistr/u-strlen.h: Likewise.
22329         * lib/unistr/u-strncat.h: Likewise.
22330         * lib/unistr/u-strncpy.h: Likewise.
22331         * lib/unistr/u-strnlen.h: Likewise.
22332         * lib/unistr/u-strpbrk.h: Likewise.
22333         * lib/unistr/u-strspn.h: Likewise.
22334         * lib/unistr/u-strstr.h: Likewise.
22335         * lib/unistr/u-strtok.h: Likewise.
22336         * lib/unistr/u16-check.c: Likewise.
22337         * lib/unistr/u16-chr.c: Likewise.
22338         * lib/unistr/u16-cmp.c: Likewise.
22339         * lib/unistr/u16-cpy-alloc.c: Likewise.
22340         * lib/unistr/u16-cpy.c: Likewise.
22341         * lib/unistr/u16-endswith.c: Likewise.
22342         * lib/unistr/u16-mblen.c: Likewise.
22343         * lib/unistr/u16-mbsnlen.c: Likewise.
22344         * lib/unistr/u16-mbtouc-aux.c: Likewise.
22345         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
22346         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
22347         * lib/unistr/u16-mbtouc.c: Likewise.
22348         * lib/unistr/u16-mbtoucr.c: Likewise.
22349         * lib/unistr/u16-move.c: Likewise.
22350         * lib/unistr/u16-next.c: Likewise.
22351         * lib/unistr/u16-prev.c: Likewise.
22352         * lib/unistr/u16-set.c: Likewise.
22353         * lib/unistr/u16-startswith.c: Likewise.
22354         * lib/unistr/u16-stpcpy.c: Likewise.
22355         * lib/unistr/u16-stpncpy.c: Likewise.
22356         * lib/unistr/u16-strcat.c: Likewise.
22357         * lib/unistr/u16-strchr.c: Likewise.
22358         * lib/unistr/u16-strcmp.c: Likewise.
22359         * lib/unistr/u16-strcpy.c: Likewise.
22360         * lib/unistr/u16-strcspn.c: Likewise.
22361         * lib/unistr/u16-strdup.c: Likewise.
22362         * lib/unistr/u16-strlen.c: Likewise.
22363         * lib/unistr/u16-strmblen.c: Likewise.
22364         * lib/unistr/u16-strmbtouc.c: Likewise.
22365         * lib/unistr/u16-strncat.c: Likewise.
22366         * lib/unistr/u16-strncmp.c: Likewise.
22367         * lib/unistr/u16-strncpy.c: Likewise.
22368         * lib/unistr/u16-strnlen.c: Likewise.
22369         * lib/unistr/u16-strpbrk.c: Likewise.
22370         * lib/unistr/u16-strrchr.c: Likewise.
22371         * lib/unistr/u16-strspn.c: Likewise.
22372         * lib/unistr/u16-strstr.c: Likewise.
22373         * lib/unistr/u16-strtok.c: Likewise.
22374         * lib/unistr/u16-to-u32.c: Likewise.
22375         * lib/unistr/u16-to-u8.c: Likewise.
22376         * lib/unistr/u16-uctomb-aux.c: Likewise.
22377         * lib/unistr/u16-uctomb.c: Likewise.
22378         * lib/unistr/u32-check.c: Likewise.
22379         * lib/unistr/u32-chr.c: Likewise.
22380         * lib/unistr/u32-cmp.c: Likewise.
22381         * lib/unistr/u32-cpy-alloc.c: Likewise.
22382         * lib/unistr/u32-cpy.c: Likewise.
22383         * lib/unistr/u32-endswith.c: Likewise.
22384         * lib/unistr/u32-mblen.c: Likewise.
22385         * lib/unistr/u32-mbsnlen.c: Likewise.
22386         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
22387         * lib/unistr/u32-mbtouc.c: Likewise.
22388         * lib/unistr/u32-mbtoucr.c: Likewise.
22389         * lib/unistr/u32-move.c: Likewise.
22390         * lib/unistr/u32-next.c: Likewise.
22391         * lib/unistr/u32-prev.c: Likewise.
22392         * lib/unistr/u32-set.c: Likewise.
22393         * lib/unistr/u32-startswith.c: Likewise.
22394         * lib/unistr/u32-stpcpy.c: Likewise.
22395         * lib/unistr/u32-stpncpy.c: Likewise.
22396         * lib/unistr/u32-strcat.c: Likewise.
22397         * lib/unistr/u32-strchr.c: Likewise.
22398         * lib/unistr/u32-strcmp.c: Likewise.
22399         * lib/unistr/u32-strcpy.c: Likewise.
22400         * lib/unistr/u32-strcspn.c: Likewise.
22401         * lib/unistr/u32-strdup.c: Likewise.
22402         * lib/unistr/u32-strlen.c: Likewise.
22403         * lib/unistr/u32-strmblen.c: Likewise.
22404         * lib/unistr/u32-strmbtouc.c: Likewise.
22405         * lib/unistr/u32-strncat.c: Likewise.
22406         * lib/unistr/u32-strncmp.c: Likewise.
22407         * lib/unistr/u32-strncpy.c: Likewise.
22408         * lib/unistr/u32-strnlen.c: Likewise.
22409         * lib/unistr/u32-strpbrk.c: Likewise.
22410         * lib/unistr/u32-strrchr.c: Likewise.
22411         * lib/unistr/u32-strspn.c: Likewise.
22412         * lib/unistr/u32-strstr.c: Likewise.
22413         * lib/unistr/u32-strtok.c: Likewise.
22414         * lib/unistr/u32-to-u16.c: Likewise.
22415         * lib/unistr/u32-to-u8.c: Likewise.
22416         * lib/unistr/u32-uctomb.c: Likewise.
22417         * lib/unistr/u8-check.c: Likewise.
22418         * lib/unistr/u8-chr.c: Likewise.
22419         * lib/unistr/u8-cmp.c: Likewise.
22420         * lib/unistr/u8-cpy-alloc.c: Likewise.
22421         * lib/unistr/u8-cpy.c: Likewise.
22422         * lib/unistr/u8-endswith.c: Likewise.
22423         * lib/unistr/u8-mblen.c: Likewise.
22424         * lib/unistr/u8-mbsnlen.c: Likewise.
22425         * lib/unistr/u8-mbtouc-aux.c: Likewise.
22426         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
22427         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
22428         * lib/unistr/u8-mbtouc.c: Likewise.
22429         * lib/unistr/u8-mbtoucr.c: Likewise.
22430         * lib/unistr/u8-move.c: Likewise.
22431         * lib/unistr/u8-next.c: Likewise.
22432         * lib/unistr/u8-prev.c: Likewise.
22433         * lib/unistr/u8-set.c: Likewise.
22434         * lib/unistr/u8-startswith.c: Likewise.
22435         * lib/unistr/u8-stpcpy.c: Likewise.
22436         * lib/unistr/u8-stpncpy.c: Likewise.
22437         * lib/unistr/u8-strcat.c: Likewise.
22438         * lib/unistr/u8-strchr.c: Likewise.
22439         * lib/unistr/u8-strcmp.c: Likewise.
22440         * lib/unistr/u8-strcpy.c: Likewise.
22441         * lib/unistr/u8-strcspn.c: Likewise.
22442         * lib/unistr/u8-strdup.c: Likewise.
22443         * lib/unistr/u8-strlen.c: Likewise.
22444         * lib/unistr/u8-strmblen.c: Likewise.
22445         * lib/unistr/u8-strmbtouc.c: Likewise.
22446         * lib/unistr/u8-strncat.c: Likewise.
22447         * lib/unistr/u8-strncmp.c: Likewise.
22448         * lib/unistr/u8-strncpy.c: Likewise.
22449         * lib/unistr/u8-strnlen.c: Likewise.
22450         * lib/unistr/u8-strpbrk.c: Likewise.
22451         * lib/unistr/u8-strrchr.c: Likewise.
22452         * lib/unistr/u8-strspn.c: Likewise.
22453         * lib/unistr/u8-strstr.c: Likewise.
22454         * lib/unistr/u8-strtok.c: Likewise.
22455         * lib/unistr/u8-to-u16.c: Likewise.
22456         * lib/unistr/u8-to-u32.c: Likewise.
22457         * lib/unistr/u8-uctomb-aux.c: Likewise.
22458         * lib/unistr/u8-uctomb.c: Likewise.
22459         * lib/unitypes.h: Likewise.
22460         * lib/uniwidth.h: Likewise.
22461         * lib/uniwidth/cjk.h: Likewise.
22462         * lib/uniwidth/u16-strwidth.c: Likewise.
22463         * lib/uniwidth/u16-width.c: Likewise.
22464         * lib/uniwidth/u32-strwidth.c: Likewise.
22465         * lib/uniwidth/u32-width.c: Likewise.
22466         * lib/uniwidth/u8-strwidth.c: Likewise.
22467         * lib/uniwidth/u8-width.c: Likewise.
22468         * lib/uniwidth/width.c: Likewise.
22469
22470 2007-10-07  Bruno Haible  <bruno@clisp.org>
22471
22472         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
22473         The file is still under LGPL (see modules/inttypes).
22474
22475 2007-10-06  Bruno Haible  <bruno@clisp.org>
22476
22477         * modules/trunc (Dependencies): Add 'extensions'.
22478         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
22479         Reported by Ben Pfaff <blp@gnu.org>.
22480
22481 2007-10-06  Bruno Haible  <bruno@clisp.org>
22482
22483         * modules/freopen-tests: New file.
22484         * tests/test-freopen.c: New file.
22485
22486         * modules/fopen-tests: New file.
22487         * tests/test-fopen.c: New file.
22488
22489         * modules/fopen: New file.
22490         * lib/fopen.c: New file.
22491         * m4/fopen.m4: New file.
22492         * modules/freopen: New file.
22493         * lib/freopen.c: New file.
22494         * m4/freopen.m4: New file.
22495         * lib/stdio.in.h (fopen, freopen): New declarations.
22496         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
22497         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
22498         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
22499         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
22500         * doc/functions/fopen.texi: Mention the 'fopen' module.
22501         * doc/functions/freopen.texi: Mention the 'freopen' module.
22502
22503 2007-10-06  Bruno Haible  <bruno@clisp.org>
22504
22505         * modules/open-tests: New file.
22506         * tests/test-open.c: New file.
22507
22508         * modules/open: New file.
22509         * lib/open.c: New file.
22510         * m4/open.m4: New file.
22511         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
22512         lib/open.c does.
22513         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
22514         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
22515         macros.
22516         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
22517         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
22518         REPLACE_OPEN.
22519         * doc/functions/open.texi: Mention the 'open' module.
22520
22521 2007-10-04  Bruno Haible  <bruno@clisp.org>
22522
22523         * modules/ceill-tests: New file.
22524         * tests/test-ceill.c: New file.
22525
22526         * modules/ceill: New file.
22527         * lib/ceill.c: Replace entire file.
22528         * m4/ceill.m4: New file.
22529         * lib/math.in.h (ceill): Replace declaration.
22530         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
22531         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
22532         * doc/functions/ceill.texi: Mention the 'ceill' module.
22533         * modules/mathl (Files): Remove lib/ceill.c.
22534         (Depends-on): Add ceill.
22535
22536 2007-10-04  Bruno Haible  <bruno@clisp.org>
22537
22538         * modules/ceilf-tests: New file.
22539         * tests/test-ceilf.c: New file.
22540
22541         * modules/ceilf: New file.
22542         * lib/ceil.c: New file.
22543         * lib/ceilf.c: New file.
22544         * m4/ceilf.m4: New file.
22545         * lib/math.in.h (ceilf): New declaration.
22546         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
22547         HAVE_DECL_CEILF.
22548         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
22549         HAVE_DECL_CEILF.
22550         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
22551
22552 2007-10-04  Bruno Haible  <bruno@clisp.org>
22553
22554         * modules/floorl-tests: New file.
22555         * tests/test-floorl.c: New file.
22556
22557         * modules/floorl: New file.
22558         * lib/floorl.c: Replace entire file.
22559         * m4/floorl.m4: New file.
22560         * lib/math.in.h (floorl): Replace declaration.
22561         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
22562         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
22563         * doc/functions/floorl.texi: Mention the 'floorl' module.
22564         * modules/mathl (Files): Remove lib/floorl.c.
22565         (Depends-on): Add floorl.
22566
22567 2007-10-04  Bruno Haible  <bruno@clisp.org>
22568
22569         * modules/floorf-tests: New file.
22570         * tests/test-floorf.c: New file.
22571
22572         * modules/floorf: New file.
22573         * lib/floor.c: New file.
22574         * lib/floorf.c: New file.
22575         * m4/floorf.m4: New file.
22576         * lib/math.in.h (floorf): New declaration.
22577         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
22578         HAVE_DECL_FLOORF.
22579         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
22580         HAVE_DECL_FLOORF.
22581         * doc/functions/floorf.texi: Mention the 'floorf' module.
22582
22583 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
22584             Bruno Haible  <bruno@clisp.org>
22585
22586         Advertise for the Git server instead of the CVS server.
22587         * doc/gnulib-intro.texi (Steady Development): Mention the Git
22588         repository instead of the CVS one.
22589         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
22590         about all VCS systems generically.
22591         * doc/gnulib.texi (Introduction): Capitalize `Git'.
22592
22593 2007-10-04  Bruno Haible  <bruno@clisp.org>
22594
22595         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
22596         means.
22597         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
22598
22599 2007-10-04  Bruno Haible  <bruno@clisp.org>
22600
22601         * modules/truncl-tests: New file.
22602         * tests/test-truncl.c: New file.
22603
22604         * modules/truncl: New file.
22605         * lib/truncl.c: New file.
22606         * m4/truncl.m4: New file.
22607         * lib/math.in.h (truncl): New declaration.
22608         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
22609         HAVE_DECL_TRUNCL.
22610         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
22611         HAVE_DECL_TRUNCL.
22612         * doc/functions/truncl.texi: Mention the 'truncl' module.
22613
22614 2007-10-04  Bruno Haible  <bruno@clisp.org>
22615
22616         * modules/truncf-tests: New file.
22617         * tests/test-truncf.c: New file.
22618
22619         * modules/truncf: New file.
22620         * lib/trunc.c: Make paramerizable through USE_* macros.
22621         * lib/truncf.c: New file.
22622         * m4/truncf.m4: New file.
22623         * lib/math.in.h (truncf): New declaration.
22624         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
22625         HAVE_DECL_TRUNCF.
22626         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
22627         HAVE_DECL_TRUNCF.
22628         * doc/functions/truncf.texi: Mention the 'truncf' module.
22629
22630 2007-10-03  Bruno Haible  <bruno@clisp.org>
22631
22632         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
22633         augmentation also for tests modules.
22634         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
22635         * modules/atexit-tests (Makefile.am): Likewise.
22636         * modules/binary-io-tests (Makefile.am): Likewise.
22637         * modules/c-strcase-tests (Makefile.am): Likewise.
22638         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
22639         * modules/canonicalize-tests (Makefile.am): Likewise.
22640         * modules/closein-tests (Makefile.am): Likewise.
22641         * modules/fprintf-posix-tests (Makefile.am): Likewise.
22642         * modules/freadahead-tests (Makefile.am): Likewise.
22643         * modules/fseek-tests (Makefile.am): Likewise.
22644         * modules/fseeko-tests (Makefile.am): Likewise.
22645         * modules/ftell-tests (Makefile.am): Likewise.
22646         * modules/ftello-tests (Makefile.am): Likewise.
22647         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
22648         * modules/isnanl-tests (Makefile.am): Likewise.
22649         * modules/lseek-tests (Makefile.am): Likewise.
22650         * modules/mbscasecmp-tests (Makefile.am): Likewise.
22651         * modules/mbscasestr-tests (Makefile.am): Likewise.
22652         * modules/mbschr-tests (Makefile.am): Likewise.
22653         * modules/mbscspn-tests (Makefile.am): Likewise.
22654         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
22655         * modules/mbspbrk-tests (Makefile.am): Likewise.
22656         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
22657         * modules/mbsrchr-tests (Makefile.am): Likewise.
22658         * modules/mbsspn-tests (Makefile.am): Likewise.
22659         * modules/mbsstr-tests (Makefile.am): Likewise.
22660         * modules/printf-posix-tests (Makefile.am): Likewise.
22661         * modules/snprintf-posix-tests (Makefile.am): Likewise.
22662         * modules/sprintf-posix-tests (Makefile.am): Likewise.
22663         * modules/tsearch-tests (Makefile.am): Likewise.
22664         * modules/uniname/uniname-tests (Makefile.am): Likewise.
22665         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
22666         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
22667         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
22668         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
22669         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
22670         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
22671         * modules/vprintf-posix-tests (Makefile.am): Likewise.
22672         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
22673         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
22674         * modules/xstrtoimax-tests (Makefile.am): Likewise.
22675         * modules/xstrtol-tests (Makefile.am): Likewise.
22676         * modules/xstrtoumax-tests (Makefile.am): Likewise.
22677         * modules/yesno-tests (Makefile.am): Likewise.
22678
22679 2007-10-03  Bruno Haible  <bruno@clisp.org>
22680
22681         * modules/trunc-tests: New file.
22682         * tests/test-trunc.c: New file.
22683
22684         * modules/trunc: New file.
22685         * lib/trunc.c: New file.
22686         * m4/trunc.m4: New file.
22687         * lib/math.in.h (trunc): New declaration.
22688         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
22689         HAVE_DECL_TRUNC.
22690         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
22691         HAVE_DECL_TRUNC.
22692         * doc/functions/trunc.texi: Mention the 'trunc' module.
22693
22694 2007-10-03  Bruno Haible  <bruno@clisp.org>
22695
22696         * tests/test-fpending.c: New file, mostly copied
22697         from coreutils/lib/t-fpending.c.
22698         * modules/fpending-tests: New file.
22699
22700 2007-10-03  Bruno Haible  <bruno@clisp.org>
22701
22702         Port the stdio extensions to QNX (untested).
22703         * lib/fseterr.c (fseterr): Add support for QNX.
22704         * lib/fbufmode.c (fbufmode): Likewise.
22705         * lib/freadable.c (freadable): Likewise.
22706         * lib/fwritable.c (fwritable): Likewise.
22707         * lib/freading.c (freading): Likewise.
22708         * lib/fwriting.c (fwriting): Likewise.
22709         * lib/freadahead.c (freadahed): Likewise.
22710         * lib/fpurge.c (fpurge): Likewise.
22711         * lib/fseeko.c (rpl_fseeko): Likewise.
22712
22713 2007-10-03  Bruno Haible  <bruno@clisp.org>
22714             Jim Meyering  <jim@meyering.net>
22715             Eric Blake  <ebb9@byu.net>
22716
22717         * doc/relocatable.texi: Use @command instead of @program.
22718
22719 2007-10-02  Jim Meyering  <jim@meyering.net>
22720
22721         Perform one more "_.h" -> ".in.h" substitution.
22722         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
22723         instead of unistd_.h here, too.
22724
22725 2007-10-01  Bruno Haible  <bruno@clisp.org>
22726
22727         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
22728         Needed for the alloca-opt module.
22729
22730 2007-09-30  Bruno Haible  <bruno@clisp.org>
22731
22732         * lib/alloca.in.h: Renamed from lib/alloca_.h.
22733         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
22734         alloca_.h.
22735         * lib/argz.in.h: Renamed from lib/argz_.h.
22736         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
22737         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
22738         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
22739         byteswap_.h.
22740         * lib/dirent.in.h: Renamed from lib/dirent_.h.
22741         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
22742         dirent_.h.
22743         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
22744         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
22745         fcntl_.h.
22746         * lib/float.in.h: Renamed from lib/float_.h.
22747         * modules/float (Files, Makefile.am): Use float.in.h instead of
22748         float_.h.
22749         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
22750         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
22751         fnmatch_.h.
22752         * lib/getopt.in.h: Renamed from lib/getopt_.h.
22753         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
22754         getopt_.h.
22755         * lib/glob.in.h: Renamed from lib/glob_.h.
22756         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
22757         * lib/iconv.in.h: Renamed from lib/iconv_.h.
22758         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
22759         iconv_.h.
22760         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
22761         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
22762         inttypes_.h.
22763         * lib/locale.in.h: Renamed from lib/locale_.h.
22764         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
22765         locale_.h.
22766         * lib/math.in.h: Renamed from lib/math_.h.
22767         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
22768         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
22769         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
22770         of netinet_in_.h. Add dependency.
22771         * lib/poll.in.h: Renamed from lib/poll_.h.
22772         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
22773         * lib/search.in.h: Renamed from lib/search_.h.
22774         * modules/search (Files, Makefile.am): Use search.in.h instead of
22775         search_.h.
22776         * lib/signal.in.h: Renamed from lib/signal_.h.
22777         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
22778         _signal.h.
22779         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
22780         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
22781         stdbool_.h.
22782         * lib/stdint.in.h: Renamed from lib/stdint_.h.
22783         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
22784         stdint_.h.
22785         * lib/stdio.in.h: Renamed from lib/stdio_.h.
22786         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
22787         stdio_.h.
22788         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
22789         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
22790         stdlib_.h.
22791         * lib/string.in.h: Renamed from lib/string_.h.
22792         * modules/string (Files, Makefile.am): Use string.in.h instead of
22793         string_.h.
22794         * doc/gnulib-tool.texi (Initial import): Update.
22795         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
22796         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
22797         of sys_select_.h. Add dependency.
22798         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
22799         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
22800         of sys_socket_.h.
22801         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
22802         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
22803         sys_stat_.h.
22804         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
22805         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
22806         sys_time_.h.
22807         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
22808         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
22809         sysexits_.h.
22810         * lib/time.in.h: Renamed from lib/time_.h.
22811         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
22812         * lib/unistd.in.h: Renamed from lib/unistd_.h.
22813         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
22814         unistd_.h.
22815         * lib/wchar.in.h: Renamed from lib/wchar_.h.
22816         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
22817         wchar_.h.
22818         * lib/wctype.in.h: Renamed from lib/wctype_.h.
22819         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
22820         wctype_.h.
22821         * build-aux/bootstrap (slurp): Update.
22822         * lib/.cppi-disable: Update.
22823
22824 2007-09-30  Bruno Haible  <bruno@clisp.org>
22825
22826         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
22827         Needed on BeOS.
22828
22829 2007-09-30  Bruno Haible  <bruno@clisp.org>
22830
22831         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
22832
22833 2007-09-29  Bruno Haible  <bruno@clisp.org>
22834
22835         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
22836
22837 2007-09-29  Bruno Haible  <bruno@clisp.org>
22838
22839         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
22840         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
22841         * build-aux/install-reloc: Compile also areadlink.c.
22842         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
22843
22844 2007-09-29  Bruno Haible  <bruno@clisp.org>
22845
22846         * gnulib-tool (func_emit_initmacro_done): Indentation.
22847
22848 2007-09-29  Bruno Haible  <bruno@clisp.org>
22849
22850         * README: Add CVS checkout update instructions.
22851         Info from Bob Proulx <bob@proulx.com>.
22852
22853 2007-09-28  Eric Blake  <ebb9@byu.net>
22854
22855         Provide move-if-change.
22856         * build-aux/move-if-change: New file, based on best practice
22857         rather than any canonical upstream location.
22858
22859 2007-09-28  Jim Meyering  <jim@meyering.net>
22860
22861         Fix canonicalize loop-detection corner case.
22862         Do not attempt to stat the symlink values stored via seen_triple.
22863         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
22864         on linux-2.6.18, (but not 2.6.22).
22865         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
22866         triple_compare.  The former compares dev,ino,filename, while the latter
22867         would actually stat dirname(filename) when dev and ino were equal.
22868         * lib/hash-triple.c: Install <string.h>.
22869         (STREQ): Define.
22870         (triple_compare_ino_str): New function.
22871         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
22872
22873 2007-09-28  Eric Blake  <ebb9@byu.net>
22874
22875         Enforce that AC_REPLACE_FUNCS files exist.
22876         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
22877         override check for typos.
22878
22879         Fix test-closein on Solaris 10.
22880         * tests/test-closein.c (main): Don't assume stdin can be inherited
22881         closed on all systems.
22882         * tests/test-closein.sh: Likewise.
22883         Reported by Piotr Tarnowski.
22884
22885 2007-09-28  Jim Meyering  <jim@meyering.net>
22886
22887         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
22888
22889 2007-09-27  Jim Meyering  <jim@meyering.net>
22890
22891         canonicalize: Avoid a false-positive cycle failure.
22892         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
22893         Sort.  Remove cycle-check.
22894         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
22895         not cycle-check.h.
22896         (seen_triple): New function.
22897         (canonicalize_filename_mode): Use it instead of cycle-check.
22898         * tests/test-canonicalize.c: Add a test for this bug.
22899         * tests/test-canonicalize.sh: Set up and run the test.
22900
22901         New module, file-set, from coreutils.
22902         * modules/file-set: Define it.
22903         * lib/file-set.c, lib/file-set.h: Implement.
22904
22905         New module, hash-triple, from coreutils.
22906         * modules/hash-triple: Define it.
22907         * lib/hash-triple.c, lib/hash-triple.h: Implement.
22908
22909 2007-09-25  Eric Blake  <ebb9@byu.net>
22910
22911         Fix strerror on Interix.
22912         * lib/string_.h (strerror): Declare replacement.
22913         * doc/functions/strerror.texi (strerror): Document the Interix
22914         shortcoming.
22915         * modules/string (Makefile.am): Support new hooks.
22916         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
22917         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
22918         gl_FUNC_STRERROR_SEPARATE.
22919         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
22920         * lib/strerror.c (rpl_strerror): Provide replacement.
22921         * modules/strerror (Depends-on): Add string.
22922         (configure.ac): Detect use of module.
22923         * tests/test-strerror.c: New file.
22924         * modules/strerror-tests: New test module.
22925         * modules/argp (Depends-on): Add strerror.
22926         * modules/error (Depends-on): Likewise.
22927         Reported by Martin Koeppe.
22928
22929 2007-09-24  Bruno Haible  <bruno@clisp.org>
22930
22931         * README: Update git instructions.
22932
22933 2007-09-24  Eric Blake  <ebb9@byu.net>
22934
22935         Revert fpending breakage from 2007-09-08.
22936         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
22937         __fpending.c.
22938
22939 2007-09-24  Jim Meyering  <jim@meyering.net>
22940
22941         filenamecat.c: Add a test.
22942         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
22943         showing how the function works when DIR is the empty string.
22944
22945 2007-09-21  Simon Josefsson  <simon@josefsson.org>
22946
22947         * tests/test-canonicalize.sh: Turn on executable bit.
22948
22949 2007-09-19  Eric Blake  <ebb9@byu.net>
22950
22951         * README: Update CVS instructions.
22952
22953 2007-09-18  Bruno Haible  <bruno@clisp.org>
22954
22955         * modules/areadlink: New file.
22956         * lib/areadlink.h (areadlink): New declaration.
22957         * lib/areadlink.c: New file, based on lib/xreadlink.c.
22958
22959 2007-09-17  Jim Meyering  <jim@meyering.net>
22960
22961         * lib/savewd.c (ESTALE) [!defined]: Define.
22962         Reported to be required on Interix by Martin Koeppe.
22963
22964 2007-09-17  Bruno Haible  <bruno@clisp.org>
22965
22966         * gnulib-tool (func_version): Use $version.
22967
22968 2007-09-16  Bruno Haible  <bruno@clisp.org>
22969
22970         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
22971         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
22972         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
22973         Reported by Greg Schafer <gschafer@zip.com.au>.
22974
22975 2007-09-15  Bruno Haible  <bruno@clisp.org>
22976
22977         * gnulib-tool (sed): Try a little harder to make bash understand the
22978         alias.
22979         Reported by Bruce Korb <bruce.korb@gmail.com>.
22980
22981 2007-09-13  Eric Blake  <ebb9@byu.net>
22982
22983         * ChangeLog: Remove conflict markers.
22984
22985 2007-09-13  Simon Josefsson  <simon@josefsson.org>
22986
22987         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
22988         Reported by Bruno Haible <bruno@clisp.org>.
22989
22990 2007-09-12  Bruno Haible  <bruno@clisp.org>
22991
22992         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
22993         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
22994         is not defined.
22995
22996 2007-09-12  Eric Blake  <ebb9@byu.net>
22997
22998         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
22999         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
23000         Autoconf definition.
23001         * modules/euidaccess (Depends-on): Add extensions, for
23002         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
23003         * modules/fnmatch (Depends-on): Likewise.
23004         * modules/getaddrinfo (Depends-on): Likewise.
23005         * modules/getdelim (Depends-on): Likewise.
23006         * modules/getline (Depends-on): Likewise.
23007         * modules/getsubopt (Depends-on): Likewise.
23008         * modules/gettext (Depends-on): Likewise.
23009         * modules/group-member (Depends-on): Likewise.
23010         * modules/mbchar (Depends-on): Likewise.
23011         * modules/memmem (Depends-on): Likewise.
23012         * modules/mempcpy (Depends-on): Likewise.
23013         * modules/memrchr (Depends-on): Likewise.
23014         * modules/pagealign_alloc (Depends-on): Likewise.
23015         * modules/readutmp (Depends-on): Likewise.
23016         * modules/stpcpy (Depends-on): Likewise.
23017         * modules/stpncpy (Depends-on): Likewise.
23018         * modules/strchrnul (Depends-on): Likewise.
23019         * modules/strndup (Depends-on): Likewise.
23020         * modules/strsep (Depends-on): Likewise.
23021         * modules/strverscmp (Depends-on): Likewise.
23022         * modules/vasprintf (Depends-on): Likewise.
23023         * modules/wcwidth (Depends-on): Likewise.
23024         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
23025         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
23026         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
23027         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
23028         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
23029         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
23030         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
23031         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
23032         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
23033         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
23034         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
23035         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
23036         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
23037         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
23038         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
23039         * m4/readutmp.m4 (gl_READUTMP): Likewise.
23040         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
23041         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
23042         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
23043         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
23044         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
23045         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
23046         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
23047         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
23048         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
23049         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
23050         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
23051         so that lock.m4 can be used in gettext without extensions module.
23052
23053 2007-09-11  Bruno Haible  <bruno@clisp.org>
23054
23055         * m4/isc-posix.m4: Remove file.
23056         Suggested by Eric Blake.
23057
23058 2007-09-11  Eric Blake  <ebb9@byu.net>
23059
23060         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
23061
23062 2007-09-10  Bruno Haible  <bruno@clisp.org>
23063
23064         * posix-modules: Fix typo in error message.
23065         Reported by Matt <mkraai@beckman.com>.
23066
23067 2007-09-09  Bruno Haible  <bruno@clisp.org>
23068
23069         * doc/functions/getdelim.texi: Update list of platforms lacking the
23070         function.
23071         * doc/functions/getline.texi: Likewise.
23072
23073 2007-09-09  Jim Meyering  <jim@meyering.net>
23074
23075         * lib/hash.c (hash_initialize): Detect calloc failure.
23076         Reported by Bruno Haible.
23077
23078 2007-09-09  Bruno Haible  <bruno@clisp.org>
23079
23080         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
23081         malloc or realloc fails.
23082
23083 2007-09-09  Bruno Haible  <bruno@clisp.org>
23084
23085         * modules/getcwd (Depends-on): Add malloc-posix.
23086         * modules/glob (Depends-on): Likewise.
23087         * modules/putenv (Depends-on): Likewise.
23088         * modules/strdup (Depends-on): Likewise.
23089         * modules/getdelim (Depends-on): Add realloc-posix.
23090         * modules/read-file (Depends-on): Likewise.
23091
23092 2007-09-09  Bruno Haible  <bruno@clisp.org>
23093
23094         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
23095         (gl_FUNC_MALLOC_POSIX): Require it.
23096         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
23097         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
23098         * modules/realloc (Files): Add m4/malloc.m4.
23099         * modules/calloc (Files): Likewise.
23100
23101 2007-09-09  Bruno Haible  <bruno@clisp.org>
23102
23103         * modules/malloc-posix: New file.
23104         * modules/malloc (Depends-on): Add malloc-posix.
23105         * lib/malloc.c: Include errno.h.
23106         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
23107         and a POSIX-compatible malloc into a single function. Set ENOMEM
23108         when returning NULL.
23109         * m4/malloc.m4: New file.
23110         * doc/functions/malloc.texi: Mention the malloc-posix module.
23111         * lib/stdlib_.h (malloc): New declaration.
23112         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
23113         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
23114         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
23115         and HAVE_MALLOC_POSIX.
23116
23117 2007-09-09  Bruno Haible  <bruno@clisp.org>
23118
23119         * modules/realloc-posix: New file.
23120         * modules/realloc (Depends-on): Add realloc-posix.
23121         * lib/realloc.c: Include errno.h.
23122         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
23123         and a POSIX-compatible realloc into a single function. Set ENOMEM
23124         when returning NULL.
23125         * m4/realloc.m4: New file.
23126         * doc/functions/realloc.texi: Mention the realloc-posix module.
23127         * lib/stdlib_.h (realloc): New declaration.
23128         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
23129         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
23130         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
23131         and HAVE_REALLOC_POSIX.
23132
23133 2007-09-09  Bruno Haible  <bruno@clisp.org>
23134
23135         * modules/calloc-posix: New file.
23136         * modules/calloc (Depends-on): Add calloc-posix.
23137         * lib/calloc.c: Include errno.h.
23138         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
23139         and a POSIX-compatible calloc into a single function. Set ENOMEM
23140         when returning NULL.
23141         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
23142         * doc/functions/calloc.texi: Mention the calloc-posix module.
23143         * lib/stdlib_.h (calloc): New declaration.
23144         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
23145         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
23146         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
23147         and HAVE_CALLOC_POSIX.
23148
23149 2007-09-09  Bruno Haible  <bruno@clisp.org>
23150
23151         Allow for modules to show an arbitrary notice.
23152         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
23153         * gnulib-tool: New option --extract-notice.
23154         (func_usage): Document it.
23155         (sed_extract_prog): Update.
23156         (func_get_notice): New function.
23157         (func_modules_notice): New function.
23158         (func_import, func_create_testdir): Invoke it.
23159         Suggested by Jim Meyering.
23160
23161 2007-09-09  Bruno Haible  <bruno@clisp.org>
23162
23163         * gnulib-tool: New options --verbose, --quiet.
23164         (func_usage): Document them.
23165         (verbose): New variable.
23166         (func_execute_command): New function.
23167         (func_import): Don't show the module list and the file list if
23168         $verbose < 0.
23169         (func_create_testdir): Likewise. Use func_execute_command.
23170         (func_create_megatestdir): Use func_execute_command.
23171
23172 2007-09-08  Bruno Haible  <bruno@clisp.org>
23173
23174         * gnulib-tool (func_import): Prefer rsync over wget when available,
23175         for fetching the PO files.
23176
23177 2007-09-08  Bruno Haible  <bruno@clisp.org>
23178
23179         * posix-modules: New file. Portions copied from gnulib-tool.
23180         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
23181
23182 2007-09-08  Jim Meyering  <jim@meyering.net>
23183
23184         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
23185         * lib/fpending.h: Rename from __fpending.h.
23186         * lib/fpending.c: Rename from __fpending.c.
23187         Include "fpending.h", not "__fpending.h".
23188         * lib/__fpending.h, lib/__fpending.c: Remove files.
23189         * modules/fpending (Files): Reflect new file names.
23190         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
23191
23192 2007-09-08  Bruno Haible  <bruno@clisp.org>
23193
23194         * m4/inttypes-h.m4: Remove stub file.
23195
23196 2007-09-07  Simon Josefsson  <simon@josefsson.org>
23197
23198         * doc/headers/stdint.texi: Discuss #include_next issue.
23199
23200 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
23201
23202         * build-aux/bootstrap: Remove obsolete comment about wget --help.
23203
23204 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23205
23206         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
23207         in variable name.
23208
23209 2007-09-03  Jim Meyering  <jim@meyering.net>
23210
23211         New module: git-version-gen.
23212         * modules/git-version-gen: New file.
23213
23214         Import changes from coreutils for bootstrap script.
23215
23216         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
23217
23218         bootstrap: uses rsync to download the .po files
23219         * build-aux/bootstrap (po_download_command_format): New global.
23220         (download_po_files): Use rsync.
23221         (update_po_files): Don't remove .po files after download,
23222         so future rsync runs can take advantage of the copies.
23223
23224         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
23225
23226         Solve the unnecessary-.po-file-regeneration problem once and for all.
23227         * build-aux/bootstrap (download_po_files): New function, renamed from
23228         get_translations.  Now, downloads, but doesn't update LINGUAS.
23229         (update_po_files): New function.
23230
23231         bootstrap: Ignore more.
23232         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
23233         uniwidth to e.g., lib/.gitignore.
23234         (slurp): Handle the sys_stat_.h -> sys mapping, too.
23235
23236         * build-aux/bootstrap: New setting: vc_ignore.
23237         (insert_sorted_if_absent): Create $file if absent.
23238         Adapt to new, possibly empty, list: $vc_ignore.
23239
23240         bootstrap: generate more ignorable names
23241         * build-aux/bootstrap (slurp): When generating ignorable names,
23242         also map .sin to .sed, .gperf to .c, and .y to .c.
23243
23244 2007-09-03  Jim Meyering  <jim@meyering.net>
23245
23246         * build-aux/git-version-gen: New file, from coreutils.  For details, see
23247         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
23248
23249 2007-09-02  Bruno Haible  <bruno@clisp.org>
23250
23251         Fix mis-recognition of 'mcs' on QNX 6.
23252         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
23253         output contains the string "Mono".
23254         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
23255         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
23256
23257 2007-09-01  Bruno Haible  <bruno@clisp.org>
23258
23259         Fix collision between uniwidth/* and linebreak modules.
23260         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
23261         u32_width): Remove declarations.
23262         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
23263         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
23264         streq3, streq2, streq1, streq0): Remove functions.
23265         (STREQ): Remove macro.
23266         (is_cjk_encoding): Remove function.
23267         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
23268         (uc_width, u8_width, u16_width, u32_width): Remove functions.
23269         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
23270         * NEWS: Document the change.
23271
23272 2007-09-01  Bruno Haible  <bruno@clisp.org>
23273
23274         * lib/streq.h: Add double-inclusion guard.
23275
23276 2007-09-01  Karl Berry  <karl@gnu.org>
23277
23278         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
23279
23280 2007-08-28  Jim Meyering  <jim@meyering.net>
23281
23282         Rename mreadlink_with_size to areadlink_with_size.
23283         * NEWS: Document the change.
23284         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
23285         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
23286         * lib/mreadlink.h: Rename this to...
23287         * lib/areadlink.h: ...this.
23288         * modules/mreadlink-with-size: Rename this to...
23289         * modules/areadlink-with-size: ...this.
23290         * lib/canonicalize.c: Reflect the renaming.
23291         * modules/canonicalize: Likewise.
23292
23293 2007-08-26  Bruno Haible  <bruno@clisp.org>
23294
23295         * gnulib-tool (func_import): When deciding which files to remove,
23296         consider also dangling symbolic links.
23297         Reported by Eric Blake.
23298
23299 2007-08-26  Bruno Haible  <bruno@clisp.org>
23300
23301         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
23302
23303 2007-08-23  Simon Josefsson  <simon@josefsson.org>
23304
23305         * lib/readline.c: Don't include getline.h, the prototype is now
23306         found in stdio.h.
23307
23308 2007-08-23  Jim Meyering  <jim@meyering.net>
23309
23310         Getdelim touchup.
23311         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
23312         around the funlockfile call, since funlockfile never sets errno.
23313         Don't set errno upon failed realloc.
23314
23315 2007-08-22  Eric Blake  <ebb9@byu.net>
23316
23317         Getline touchups.
23318         * lib/getdelim.c (getdelim): Revert regression that required *n to
23319         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
23320         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
23321         getdelim, rather than whether implementation is missing.
23322         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
23323         * lib/stdio_.h (getline): Also declare if replacement is
23324         required.
23325         * doc/functions/getdelim.texi: New file.
23326         * doc/functions/getline.texi: Likewise.
23327         * doc/gnulib.texi (Function Substitutes): Add new files.
23328         Reported by Bruno Haible.
23329
23330 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
23331
23332         * users.txt: Add Guile.
23333
23334 2007-08-22  Eric Blake  <ebb9@byu.net>
23335
23336         * tests/test-getdelim.c (main): Use remove, not unlink.
23337         * tests/test-getline.c (main): Likewise.
23338
23339         Move getline and getdelim into stdio.h, per POSIX 200x.
23340         * modules/getline (Files): Remove getline.h.
23341         (Depends-on): Add stdio.
23342         (configure.ac): Add module indicator.
23343         * modules/getdelim (Files): Remove getdelim.h.
23344         (Depends-on): Add stdio.
23345         (configure.ac): Add module indicator.
23346         * modules/stdio (Makefile.am): Work with new indicators.
23347         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
23348         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
23349         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
23350         * lib/getdelim.h: Delete.
23351         * lib/getline.h: Delete.
23352         * lib/stdio_.h (getdelim, getline): Declare.
23353         * modules/getdelim-tests: New module.
23354         * modules/getline-tests: Likewise.
23355         * tests/test-getdelim.c: New file.
23356         * tests/test-getline.c: Likewise.
23357         * NEWS: Document the change.
23358         * lib/getline.c: Update choice of header.
23359         * lib/csharpcomp.c: Likewise.
23360         * lib/getpass.c: Likewise.
23361         * lib/javacomp.c: Likewise.
23362         * lib/javaversion.c: Likewise.
23363         * lib/yesno.c: Likewise.
23364         * lib/getdelim.c: Likewise.
23365         (getdelim): Set errno on failure, and avoid memory leak.
23366
23367 2007-08-19  Bruno Haible  <bruno@clisp.org>
23368
23369         * modules/closein (Depends-on): Add freadahead.
23370         * lib/closein.c: Include freadahead.h.
23371         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
23372         is zero.
23373
23374 2007-08-19  Bruno Haible  <bruno@clisp.org>
23375
23376         * modules/freadahead-tests: New file.
23377         * tests/test-freadahead.sh: New file.
23378         * tests/test-freadahead.c: New file.
23379
23380         * modules/freadahead: New file.
23381         * lib/freadahead.h: New file.
23382         * lib/freadahead.c: New file.
23383         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
23384         fbufmode, fpurge, freadable, fwritable.
23385
23386 2007-08-19  Eric Blake  <ebb9@byu.net>
23387
23388         Test yesno in combination with closein.
23389         * lib/yesno.c (yesno): Document use of stdin.
23390         * modules/yesno-tests (Files): New module.
23391         * tests/test-yesno.c (main): New file.
23392         * tests/test-yesno.sh: Likewise.
23393
23394 2007-08-19  Bruno Haible  <bruno@clisp.org>
23395
23396         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
23397         * lib/fseeko.c (rpl_fseeko): Likewise.
23398         * lib/fseterr.c (fseterr): Likewise.
23399
23400 2007-08-19  Bruno Haible  <bruno@clisp.org>
23401
23402         * tests/test-lseek.c (main): Disable a test for BeOS.
23403         * doc/functions/lseek.texi: Document the BeOS bug.
23404
23405 2007-08-19  Bruno Haible  <bruno@clisp.org>
23406             Eric Blake  <ebb9@byu.net>
23407
23408         * lib/lseek.c: Include <sys/stat.h>.
23409         (rpl_lseek): Add workaround code also for Unix platforms.
23410         Needed for BeOS.
23411         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
23412         * doc/functions/lseek.texi: Document BeOS definiency.
23413
23414 2007-08-18  Bruno Haible  <bruno@clisp.org>
23415
23416         * modules/fstrcmp-tests: New file.
23417         * tests/test-fstrcmp.c: New file.
23418
23419 2007-08-18  Bruno Haible  <bruno@clisp.org>
23420
23421         * modules/fstrcmp: New file, from GNU gettext with modifications.
23422         * lib/fstrcmp.h: New file, from GNU gettext.
23423         * lib/fstrcmp.c: New file, from GNU gettext.
23424         * MODULES.html.sh (String handling): Add fstrcmp.
23425
23426 2007-08-18  Bruno Haible  <bruno@clisp.org>
23427
23428         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
23429         'bool'.
23430         (diag, compareseq): Remove const from the ctxt argument.
23431         (USE_HEURISTIC): Undefine at the end.
23432
23433 2007-08-18  Jim Meyering  <jim@meyering.net>
23434
23435         New file: lib/idcache.h
23436         * NEWS: Mention the addition.
23437         * modules/idcache (Files): Add lib/idcache.h
23438         * lib/idcache.c: Include "idcache.h".
23439         Don't include <sys/types.h>.
23440         Add a FIXME comment.
23441         Move file-scoped "static" declarations to the top.
23442         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
23443
23444 2007-08-17  Bruno Haible  <bruno@clisp.org>
23445         and Paul Eggert  <eggert@cs.ucla.edu>
23446
23447         * MODULES.html.sh: Add diffseq.
23448         * modules/diffseq: New file.
23449         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
23450         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
23451
23452 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
23453
23454         Import changes from coreutils for bootstrap script.
23455
23456         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
23457
23458         * build-aux/bootstrap (slurp): Work even in environments where
23459         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
23460         current code does not slurp files whose names start with ".", and
23461         this looks like it might be a troublesome area.
23462
23463         2007-07-11  Jim Meyering  <jim@meyering.net>
23464
23465         If there's a GPL vN copyright comment, require that N == 3.
23466
23467         2007-07-08  Jim Meyering  <jim@meyering.net>
23468
23469         Run the coreutils-specific code only if tests/Makefile.am.in exists.
23470         * build-aux/bootstrap (mam_template): Move definition out of loop.
23471
23472         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
23473
23474         * build-aux/bootstrap (symlink_to_dir): Rename function from
23475         symlink_to_gnulib.  Add a directory parameter.  Update all
23476         callers.
23477         (cp_mark_as_generated): Also check for -- and link to -- files in
23478         gl/.
23479
23480         2007-07-08  Jim Meyering  <jim@meyering.net>
23481
23482         Adapt to deeper hierarchy in gnulib.
23483         * build-aux/bootstrap (symlink_to_dir): If the destination
23484         directory doesn't exist, create it. This is required at least for
23485         "lib/uniwidth/cjk.h".
23486
23487         2007-05-15  Jim Meyering  <jim@meyering.net>
23488
23489         * build-aux/bootstrap: Now that generated Makefile.am files
23490         are no longer under version control, they must be created at
23491         bootstrap time.
23492
23493 2007-08-14  Ben Pfaff  <blp@gnu.org>
23494
23495         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
23496
23497 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
23498
23499         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
23500         given the changes below.
23501         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
23502         even on hosts that have padding bits beyond the supported 64.
23503
23504 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
23505
23506         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
23507         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
23508         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
23509         depends on it.
23510         (xstrtol_error): Remove.
23511         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
23512         but with a different signature.
23513         (ATTRIBUTE_NORETURN, __attribute__): New macros.
23514         * lib/xstrtol-error.c: Include exitfail.h.
23515         (xstrtol_fatal): New function, with a different signature from the
23516         old xstrtol_error, so that the caller need not worry about passing
23517         in an exit status, or about storage management of the option argument.
23518         (xstrtol_error): Now a static function.  Redo signature to
23519         implement xstrtol_fatal.  Output the correct number of hyphens in
23520         front of the option so that the caller need not worry about
23521         storage management.
23522         (N_): New macro.
23523         (_): Remove; not used now.
23524         * modules/xstrtol: Depend on getopt.
23525         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
23526         of old STRTOL_FATAL_ERROR macro.
23527         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
23528         of test program.
23529         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
23530         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
23531
23532 2007-08-08  Eric Blake  <ebb9@byu.net>
23533
23534         * lib/xstrtol-error.c: Add missing include.
23535
23536         Move xstrtol messages into gnulib domain, when --pobase is used.
23537         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
23538         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
23539         * modules/xstrtol (Files): Distribute new file.
23540         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
23541         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
23542         * tests/test-xstrtol.c: ...into new file.
23543         * tests/test-xstrtoul.c: Also test xstrtoul.
23544         * tests/test-xstrtoimax.c: Also test xstrtoimax.
23545         * tests/test-xstrtoumax.c: Also test xstrtoumax.
23546         * tests/test-xstrtol.sh: Drive the tests.
23547         * tests/test-xstrtoimax.sh: Likewise.
23548         * tests/test-xstrtoumax.sh: Likewise.
23549         * modules/xstrtol-tests: New module.
23550         * modules/xstrtoimax-tests: Likewise.
23551         * modules/xstrtoumax-tests: Likewise.
23552
23553 2007-08-08  Jim Meyering  <jim@meyering.net>
23554
23555         New function: mfile_name_concat.
23556         * lib/filenamecat.c (mfile_name_concat): New function, just like
23557         file_name_concat, but return NULL upon failure rather than exiting
23558         with a diagnostic.
23559         * lib/filenamecat.h: Declare it.
23560
23561 2007-08-07  Bruno Haible  <bruno@clisp.org>
23562
23563         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
23564         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
23565         warning from gcc.
23566         Reported by Eric Blake.
23567
23568 2007-08-07  Simon Josefsson  <simon@josefsson.org>
23569
23570         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
23571         * modules/crypto/arcfour (License): Likewise.
23572         * modules/crypto/des-tests (License): Likewise.
23573         * modules/crypto/gc-arctwo-tests (License): Likewise.
23574         * modules/crypto/gc-des-tests (License): Likewise.
23575         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
23576         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
23577         * modules/crypto/gc-md2-tests (License): Likewise.
23578         * modules/crypto/gc-md4-tests (License): Likewise.
23579         * modules/crypto/gc-md5-tests (License): Likewise.
23580         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
23581         * modules/crypto/gc-rijndael-tests (License): Likewise.
23582         * modules/crypto/gc-sha1-tests (License): Likewise.
23583         * modules/crypto/gc-tests (License): Likewise.
23584         * modules/crypto/hmac-md5 (License): Likewise.
23585         * modules/crypto/hmac-sha1 (License): Likewise.
23586         * modules/crypto/md2-tests (License): Likewise.
23587         * modules/crypto/md4-tests (License): Likewise.
23588         * modules/crypto/md5 (License): Likewise.
23589         * modules/crypto/rijndael (License): Likewise.
23590         * modules/crypto/sha1 (License): Likewise.
23591         * modules/memxor (License): Likewise.
23592
23593 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
23594         and Bruno Haible  <bruno@clisp.org>
23595
23596         * NEWS: Describe interface changes to human, xstrtol.
23597         * lib/human.h: Include <xstrtol.h>.
23598         (human_options): Return enum strtol_error, not int.  Remove
23599         bool arg; take int * instead.
23600         * lib/human.c: Don't include "gettext.h".
23601         (_): Remove; no longer used.
23602         Don't include <xstrtol.h>, since human.h does it.
23603         (human_options): Adjust to abovementioned interface changes.
23604         Do not report error to stderr; that's now the caller's
23605         responsibility.
23606         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
23607         interface change.
23608         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
23609         Str, Argument_type_string.  All uses changed.  Put " argument"
23610         in diagnostics to make them clearer.  Change wording of suffix
23611         message for clarity.
23612         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
23613         Argument_type_string.
23614         (STRTOL_FATAL_WARN): Remove; no longer used.
23615         * modules/human (Depends-on): Remove gettext-h.
23616
23617 2007-08-06  Simon Josefsson  <simon@josefsson.org>
23618
23619         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
23620
23621 2007-07-31  Bruno Haible  <bruno@clisp.org>
23622
23623         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
23624         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
23625         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
23626
23627 2007-07-31  Bruno Haible  <bruno@clisp.org>
23628
23629         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
23630         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
23631
23632 2007-07-30  Bruno Haible  <bruno@clisp.org>
23633
23634         * modules/base64 (License): Use the synonymous term "LGPLv2+".
23635         * modules/c-ctype (License): Likewise.
23636         * modules/c-strcase (License): Likewise.
23637         * modules/check-version (License): Likewise.
23638         * modules/iconv (License): Likewise.
23639         * modules/iconv_open (License): Likewise.
23640         * modules/read-file (License): Likewise.
23641         * modules/striconv (License): Likewise.
23642         * modules/strverscmp (License): Likewise.
23643         * modules/vasprintf (License): Likewise.
23644         * modules/crypto/des (License): Likewise.
23645         * modules/crypto/gc (License): Likewise.
23646         * modules/crypto/gc-arcfour (License): Likewise.
23647         * modules/crypto/gc-arctwo (License): Likewise.
23648         * modules/crypto/gc-des (License): Likewise.
23649         * modules/crypto/gc-hmac-md5 (License): Likewise.
23650         * modules/crypto/gc-hmac-sha1 (License): Likewise.
23651         * modules/crypto/gc-md2 (License): Likewise.
23652         * modules/crypto/gc-md4 (License): Likewise.
23653         * modules/crypto/gc-md5 (License): Likewise.
23654         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
23655         * modules/crypto/gc-random (License): Likewise.
23656         * modules/crypto/gc-rijndael (License): Likewise.
23657         * modules/crypto/gc-sha1 (License): Likewise.
23658         * modules/crypto/md2 (License): Likewise.
23659         * modules/crypto/md4 (License): Likewise.
23660
23661 2007-07-30  Jim Meyering  <jim@meyering.net>
23662
23663         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
23664         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
23665         it has valid stat data.  This bug would cause du not to count the
23666         sizes of inaccessible directories.
23667         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
23668         in <http://bugzilla.redhat.com/250077>.
23669
23670 2007-07-25  Peter O'Gorman  <peter@pogma.com>
23671             Bruno Haible  <bruno@clisp.org>
23672
23673         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
23674         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
23675         #include_next, gives a diagnostic about it, but reports no error in
23676         the exit code.
23677         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
23678
23679 2007-07-24  Ben Pfaff  <blp@gnu.org>
23680
23681         Improve name: "count-one-bits" is better than "popcount".
23682         * MODULES.html.sh: Update name.
23683         * lib/popcount.h: Renamed lib/count-one-bits.h.
23684         (popcount): Renamed count_one_bits.
23685         (popcountl): Renamed count_one_bits_l.
23686         (popcountll): Renamed count_one_bits_ll.
23687         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
23688         * modules/popcount: Renamed module/count-one-bits.
23689         * modules/popcount-tests: Renamed module/count-one-bits-tests.
23690         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
23691
23692 2007-07-23  Ben Pfaff  <blp@gnu.org>
23693
23694         * lib/popcount.h (popcount32): Reduce size of constants, to allow
23695         better code generation, and add U to large constants to avoid
23696         warnings, in non-GCC case.
23697         Suggested by Bruno Haible.
23698
23699 2007-07-23  Ben Pfaff  <blp@gnu.org>
23700
23701         * lib/popcount.h: Use verify_true instead of if...abort.
23702         * modules/popcount: Depend on verify module.
23703         Suggested by Jim Meyering.
23704
23705 2007-07-23  Bruno Haible  <bruno@clisp.org>
23706
23707         * gnulib-tool (func_import): Create a .cvsignore file also when the
23708         directory is not yet in CVS but the toplevel directory is. When
23709         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
23710         Reported by Karl Berry.
23711
23712 2007-07-22  Ben Pfaff  <blp@gnu.org>
23713
23714         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
23715         case.
23716         Suggested by Eric Blake.
23717
23718 2007-07-22  Ben Pfaff  <blp@gnu.org>
23719
23720         New module: popcount.
23721         * MODULES.html.sh: Add popcount.
23722         * modules/popcount: New file.
23723         * modules/popcount-tests: New file.
23724         * tests/test-popcount.c: New file.
23725         * lib/popcount.h: New file.
23726         * m4/popcount.m4: New file.
23727
23728 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
23729
23730         * build-aux/announce-gen: Update to GPLv3.
23731
23732         * build-aux/config.guess: Update from config.
23733
23734 2007-07-21  Bruno Haible  <bruno@clisp.org>
23735
23736         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
23737         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
23738
23739 2007-07-20  Jim Meyering  <jim@meyering.net>
23740
23741         * check-module: Diagnose a self-dependency.
23742
23743 2007-07-19  Bruno Haible  <bruno@clisp.org>
23744
23745         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
23746         empty.
23747         Reported by Eric Blake.
23748
23749 2007-07-18  Bruno Haible  <bruno@clisp.org>
23750
23751         * gnulib-tool: New options --po-base, --po-domain.
23752         (func_usage): Document them.
23753         (pobase, po_domain): New variables.
23754         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
23755         DEFAULT_TEXT_DOMAIN.
23756         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
23757         (func_import): Consider pobase and po_domain. Create a po/ directory.
23758         (func_create_testdir): Set pobase and po_domain to empty.
23759         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
23760         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
23761
23762 2007-07-18  Bruno Haible  <bruno@clisp.org>
23763
23764         * gnulib-tool (func_get_automake_snippet): Synthesize also an
23765         EXTRA_DIST augmentation for files in build-aux/.
23766
23767 2007-07-16  Bruno Haible  <bruno@clisp.org>
23768
23769         * modules/lseek (License): Use the synonymous term "LGPLv2+".
23770         * modules/getdelim (License): Likewise.
23771
23772 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23773
23774         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
23775         * modules/d-type (License): Likewise.
23776         * modules/extensions (License): Likewise.
23777         * modules/fnmatch (License): Likewise.
23778         * modules/fseeko (License): Likewise.
23779         * modules/getaddrinfo (License): Likewise.
23780         * modules/getline (License): Likewise.
23781         * modules/getlogin_r (License): Likewise.
23782         * modules/getpass (License): Likewise.
23783         * modules/gettimeofday (License): Likewise.
23784         * modules/glob (License): Likewise.
23785         * modules/inet_ntop (License): Likewise.
23786         * modules/malloc (License): Likewise.
23787         * modules/malloca (License): Likewise.
23788         * modules/memmem (License): Likewise.
23789         * modules/mempcpy (License): Likewise.
23790         * modules/memset (License): Likewise.
23791         * modules/minmax (License): Likewise.
23792         * modules/mktime (License): Likewise.
23793         * modules/netinet_in (License): Likewise.
23794         * modules/pathmax (License): Likewise.
23795         * modules/poll (License): Likewise.
23796         * modules/regex (License): Likewise.
23797         * modules/snprintf (License): Likewise.
23798         * modules/stdbool (License): Likewise.
23799         * modules/stdint (License): Likewise.
23800         * modules/stdio (License): Likewise.
23801         * modules/strcase (License): Likewise.
23802         * modules/strcasestr (License): Likewise.
23803         * modules/strdup (License): Likewise.
23804         * modules/string (License): Likewise.
23805         * modules/strndup (License): Likewise.
23806         * modules/strnlen (License): Likewise.
23807         * modules/strpbrk (License): Likewise.
23808         * modules/strptime (License): Likewise.
23809         * modules/strsep (License): Likewise.
23810         * modules/sys_select (License): Likewise.
23811         * modules/sys_socket (License): Likewise.
23812         * modules/sys_stat (License): Likewise.
23813         * modules/sys_time (License): Likewise.
23814         * modules/time (License): Likewise.
23815         * modules/time_r (License): Likewise.
23816         * modules/timegm (License): Likewise.
23817         * modules/unistd (License): Likewise.
23818         * modules/vsnprintf (License): Likewise.
23819         * modules/wctype (License): Likewise.
23820
23821 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23822
23823         * modules/argz (License): LGPLv2+.
23824
23825 2007-07-15  Karl Berry  <karl@gnu.org>
23826
23827         * doc/gnulib.texi: revise node structure per new fdl.texi.
23828
23829 2007-07-14  Bruno Haible  <bruno@clisp.org>
23830
23831         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
23832         the output file.
23833         * lib/uniname/uninames.h: Regenerated.
23834
23835 2007-07-14  Karl Berry  <karl@gnu.org>
23836
23837         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
23838         omitting sectioning and index commands.
23839
23840 2007-07-13  Bruno Haible  <bruno@clisp.org>
23841
23842         New gnulib-tool option --more-symlinks.
23843         * gnulib-tool (func_usage): Document --more-symlinks.
23844         (do_copyrights): New variable.
23845         Recognize option --more-symlinks.
23846         (func_import): Don't add a copyright notice transform to
23847         sed_transform_lib_file if do_copyrights is empty.
23848
23849 2007-07-13  Bruno Haible  <bruno@clisp.org>
23850
23851         * lib/vasnprintf.c (decimal_point_char): Define also if
23852         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
23853         && !NEED_PRINTF_DIRECTIVE_A.
23854         Reported by Clemens Koller <clemens.koller@anagramm.de> via
23855         Gary V. Vaughan <gary@gnu.org>.
23856
23857 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
23858
23859         * lib/inttypes_.h: Undo previous change, since it was fixed
23860         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
23861
23862 2007-07-13  Bruno Haible  <bruno@clisp.org>
23863
23864         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
23865         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
23866
23867 2007-07-13  Jim Meyering  <jim@meyering.net>
23868
23869         df: Don't fail for Tru64's "file-on-file mount".
23870         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
23871         so we fall through and use statfs instead.  Details here:
23872         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
23873         Reported by Albert Chin.
23874
23875 2007-07-13  Bruno Haible  <bruno@clisp.org>
23876
23877         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
23878         * modules/configmake (License): Likewise.
23879         * modules/gettext (License): Likewise.
23880         * modules/gettext-h (License): Likewise.
23881         * modules/include_next (License): Likewise.
23882         * modules/link-warning (License): Likewise.
23883         * modules/localcharset (License): Likewise.
23884         * modules/localename (License): Likewise.
23885         * modules/lock (License): Likewise.
23886         * modules/relocatable-lib-lgpl (License): Likewise.
23887         * modules/size_max (License): Likewise.
23888         * modules/vasnprintf (License): Likewise.
23889         * modules/wchar (License): Likewise.
23890         * modules/xsize (License): Likewise.
23891
23892 2007-07-13  Bruno Haible  <bruno@clisp.org>
23893
23894         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
23895         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
23896
23897 2007-07-12  Bruno Haible  <bruno@clisp.org>
23898
23899         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
23900         in the modules files.
23901
23902 2007-07-11  Karl Berry  <karl@gnu.org>
23903
23904         * MODULES.html.sh (func_module): use
23905          sed -e '\|^'"${includefile}"'$|d'
23906          instead of /.../d, to avoid errors on $includefile's containing /.
23907
23908 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
23909
23910         * gnulib-tool (func_import): Avoid duplication of --avoid
23911         statements
23912         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
23913         names to `_' in variable names.
23914
23915 2007-07-10  Eric Blake  <ebb9@byu.net>
23916
23917         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
23918         * NEWS: Document this change.
23919
23920 2007-07-08  Bruno Haible  <bruno@clisp.org>
23921
23922         Update to Unicode 5.0.
23923         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
23924         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
23925         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
23926         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
23927         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
23928         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
23929         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
23930         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
23931         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
23932         U+10A3F, U+1D242..U+1D244.
23933         (nonspacing_table_ind): Update.
23934         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
23935         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
23936
23937 2007-07-08  Bruno Haible  <bruno@clisp.org>
23938
23939         Update to Unicode 5.0.
23940         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
23941         code transform. Extend the name index field of unicode_name_to_code and
23942         unicode_code_to_name from 16 to 24 bits.
23943         * lib/uniname/uniname.c (unicode_character_name,
23944         unicode_name_character): Add the range 0x12xxx to the code transform.
23945         * lib/uniname/uninames.h: Regenerated.
23946         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
23947
23948 2007-07-07  Bruno Haible  <bruno@clisp.org>
23949
23950         * modules/wcwidth-tests: New file.
23951         * tests/test-wcwidth.c: New file.
23952
23953         Work around MacOS X wcwidth() bug.
23954         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
23955         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
23956         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
23957         original wcwidth in non-UTF-8 locales.
23958         * modules/wcwidth (Depends-on): Add localcharset, streq,
23959         uniwidth/width.
23960         * doc/functions/wcwidth.texi: Update.
23961
23962 2007-07-07  Bruno Haible  <bruno@clisp.org>
23963
23964         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
23965         (wcwidth): New declaration.
23966         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
23967         macros.
23968         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
23969         here. Prepare for creating <wchar.h> unconditionally.
23970         * modules/wchar (Depends-on): Add link-warning.
23971         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
23972         REPLACE_WCWIDTH, and GL_LINK_WARNING.
23973         * lib/wcwidth.h: Remove file.
23974         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
23975         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
23976         * modules/wcwidth (Files): Remove lib/wcwidth.h.
23977         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
23978         (Include): Replace wcwidth.h with <wchar.h>.
23979         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
23980         * lib/mbchar.h: Don't include wcwidth.h.
23981         * lib/mbswidth.c: Likewise.
23982         * NEWS: Mention the change.
23983
23984 2007-07-07  Bruno Haible  <bruno@clisp.org>
23985
23986         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
23987         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
23988         definition with an external declaration.
23989         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
23990         defined as a function. Remove AC_C_INLINE requirement.
23991         * modules/wcwidth (Files): Add lib/wcwidth.c.
23992         (Makefile.am): Remove redundant statement.
23993
23994 2007-07-07  Bruno Haible  <bruno@clisp.org>
23995
23996         * MODULES.html.sh (Unicode string functions): Add the new modules.
23997
23998         * tests/uniwidth/test-u32-strwidth.c: New file.
23999         * modules/uniwidth/u32-strwidth-tests: New file.
24000
24001         * lib/uniwidth/u32-strwidth.c: New file.
24002         * modules/uniwidth/u32-strwidth: New file.
24003
24004         * tests/uniwidth/test-u16-strwidth.c: New file.
24005         * modules/uniwidth/u16-strwidth-tests: New file.
24006
24007         * lib/uniwidth/u16-strwidth.c: New file.
24008         * modules/uniwidth/u16-strwidth: New file.
24009
24010         * tests/uniwidth/test-u8-strwidth.c: New file.
24011         * modules/uniwidth/u8-strwidth-tests: New file.
24012
24013         * lib/uniwidth/u8-strwidth.c: New file.
24014         * modules/uniwidth/u8-strwidth: New file.
24015
24016         * tests/uniwidth/test-u32-width.c: New file.
24017         * modules/uniwidth/u32-width-tests: New file.
24018
24019         * lib/uniwidth/u32-width.c: New file.
24020         * modules/uniwidth/u32-width: New file.
24021
24022         * tests/uniwidth/test-u16-width.c: New file.
24023         * modules/uniwidth/u16-width-tests: New file.
24024
24025         * lib/uniwidth/u16-width.c: New file.
24026         * modules/uniwidth/u16-width: New file.
24027
24028         * tests/uniwidth/test-u8-width.c: New file.
24029         * modules/uniwidth/u8-width-tests: New file.
24030
24031         * lib/uniwidth/u8-width.c: New file.
24032         * modules/uniwidth/u8-width: New file.
24033
24034         * tests/uniwidth/test-uc_width.c: New file.
24035         * modules/uniwidth/width-tests: New file.
24036
24037         * lib/uniwidth/width.c: New file, from GNU libiconv.
24038         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
24039         * modules/uniwidth/width: New file.
24040
24041         * lib/uniwidth.h: New file, from GNU libiconv.
24042         * modules/uniwidth/base: New file.
24043
24044 2007-07-07  Bruno Haible  <bruno@clisp.org>
24045
24046         * lib/uniname.h: New file, from GNU gettext.
24047         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
24048         * lib/uniname/uninames.h: New file, from GNU gettext.
24049         * lib/uniname/uniname.c: New file, from GNU gettext.
24050         * tests/uniname/test-uninames.sh: New file.
24051         * tests/uniname/test-uninames.c: New file, from GNU gettext.
24052         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
24053         * modules/uniname/base: New file.
24054         * modules/uniname/uniname: New file.
24055         * modules/uniname/uniname-tests: New file.
24056         * MODULES.html.sh (Unicode string functions): Add the new modules.
24057
24058 2007-07-06  Bruno Haible  <bruno@clisp.org>
24059
24060         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
24061
24062 2007-07-06  Bruno Haible  <bruno@clisp.org>
24063
24064         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
24065         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
24066         includes <cygwin/sys_time.h> which includes <sys/select.h> which
24067         include <sys/time.h>.
24068         Reported by Eric Blake.
24069
24070 2007-07-06  Eric Blake  <ebb9@byu.net>
24071
24072         Fix testing canonicalize on cygwin.
24073         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
24074         Revert patch from 2007-06-19.
24075         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
24076         canonicalize module is also in use.
24077         * tests/test-canonicalize.c: New file.
24078         * tests/test-canonicalize.sh: Likewise.
24079         * modules/canonicalize-tests: Likewise.
24080
24081 2007-07-06  Jim Meyering  <jim@meyering.net>
24082
24083         * lib/getugroups.c (getugroups): Detect getgrent failure.
24084         Adjust comment to reflect reality: this function may return -1.
24085
24086 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
24087
24088         * build-aux/bootstrap (TP_URL,get_translations): Update to use
24089         the new TP address.
24090         (usage): Fix typo
24091         (gnulib_mk): New variable.
24092
24093 2007-07-05  Jim Meyering  <jim@meyering.net>
24094
24095         Don't let endgrent clobber errno, no matter how improbable.
24096         * lib/getugroups.c (getugroups): Save and restore errno around
24097         endgrent call.
24098
24099         Close the group DB even when failing with 2^31 or more members.
24100         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
24101
24102 2007-07-04  Jim Meyering  <jim@meyering.net>
24103
24104         * lib/getugroups.h: New file.
24105         * lib/getugroups.c: Include "getugroups.h".
24106         Remove uses of "register" keyword.
24107         Move local variable, "cp", down into scope where used.
24108         Give "username" parameter the "const" attribute.
24109         * modules/getugroups (Files): Add lib/getugroups.h
24110
24111 2007-07-04  Karl Berry  <karl@gnu.org>
24112
24113         * MODULES.html.sh (func_all_modules): Complete rename of
24114         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
24115
24116 2007-07-02  Bruno Haible  <bruno@clisp.org>
24117
24118         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
24119         mode, when inttypes.h comes from gnulib.
24120         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
24121
24122 2007-07-02  Simon Josefsson  <simon@josefsson.org>
24123
24124         * NEWS: Mention lgpl module name change.
24125
24126         * modules/lgpl-2.1: Renamed from lgpl.
24127
24128         * NEWS: Mention gpl module name change.
24129
24130         * modules/gpl-3.0: New file, based on gpl-2.0.
24131
24132         * modules/gpl-2.0: Renamed from gpl.
24133
24134         * modules/gpl: Fix filename, doc/gpl.texi is now found at
24135         doc/gpl-2.0.texi.
24136
24137 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
24138
24139         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
24140         #define __STDC_LIMIT_MACROS temporarily while including
24141         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
24142         Problem reported by Joel E. Denny in
24143         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
24144
24145 2007-07-01  Bruno Haible  <bruno@clisp.org>
24146
24147         * lib/unistdio.h: New file.
24148         * lib/unistdio/u-asnprintf.h: New file.
24149         * lib/unistdio/u-asprintf.h: New file.
24150         * lib/unistdio/u-printf-args.c: New file.
24151         * lib/unistdio/u-printf-args.h: New file.
24152         * lib/unistdio/u-printf-parse.h: New file.
24153         * lib/unistdio/u-snprintf.h: New file.
24154         * lib/unistdio/u-sprintf.h: New file.
24155         * lib/unistdio/u-vasprintf.h: New file.
24156         * lib/unistdio/u-vsnprintf.h: New file.
24157         * lib/unistdio/u-vsprintf.h: New file.
24158         * lib/unistdio/ulc-asnprintf.c: New file.
24159         * lib/unistdio/ulc-asprintf.c: New file.
24160         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
24161         * lib/unistdio/ulc-printf-parse.c: New file.
24162         * lib/unistdio/ulc-snprintf.c: New file.
24163         * lib/unistdio/ulc-sprintf.c: New file.
24164         * lib/unistdio/ulc-vasnprintf.c: New file.
24165         * lib/unistdio/ulc-vasprintf.c: New file.
24166         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
24167         * lib/unistdio/ulc-vsnprintf.c: New file.
24168         * lib/unistdio/ulc-vsprintf.c: New file.
24169         * lib/unistdio/u8-asnprintf.c: New file.
24170         * lib/unistdio/u8-asprintf.c: New file.
24171         * lib/unistdio/u8-printf-parse.c: New file.
24172         * lib/unistdio/u8-snprintf.c: New file.
24173         * lib/unistdio/u8-sprintf.c: New file.
24174         * lib/unistdio/u8-vasnprintf.c: New file.
24175         * lib/unistdio/u8-vasprintf.c: New file.
24176         * lib/unistdio/u8-vsnprintf.c: New file.
24177         * lib/unistdio/u8-vsprintf.c: New file.
24178         * lib/unistdio/u8-u8-asnprintf.c: New file.
24179         * lib/unistdio/u8-u8-asprintf.c: New file.
24180         * lib/unistdio/u8-u8-snprintf.c: New file.
24181         * lib/unistdio/u8-u8-sprintf.c: New file.
24182         * lib/unistdio/u8-u8-vasnprintf.c: New file.
24183         * lib/unistdio/u8-u8-vasprintf.c: New file.
24184         * lib/unistdio/u8-u8-vsnprintf.c: New file.
24185         * lib/unistdio/u8-u8-vsprintf.c: New file.
24186         * lib/unistdio/u16-asnprintf.c: New file.
24187         * lib/unistdio/u16-asprintf.c: New file.
24188         * lib/unistdio/u16-printf-parse.c: New file.
24189         * lib/unistdio/u16-snprintf.c: New file.
24190         * lib/unistdio/u16-sprintf.c: New file.
24191         * lib/unistdio/u16-vasnprintf.c: New file.
24192         * lib/unistdio/u16-vasprintf.c: New file.
24193         * lib/unistdio/u16-vsnprintf.c: New file.
24194         * lib/unistdio/u16-vsprintf.c: New file.
24195         * lib/unistdio/u16-u16-asnprintf.c: New file.
24196         * lib/unistdio/u16-u16-asprintf.c: New file.
24197         * lib/unistdio/u16-u16-snprintf.c: New file.
24198         * lib/unistdio/u16-u16-sprintf.c: New file.
24199         * lib/unistdio/u16-u16-vasnprintf.c: New file.
24200         * lib/unistdio/u16-u16-vasprintf.c: New file.
24201         * lib/unistdio/u16-u16-vsnprintf.c: New file.
24202         * lib/unistdio/u16-u16-vsprintf.c: New file.
24203         * lib/unistdio/u32-asnprintf.c: New file.
24204         * lib/unistdio/u32-asprintf.c: New file.
24205         * lib/unistdio/u32-printf-parse.c: New file.
24206         * lib/unistdio/u32-snprintf.c: New file.
24207         * lib/unistdio/u32-sprintf.c: New file.
24208         * lib/unistdio/u32-vasnprintf.c: New file.
24209         * lib/unistdio/u32-vasprintf.c: New file.
24210         * lib/unistdio/u32-vsnprintf.c: New file.
24211         * lib/unistdio/u32-vsprintf.c: New file.
24212         * lib/unistdio/u32-u32-asnprintf.c: New file.
24213         * lib/unistdio/u32-u32-asprintf.c: New file.
24214         * lib/unistdio/u32-u32-snprintf.c: New file.
24215         * lib/unistdio/u32-u32-sprintf.c: New file.
24216         * lib/unistdio/u32-u32-vasnprintf.c: New file.
24217         * lib/unistdio/u32-u32-vasprintf.c: New file.
24218         * lib/unistdio/u32-u32-vsnprintf.c: New file.
24219         * lib/unistdio/u32-u32-vsprintf.c: New file.
24220         * tests/unistdio/test-ulc-asnprintf1.c: New file.
24221         * tests/unistdio/test-ulc-asnprintf1.h: New file.
24222         * tests/unistdio/test-ulc-printf1.h: New file.
24223         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
24224         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
24225         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
24226         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
24227         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
24228         * tests/unistdio/test-ulc-vasprintf1.c: New file.
24229         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
24230         * tests/unistdio/test-ulc-vsprintf1.c: New file.
24231         * tests/unistdio/test-u8-asnprintf1.c: New file.
24232         * tests/unistdio/test-u8-asnprintf1.h: New file.
24233         * tests/unistdio/test-u8-printf1.h: New file.
24234         * tests/unistdio/test-u8-vasnprintf1.c: New file.
24235         * tests/unistdio/test-u8-vasnprintf2.c: New file.
24236         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
24237         * tests/unistdio/test-u8-vasnprintf3.c: New file.
24238         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
24239         * tests/unistdio/test-u8-vasprintf1.c: New file.
24240         * tests/unistdio/test-u8-vsnprintf1.c: New file.
24241         * tests/unistdio/test-u8-vsprintf1.c: New file.
24242         * tests/unistdio/test-u16-asnprintf1.c: New file.
24243         * tests/unistdio/test-u16-asnprintf1.h: New file.
24244         * tests/unistdio/test-u16-printf1.h: New file.
24245         * tests/unistdio/test-u16-vasnprintf1.c: New file.
24246         * tests/unistdio/test-u16-vasnprintf2.c: New file.
24247         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
24248         * tests/unistdio/test-u16-vasnprintf3.c: New file.
24249         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
24250         * tests/unistdio/test-u16-vasprintf1.c: New file.
24251         * tests/unistdio/test-u16-vsnprintf1.c: New file.
24252         * tests/unistdio/test-u16-vsprintf1.c: New file.
24253         * tests/unistdio/test-u32-asnprintf1.c: New file.
24254         * tests/unistdio/test-u32-asnprintf1.h: New file.
24255         * tests/unistdio/test-u32-printf1.h: New file.
24256         * tests/unistdio/test-u32-vasnprintf1.c: New file.
24257         * tests/unistdio/test-u32-vasnprintf2.c: New file.
24258         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
24259         * tests/unistdio/test-u32-vasnprintf3.c: New file.
24260         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
24261         * tests/unistdio/test-u32-vasprintf1.c: New file.
24262         * tests/unistdio/test-u32-vsnprintf1.c: New file.
24263         * tests/unistdio/test-u32-vsprintf1.c: New file.
24264         * modules/unistdio/base: New file.
24265         * modules/unistdio/u-printf-args: New file.
24266         * modules/unistdio/ulc-asnprintf: New file.
24267         * modules/unistdio/ulc-asprintf: New file.
24268         * modules/unistdio/ulc-fprintf: New file.
24269         * modules/unistdio/ulc-printf-parse: New file.
24270         * modules/unistdio/ulc-snprintf: New file.
24271         * modules/unistdio/ulc-sprintf: New file.
24272         * modules/unistdio/ulc-vasnprintf: New file.
24273         * modules/unistdio/ulc-vasprintf: New file.
24274         * modules/unistdio/ulc-vfprintf: New file.
24275         * modules/unistdio/ulc-vsnprintf: New file.
24276         * modules/unistdio/ulc-vsprintf: New file.
24277         * modules/unistdio/u8-asnprintf: New file.
24278         * modules/unistdio/u8-asprintf: New file.
24279         * modules/unistdio/u8-printf-parse: New file.
24280         * modules/unistdio/u8-snprintf: New file.
24281         * modules/unistdio/u8-sprintf: New file.
24282         * modules/unistdio/u8-vasnprintf: New file.
24283         * modules/unistdio/u8-vasprintf: New file.
24284         * modules/unistdio/u8-vsnprintf: New file.
24285         * modules/unistdio/u8-vsprintf: New file.
24286         * modules/unistdio/u8-u8-asnprintf: New file.
24287         * modules/unistdio/u8-u8-asprintf: New file.
24288         * modules/unistdio/u8-u8-snprintf: New file.
24289         * modules/unistdio/u8-u8-sprintf: New file.
24290         * modules/unistdio/u8-u8-vasnprintf: New file.
24291         * modules/unistdio/u8-u8-vasprintf: New file.
24292         * modules/unistdio/u8-u8-vsnprintf: New file.
24293         * modules/unistdio/u8-u8-vsprintf: New file.
24294         * modules/unistdio/u16-asnprintf: New file.
24295         * modules/unistdio/u16-asprintf: New file.
24296         * modules/unistdio/u16-printf-parse: New file.
24297         * modules/unistdio/u16-snprintf: New file.
24298         * modules/unistdio/u16-sprintf: New file.
24299         * modules/unistdio/u16-vasnprintf: New file.
24300         * modules/unistdio/u16-vasprintf: New file.
24301         * modules/unistdio/u16-vsnprintf: New file.
24302         * modules/unistdio/u16-vsprintf: New file.
24303         * modules/unistdio/u16-u16-asnprintf: New file.
24304         * modules/unistdio/u16-u16-asprintf: New file.
24305         * modules/unistdio/u16-u16-snprintf: New file.
24306         * modules/unistdio/u16-u16-sprintf: New file.
24307         * modules/unistdio/u16-u16-vasnprintf: New file.
24308         * modules/unistdio/u16-u16-vasprintf: New file.
24309         * modules/unistdio/u16-u16-vsnprintf: New file.
24310         * modules/unistdio/u16-u16-vsprintf: New file.
24311         * modules/unistdio/u32-asnprintf: New file.
24312         * modules/unistdio/u32-asprintf: New file.
24313         * modules/unistdio/u32-printf-parse: New file.
24314         * modules/unistdio/u32-snprintf: New file.
24315         * modules/unistdio/u32-sprintf: New file.
24316         * modules/unistdio/u32-vasnprintf: New file.
24317         * modules/unistdio/u32-vasprintf: New file.
24318         * modules/unistdio/u32-vsnprintf: New file.
24319         * modules/unistdio/u32-vsprintf: New file.
24320         * modules/unistdio/u32-u32-asnprintf: New file.
24321         * modules/unistdio/u32-u32-asprintf: New file.
24322         * modules/unistdio/u32-u32-snprintf: New file.
24323         * modules/unistdio/u32-u32-sprintf: New file.
24324         * modules/unistdio/u32-u32-vasnprintf: New file.
24325         * modules/unistdio/u32-u32-vasprintf: New file.
24326         * modules/unistdio/u32-u32-vsnprintf: New file.
24327         * modules/unistdio/u32-u32-vsprintf: New file.
24328         * modules/unistdio/ulc-asnprintf-tests: New file.
24329         * modules/unistdio/ulc-vasnprintf-tests: New file.
24330         * modules/unistdio/ulc-vasprintf-tests: New file.
24331         * modules/unistdio/ulc-vsnprintf-tests: New file.
24332         * modules/unistdio/ulc-vsprintf-tests: New file.
24333         * modules/unistdio/u8-asnprintf-tests: New file.
24334         * modules/unistdio/u8-vasnprintf-tests: New file.
24335         * modules/unistdio/u8-vasprintf-tests: New file.
24336         * modules/unistdio/u8-vsnprintf-tests: New file.
24337         * modules/unistdio/u8-vsprintf-tests: New file.
24338         * modules/unistdio/u16-asnprintf-tests: New file.
24339         * modules/unistdio/u16-vasnprintf-tests: New file.
24340         * modules/unistdio/u16-vasprintf-tests: New file.
24341         * modules/unistdio/u16-vsnprintf-tests: New file.
24342         * modules/unistdio/u16-vsprintf-tests: New file.
24343         * modules/unistdio/u32-asnprintf-tests: New file.
24344         * modules/unistdio/u32-vasnprintf-tests: New file.
24345         * modules/unistdio/u32-vasprintf-tests: New file.
24346         * modules/unistdio/u32-vsnprintf-tests: New file.
24347         * modules/unistdio/u32-vsprintf-tests: New file.
24348         * MODULES.html.sh (Unicode string functions): Add the new modules.
24349
24350 2007-07-01  Bruno Haible  <bruno@clisp.org>
24351
24352         * lib/sprintf.c (sprintf): Limit the available length estimation,
24353         to avoid address wraparound.
24354         * lib/vsprintf.c (vsprintf): Likewise.
24355         * modules/sprintf-posix (Dependencies): Add stdint.
24356         * modules/vsprintf-posix (Dependencies): Likewise.
24357
24358 2007-07-01  Bruno Haible  <bruno@clisp.org>
24359
24360         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
24361         Windows PATH as well. Conservative double-quoting. Comments.
24362
24363 2007-07-01  Bruno Haible  <bruno@clisp.org>
24364             Eric Blake  <ebb9@byu.net>
24365             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24366
24367         * gnulib-tool (self_abspathname): Fix algorithm to cope with
24368         empty components in $PATH, denoting '.'.
24369
24370 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24371
24372         * gnulib-tool: Fix indentation.
24373         (func_create_megatestdir): Likewise.
24374         Report by Bruno Haible.
24375
24376 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24377
24378         Sync from Automake.
24379         * build-aux/gnupload: Fix shell portability issues with for loops.
24380         Report by Karl Berry.
24381
24382 2007-06-29  Simon Josefsson  <simon@josefsson.org>
24383
24384         * build-aux/maint.mk (POURL): Use translationproject.org.
24385
24386 2007-06-27  Simon Josefsson  <simon@josefsson.org>
24387             Bruno Haible  <bruno@clisp.org>
24388
24389         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
24390         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
24391         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
24392         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
24393         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
24394
24395 2007-06-27  Bruno Haible  <bruno@clisp.org>
24396
24397         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
24398         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
24399
24400 2007-06-26  Karl Berry  <karl@gnu.org>
24401
24402         * MODULES.html.sh: remove xreadlink-with-size.
24403
24404 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
24405
24406         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
24407         method that I hope also handles the double-include problem noted
24408         by Bruno Haible in
24409         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
24410
24411 2007-06-23  Bruno Haible  <bruno@clisp.org>
24412
24413         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
24414         Don't let the 'mostlyclean' target fail if the last subdirectory could
24415         not be removed.
24416         Reported by Karl Berry.
24417
24418 2007-06-23  Bruno Haible  <bruno@clisp.org>
24419
24420         * gnulib-tool (echo): Add a speedier workaround for ksh.
24421         * tests/test-echo.sh: Likewise.
24422
24423 2007-06-23  Bruno Haible  <bruno@clisp.org>
24424
24425         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
24426         * tests/test-echo.sh: Likewise.
24427
24428 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24429
24430         * gnulib-tool (IFS): Initialize early, so we don't set it to
24431         empty later.
24432         (self_abspathname): Rewrite algorithm to set it, reindent.
24433         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
24434         (func_create_megatestdir): Merge some sed scripts.
24435
24436 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
24437
24438         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
24439         exposed by Sun Studio 11 cc on Solaris 8.
24440
24441 2007-06-22  Bruno Haible  <bruno@clisp.org>
24442
24443         * gnulib-tool (echo): Ensure the echo primitive does not interpret
24444         backslashes.
24445         * tests/test-echo.sh: New file.
24446
24447 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24448
24449         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
24450         simplify `sed_replace_build_aux' scripts, they are portable but
24451         echoing them with `echo' is not.
24452         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
24453
24454 2007-06-21  Karl Berry  <karl@gnu.org>
24455
24456         * config/srclist.txt: guess we can't handle the licenses via
24457         srclist at the moment.
24458
24459 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
24460
24461         * MODULES.html.sh: Add include_next.
24462         * modules/include_next: New file.
24463
24464 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
24465
24466         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
24467         INCLUDE_NEXT.
24468         (gl_CHECK_NEXT_HEADERS): New macro.
24469         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
24470         the obsolescent gl_ABSOLUTE_HEADER.
24471         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
24472         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
24473         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
24474         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
24475         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
24476         * m4/math_h.m4 (gl_MATH_H): Likewise.
24477         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
24478         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
24479         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
24480         * m4/stdint.m4 (gl_STDINT_H): Likewise.
24481         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
24482         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
24483         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
24484         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
24485         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
24486         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
24487         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
24488         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
24489         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
24490         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
24491         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
24492         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
24493         * m4/inttypes.m4 (gl_INTTYPES_H): Define
24494         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
24495         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
24496         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
24497         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
24498         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
24499         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
24500         * lib/float_.h: Likewise.
24501         * lib/inttypes_.h: Likewise.
24502         * lib/math_.h: Likewise.
24503         * lib/search_.h: Likewise.
24504         * lib/signal_.h: Likewise.
24505         * lib/stdint_.h: Likewise.
24506         * lib/stdio_.h: Likewise.
24507         * lib/stdlib_.h: Likewise.
24508         * lib/string_.h: Likewise.
24509         * lib/sys_stat_.h: Likewise.
24510         * lib/sys_time_.h: Likewise.
24511         * lib/time_.h: Likewise.
24512         * lib/unistd_.h: Likewise.
24513         * lib/wchar_.h: Likewise.
24514         * lib/wctype_.h: Likewise.
24515         * lib/dirent_.h: Likewise.
24516         * lib/iconv_.h: Likewise.
24517         * lib/locale_.h: Likewise.
24518         * lib/netinet_in_.h: Likewise.
24519         * lib/sys_select_.h: Likewise.
24520         * lib/sys_socket_.h: Likewise.
24521         * lib/sysexits_.h: Likewise.
24522         * modules/fcntl (Depends-on): Depend on include_next, not
24523         absolute_header.
24524         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
24525         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
24526         * modules/fchdir: Likewise.
24527         * modules/float: Likewise.
24528         * modules/iconv_open: Likewise.
24529         * modules/inttypes: Likewise.
24530         * modules/locale: Likewise.
24531         * modules/math: Likewise.
24532         * modules/netinet_in: Likewise.
24533         * modules/search: Likewise.
24534         * modules/signal: Likewise.
24535         * modules/stdint: Likewise.
24536         * modules/stdio: Likewise.
24537         * modules/stdlib: Likewise.
24538         * modules/string: Likewise.
24539         * modules/sys_select: Likewise.
24540         * modules/sys_socket: Likewise.
24541         * modules/sys_stat: Likewise.
24542         * modules/sys_time: Likewise.
24543         * modules/sysexits: Likewise.
24544         * modules/time: Likewise.
24545         * modules/unistd: Likewise.
24546         * modules/wchar: Likewise.
24547         * modules/wctype: Likewise.
24548         * modules/sys_stat: Change maintainer to "all".
24549         * modules/unistd: Likewise.
24550
24551 2007-06-20  Karl Berry  <karl@gnu.org>
24552
24553         * config/srclist.txt: track www changes in license files.
24554
24555 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
24556
24557         * build-aux/bootstrap: Remove stray dot.
24558         Make sure build_aux settings are honored when linking
24559         gnulib_extra_files.
24560
24561 2007-06-19  Eric Blake  <ebb9@byu.net>
24562
24563         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
24564         Allow compilation on cygwin.
24565
24566 2007-06-19  Jim Meyering  <jim@meyering.net>
24567
24568         xreadlink-with-size: Remove module.  No longer used.
24569         Ex-callers now use xreadlink or mreadlink-with-size.
24570         * modules/xreadlink-with-size: Remove module.
24571         * lib/xreadlink-with-size.c: Remove file.
24572         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
24573         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
24574         just before the function definition *is* accurate.
24575
24576         Eliminate one way canonicalize_filename_mode could exit.
24577         * lib/canonicalize.c (canonicalize_filename_mode):
24578         Use mreadlink_with_size, not xreadlink_with_size.
24579
24580 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
24581
24582         Detect porting problems to FreeBSD/arm, which has time_t wider than
24583         long int.  Original problem reported for GNU diff by Xin Li in
24584         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
24585         * modules/getdate (Depends-on): Add intprops, verify.
24586         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
24587         is an integer type no wider than long int.
24588
24589 2007-06-18  Jim Meyering  <jim@meyering.net>
24590
24591         New module: mreadlink-with-size.
24592         * MODULES.html.sh: Add mreadlink-with-size.
24593         * modules/mreadlink-with-size: New module
24594         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
24595         not xreadlink-with-size.
24596         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
24597
24598 2007-06-16  Bruno Haible  <bruno@clisp.org>
24599
24600         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
24601         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
24602         Reported by Gary V. Vaughan <gary@gnu.org>.
24603
24604 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
24605
24606         Revamp lchown so that it lives in unistd.h where it belongs.
24607         * lib/lchown.h: Remove.
24608         * lib/dirchownmod.c: Don't include lib/lchown.h.
24609         * lib/fchownat.c: Likewise.
24610         * lib/openat.c: Likewise.
24611         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
24612         does not follow symlinks.
24613         (EOPNOTSUPP): Define if not defined.
24614         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
24615         is defined to 0.
24616         (lchown): New decl.
24617         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
24618         Do not check for lchown decl.
24619         Set REPLACE_LCHOWN.
24620         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
24621         REPLACE_LCHOWN.
24622         * modules/chown: Make it clear it follows symlinks.
24623         * modules/lchown: Make it clear it doesn't follow symlinks.
24624         (Files): Remove lib/lchown.h
24625         (Depends-on): Add unistd.
24626         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
24627         (Include): Include <unistd.h>, not "lchown.h".
24628         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
24629         REPLACE_LCHOWN.
24630
24631 2007-06-15  Jim Meyering  <jim@meyering.net>
24632
24633         Change license (GPL to LGPL) of fsusage and dependents.
24634         * modules/fsusage (License): Change to LGPL.
24635         * modules/full-read (License): Likewise.
24636         * modules/full-write (License): Likewise.
24637         * modules/safe-read (License): Likewise.
24638         * modules/safe-write (License): Likewise.
24639
24640 2007-06-14  Ben Pfaff  <blp@gnu.org>
24641
24642         Missing part of allocsa -> malloca transition.
24643         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
24644         gl_MALLOCA.
24645
24646 2007-06-12  Bruno Haible  <bruno@clisp.org>
24647
24648         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
24649         to ia64, x86_64, i386.
24650         Reported by Eric Blake.
24651
24652 2007-06-12  Bruno Haible  <bruno@clisp.org>
24653
24654         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
24655         cross-compiling to x86_64.
24656
24657 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
24658
24659         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
24660         glitch reported by Ralf Wildenhues in
24661         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
24662
24663         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
24664         Vin Shelton.
24665
24666 2007-06-11  Bruno Haible  <bruno@clisp.org>
24667
24668         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
24669         replacement string.
24670         Reported by Eric Blake.
24671
24672 2007-06-10  Bruno Haible  <bruno@clisp.org>
24673
24674         Prepare vasnprintf code for use with Unicode strings.
24675         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
24676         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
24677         TYPE_U32_STRING.
24678         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
24679         a_u32_string variants.
24680         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
24681         * lib/printf-args.c: Don't include config.h and the specification
24682         header if PRINTF_FETCHARGS is already defined.
24683         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
24684         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
24685         TYPE_U16_STRING, TYPE_U32_STRING.
24686         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
24687         u16_directive, u16_directives, u32_directive, u32_directives): New
24688         types.
24689         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
24690         New declarations.
24691         * lib/printf-parse.c: Don't include config.h and the specification
24692         header if PRINTF_PARSE is already defined. Eliminate the set of
24693         parameters for WIDE_CHAR_VERSION; the user of this file must provide
24694         them now. Include c-ctype.h.
24695         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
24696         directive and CHAR_T_ONLY_ASCII.
24697         * lib/vasnprintf.c: Don't include config.h and the specification header
24698         if VASNPRINTF is already defined.
24699         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
24700         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
24701         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
24702         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
24703         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
24704         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
24705         code accordingly.
24706         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
24707         pad_ourselves also in this case, with the 'c' and 's' directives, and
24708         with a different notion of "width".
24709         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
24710
24711 2007-06-10  Bruno Haible  <bruno@clisp.org>
24712
24713         * modules/unistr/u32-mbsnlen: New file.
24714         * lib/unistr/u32-mbsnlen.c: New file.
24715
24716         * modules/unistr/u16-mbsnlen: New file.
24717         * lib/unistr/u16-mbsnlen.c: New file.
24718
24719         * modules/unistr/u8-mbsnlen: New file.
24720         * lib/unistr/u8-mbsnlen.c: New file.
24721
24722         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
24723         declarations.
24724
24725 2007-06-10  Bruno Haible  <bruno@clisp.org>
24726
24727         * lib/string_.h (mbsnlen): New declaration.
24728         * lib/mbsnlen.c: New file.
24729         * m4/mbsnlen.m4: New file.
24730         * modules/mbsnlen: New file.
24731         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
24732         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
24733         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
24734
24735 2007-06-10  Bruno Haible  <bruno@clisp.org>
24736
24737         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
24738
24739 2007-06-10  Bruno Haible  <bruno@clisp.org>
24740
24741         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
24742         * lib/mbuiter.h: Likewise.
24743
24744 2007-06-10  Bruno Haible  <bruno@clisp.org>
24745
24746         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
24747         declaration.
24748
24749 2007-06-10  Karl Berry  <karl@gnu.org>
24750
24751         * config/srclist.txt: remove gettext entries, Bruno prefers
24752         to update individually.
24753
24754 2007-06-10  Bruno Haible  <bruno@clisp.org>
24755
24756         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
24757         'maxlen'. Ensure only length + width bytes are allocated, not
24758         length + 1 + width.
24759
24760 2007-06-09  Bruno Haible  <bruno@clisp.org>
24761
24762         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
24763         (CHAR_T): Remove macro.
24764         (VASNPRINTF): Update.
24765
24766 2007-06-09  Bruno Haible  <bruno@clisp.org>
24767
24768         * MODULES.html.sh (Unicode string functions): Add the new modules.
24769
24770         * modules/uniconv/u32-conv-to-enc: New file.
24771         * lib/uniconv/u32-conv-to-enc.c: New file.
24772         * modules/uniconv/u32-conv-to-enc-tests: New file.
24773         * tests/uniconv/test-u32-conv-to-enc.c: New file.
24774
24775         * modules/uniconv/u16-conv-to-enc: New file.
24776         * lib/uniconv/u16-conv-to-enc.c: New file.
24777         * lib/uniconv/u-conv-to-enc.h: New file.
24778         * modules/uniconv/u16-conv-to-enc-tests: New file.
24779         * tests/uniconv/test-u16-conv-to-enc.c: New file.
24780
24781         * modules/uniconv/u8-conv-to-enc: New file.
24782         * lib/uniconv/u8-conv-to-enc.c: New file.
24783         * modules/uniconv/u8-conv-to-enc-tests: New file.
24784         * tests/uniconv/test-u8-conv-to-enc.c: New file.
24785
24786         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
24787         u32_conv_to_encoding): New declarations.
24788
24789 2007-06-09  Bruno Haible  <bruno@clisp.org>
24790
24791         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
24792
24793 2007-06-09  Bruno Haible  <bruno@clisp.org>
24794
24795         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
24796         * modules/malloca: Renamed from modules/allocsa, updated.
24797         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
24798         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
24799         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
24800         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
24801         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
24802         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
24803         * modules/xmalloca: Renamed from modules/xallocsa, updated.
24804         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
24805         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
24806         * modules/c-strcasestr (Depends-on): Update.
24807         * lib/c-strcasestr.c: Update.
24808         * modules/c-strstr (Depends-on): Update.
24809         * lib/c-strstr.c: Update.
24810         * modules/canonicalize-lgpl (Depends-on): Update.
24811         * lib/canonicalize-lgpl.c: Update.
24812         * modules/clean-temp (Depends-on): Update.
24813         * lib/clean-temp.c: Update.
24814         * modules/csharpcomp (Depends-on): Update.
24815         * lib/csharpcomp.c: Update.
24816         * modules/csharpexec (Depends-on): Update.
24817         * lib/csharpexec.c: Update.
24818         * modules/javacomp (Depends-on): Update.
24819         * lib/javacomp.c: Update.
24820         * modules/javaexec (Depends-on): Update.
24821         * lib/javaexec.c: Update.
24822         * modules/mbscasestr (Depends-on): Update.
24823         * lib/mbscasestr.c: Update.
24824         * modules/mbsstr (Depends-on): Update.
24825         * lib/mbsstr.c: Update.
24826         * modules/setenv (Depends-on): Update.
24827         * lib/setenv.c: Update.
24828         * modules/strcasestr (Depends-on): Update.
24829         * lib/strcasestr.c: Update.
24830         * modules/striconveha (Depends-on): Update.
24831         * lib/striconveha.c: Update.
24832         * modules/relocatable-prog-wrapper (Files): Update.
24833         * lib/relocwrapper.c: Update.
24834         * build-aux/install-reloc: Update.
24835         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
24836
24837 2007-06-08  Bruno Haible  <bruno@clisp.org>
24838
24839         Port to uClibc.
24840         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
24841         * lib/fpurge.c (fpurge): Likewise.
24842         * lib/freading.c (freading): Likewise.
24843         * lib/fseeko.c (rpl_fseeko): Likewise.
24844         * lib/fseterr.c (fseterr): Likewise.
24845         * lib/fwriting.c (fwriting): Likewise.
24846         * tests/test-fflush.c (main): Avoid a failure on uClibc.
24847
24848 2007-06-08  Bruno Haible  <bruno@clisp.org>
24849
24850         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
24851         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
24852         * modules/gettext (Files): Add m4/intlmacosx.m4.
24853
24854 2007-06-07  Bruno Haible  <bruno@clisp.org>
24855
24856         * modules/localename-tests: New file.
24857         * tests/test-localename.c: New file.
24858
24859         New module 'localename'.
24860         * lib/localename.h: New file.
24861         * lib/localename.c: New file, from GNU gettext.
24862         * m4/localename.m4: New file.
24863         * modules/localename: New file.
24864
24865 2007-06-07  Bruno Haible  <bruno@clisp.org>
24866
24867         Work around the lack of <wchar.h> on some builds of uClibc.
24868         * doc/headers/wchar.texi: Update.
24869         * lib/wchar_.h: Include <wchar.h> only if it exists.
24870         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
24871         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
24872         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
24873         doesn't exist.
24874         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
24875         * modules/mbfile (Depends-on): Add wchar.
24876         * modules/mbiter (Depends-on): Likewise.
24877         * modules/mbuiter (Depends-on): Likewise.
24878         Reported by Simon Josefsson.
24879
24880 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
24881
24882         Work around problem reported by Steven M. Schweda in
24883         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
24884         Tru64 5.1B with the Compaq compiler environment installed declares
24885         an 'isblank' function but does not define it in the C library.
24886         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
24887         * lib/regex_internal.h (isblank): Likewise.
24888         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
24889         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
24890
24891 2007-06-05  Bruno Haible  <bruno@clisp.org>
24892
24893         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
24894         ia64.
24895         * modules/printf-safe: New file.
24896         * modules/fprintf-posix (Depends-on): Add printf-safe.
24897         * modules/printf-posix (Depends-on): Likewise.
24898         * modules/snprintf-posix (Depends-on): Likewise.
24899         * modules/sprintf-posix (Depends-on): Likewise.
24900         * modules/vasnprintf-posix (Depends-on): Likewise.
24901         * modules/vasprintf-posix (Depends-on): Likewise.
24902         * modules/vfprintf-posix (Depends-on): Likewise.
24903         * modules/vprintf-posix (Depends-on): Likewise.
24904         * modules/vsnprintf-posix (Depends-on): Likewise.
24905         * modules/vsprintf-posix (Depends-on): Likewise.
24906         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
24907         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
24908         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
24909         "no" on i386, x86_64, ia64.
24910         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
24911         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
24912         on i386, x86_64, ia64.
24913         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
24914         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
24915         on i386, x86_64, ia64.
24916         * tests/test-vasnprintf-posix.c: Include float.h.
24917         (LDBL80_WORDS): New macro.
24918         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
24919         on i386, x86_64, ia64.
24920         * tests/test-vasprintf-posix.c: Include float.h.
24921         (LDBL80_WORDS): New macro.
24922         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
24923         on i386, x86_64, ia64.
24924         * tests/test-snprintf-posix.c: Include float.h.
24925         * tests/test-sprintf-posix.c: Likewise.
24926         * tests/test-vsnprintf-posix.c: Likewise.
24927         * tests/test-vsprintf-posix.c: Likewise.
24928
24929 2007-06-05  Bruno Haible  <bruno@clisp.org>
24930
24931         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
24932         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
24933         non-IEEE numbers on i386, x86_64, ia64.
24934         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
24935         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
24936         * tests/test-isnanl.h: Include float.h.
24937         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
24938
24939 2007-06-05  Bruno Haible  <bruno@clisp.org>
24940
24941         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
24942         also the %a / %A. Handle the %a / %A code before this extra handling.
24943
24944 2007-06-05  Bruno Haible  <bruno@clisp.org>
24945
24946         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
24947         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
24948
24949 2007-06-05  Bruno Haible  <bruno@clisp.org>
24950
24951         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
24952         typo in variable name.
24953
24954 2007-06-05  Eric Blake  <ebb9@byu.net>
24955
24956         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
24957         Reported by Simon Josefsson.
24958
24959 2007-06-04  Bruno Haible  <bruno@clisp.org>
24960
24961         Avoid test failures on some PowerPC platforms.
24962         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
24963         Define differently for PowerPC.
24964         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
24965         Reported by Gary V. Vaughan <gary@gnu.org>.
24966
24967 2007-06-02  Bruno Haible  <bruno@clisp.org>
24968
24969         Fix test-stdint failure on FreeBSD/ia64.
24970         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
24971         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
24972         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
24973         * doc/headers/stdint.texi: Update.
24974
24975 2007-06-01  Bruno Haible  <bruno@clisp.org>
24976
24977         * tests/test-binary-io.c (main): Pass a third argument to open().
24978         Reported by Gary V. Vaughan <gary@gnu.org>.
24979
24980 2007-06-01  Bruno Haible  <bruno@clisp.org>
24981
24982         * doc/functions/frexpl.texi: Update for mingw.
24983
24984 2007-06-01  Bruno Haible  <bruno@clisp.org>
24985
24986         * tests/test-lseek.c (main): Disable test of errno for invalid third
24987         argument.
24988         * doc/functions/lseek.texi: Update.
24989         Reported by Gary V. Vaughan <gary@gnu.org>.
24990
24991 2007-05-28  Bruno Haible  <bruno@clisp.org>
24992
24993         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
24994
24995 2007-05-31  Eric Blake  <ebb9@byu.net>
24996
24997         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
24998         cross compiling.
24999
25000 2007-05-30  Eric Blake  <ebb9@byu.net>
25001         and Bruno Haible  <bruno@clisp.org>
25002
25003         Work around mingw test failures exposed by m4-1.4.9b.
25004         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
25005         * tests/test-unistd.c: Disable uid_t and git_t tests for the
25006         moment.
25007
25008 2007-05-30  Bruno Haible  <bruno@clisp.org>
25009
25010         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
25011         assuming that they are closed. Needed on HP-UX 11.
25012
25013 2007-05-29  Bruno Haible  <bruno@clisp.org>
25014
25015         Fix a problem with #include_next.
25016         * lib/dirent_.h: Split the double-inclusion guard.
25017         * lib/fcntl_.h: Likewise.
25018         * lib/float_.h: Likewise.
25019         * lib/iconv_.h: Likewise.
25020         * lib/inttypes_.h: Likewise.
25021         * lib/locale_.h: Likewise.
25022         * lib/math_.h: Likewise.
25023         * lib/netinet_in_.h: Likewise.
25024         * lib/search_.h: Likewise.
25025         * lib/signal_.h: Likewise.
25026         * lib/stdint_.h: Likewise.
25027         * lib/stdio_.h: Likewise.
25028         * lib/stdlib_.h: Likewise.
25029         * lib/string_.h: Likewise.
25030         * lib/sys_select_.h: Likewise.
25031         * lib/sys_socket_.h: Likewise.
25032         * lib/sys_stat_.h: Likewise.
25033         * lib/sys_time_.h: Likewise.
25034         * lib/sysexits_.h: Likewise.
25035         * lib/time_.h: Likewise.
25036         * lib/unistd_.h: Likewise.
25037         * lib/wchar_.h: Likewise.
25038         * lib/wctype_.h: Likewise.
25039
25040 2007-05-29  Bruno Haible  <bruno@clisp.org>
25041
25042         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
25043         for the moment.
25044
25045 2007-05-29  Bruno Haible  <bruno@clisp.org>
25046
25047         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
25048         invocation.
25049         Reported by Eric Blake.
25050
25051 2007-05-29  Bruno Haible  <bruno@clisp.org>
25052
25053         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
25054         compiling case.
25055
25056 2007-05-29  Eric Blake  <ebb9@byu.net>
25057             Bruno Haible  <bruno@clisp.org>
25058
25059         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
25060         cross compiles.
25061
25062 2007-05-28  Eric Blake  <ebb9@byu.net>
25063
25064         * modules/closein-tests (test_closein_LDADD): Support test on
25065         cygwin with libtool.
25066
25067 2007-05-28  Bruno Haible  <bruno@clisp.org>
25068
25069         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
25070         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
25071         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
25072         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
25073         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
25074         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
25075         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
25076         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
25077         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
25078
25079 2007-05-28  Eric Blake  <ebb9@byu.net>
25080
25081         Unconditionally include <config.h> in unit tests.
25082         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
25083         * tests/test-allocsa.c, tests/test-arcfour.c,
25084         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
25085         tests/test-array_list.c, tests/test-array_oset.c,
25086         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
25087         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
25088         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
25089         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
25090         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
25091         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
25092         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
25093         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
25094         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
25095         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
25096         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
25097         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
25098         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
25099         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
25100         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
25101         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
25102         test-md5.c, test-memmem.c, test-printf-posix.c,
25103         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
25104         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
25105         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
25106         test-strcasestr.c, test-striconv.c, test-striconveh.c,
25107         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
25108         test-vasnprintf-posix2.c, test-vasnprintf.c,
25109         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
25110         test-vfprintf-posix.c, test-vprintf-posix.c,
25111         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
25112         test-xvasprintf.c: Likewise.
25113
25114 2007-05-28  Bruno Haible  <bruno@clisp.org>
25115
25116         * gnulib-tool (func_import): Remember the --with-tests command-line
25117         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
25118         Reported by Eric Blake.
25119
25120 2007-05-28  Bruno Haible  <bruno@clisp.org>
25121
25122         * modules/ftell-tests: New file.
25123         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
25124         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
25125
25126         * lib/ftell.c: New file.
25127         * modules/ftell: New file.
25128         * m4/ftell.m4: New file.
25129         * doc/functions/ftell.texi: Update.
25130         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
25131         REPLACE_FTELL.
25132         * lib/stdio_.h (rpl_ftell): New declaration.
25133         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
25134         REPLACE_FTELL.
25135
25136 2007-05-28  Eric Blake  <ebb9@byu.net>
25137
25138         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
25139
25140 2007-05-28  Bruno Haible  <bruno@clisp.org>
25141
25142         * modules/fseek-tests: New file.
25143         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
25144         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
25145
25146         * lib/fseek.c: New file.
25147         * modules/fseek: New file.
25148         * m4/fseek.m4: New file.
25149         * doc/functions/fseek.texi: Update.
25150         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
25151         REPLACE_FSEEK.
25152         * lib/stdio_.h (rpl_fseek): New declaration.
25153         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
25154         REPLACE_FSEEK.
25155
25156 2007-05-28  Bruno Haible  <bruno@clisp.org>
25157
25158         * lib/stdio_.h (fflush): More comments.
25159
25160 2007-05-28  Bruno Haible  <bruno@clisp.org>
25161
25162         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
25163         runtime test.
25164
25165 2007-05-28  Eric Blake  <ebb9@byu.net>
25166
25167         Improve lseek module.
25168         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
25169         * lib/unistd_.h (lseek): Scale back link warning message.
25170         * tests/test-lseek.c: Beef up test.
25171         * tests/test-lseek.sh: Exercise more facets of lseek.
25172         Reported by Bruno Haible.
25173
25174 2007-05-28  Bruno Haible  <bruno@clisp.org>
25175
25176         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
25177         to define.
25178
25179 2007-05-27  Bruno Haible  <bruno@clisp.org>
25180
25181         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
25182
25183 2007-05-27  Bruno Haible  <bruno@clisp.org>
25184
25185         * modules/openmp: New file.
25186         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
25187         Noah Misch.
25188
25189 2007-05-26  Bruno Haible  <bruno@clisp.org>
25190
25191         * modules/chdir-long (Depends-on): Add fchdir.
25192         * modules/chdir-safer (Depends-on): Likewise.
25193         * modules/fts (Depends-on): Likewise.
25194         * modules/fts-lgpl (Depends-on): Likewise.
25195         * modules/openat (Depends-on): Likewise.
25196         * modules/savewd (Depends-on): Likewise.
25197
25198 2007-05-24  Eric Blake  <ebb9@byu.net>
25199
25200         Fix lseek on mingw.
25201         * modules/lseek: New module.
25202         * m4/lseek.m4: New file.
25203         * lib/lseek.c: New file.
25204         * modules/lseek-tests: New file.
25205         * tests/test-lseek.c: New file.
25206         * tests/test-lseek.sh: New file.
25207         * MODULES.html.sh: Document lseek module.
25208         * modules/fflush (Depends-on): Add lseek, fseeko.
25209         * modules/fseeko (Depends-on): Likewise.
25210         * modules/ftello (Depends-on): Likewise.
25211         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
25212         broken.
25213         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
25214         broken.
25215         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
25216         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
25217         * lib/ftello.c (rpl_ftello): Likewise.
25218         * tests/test-fseeko.c (main): Test this.
25219         * tests/test-fseeko.sh: Likewise.
25220         * tests/test-ftello.c (main): Likewise.
25221         * tests/test-ftello.sh: Likewise.
25222         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
25223         implies replacing fseek.
25224         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
25225         HAVE_FTELLO.
25226         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
25227         * modules/unistd (Makefile.am): Likewise.
25228         * lib/unistd_.h (lseek): Declare a replacement.
25229         * doc/functions/lseek.texi (lseek): Document this fix.
25230         * doc/functions/fseek.texi (fseek): Likewise.
25231         * doc/functions/ftell.texi (ftell): Likewise.
25232
25233 2007-05-24  Bruno Haible  <bruno@clisp.org>
25234
25235         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
25236         in the printed representation of a NaN.
25237         * tests/test-vasprintf-posix.c (test_function): Likewise.
25238         * tests/test-snprintf-posix.h (test_function): Likewise.
25239         * tests/test-sprintf-posix.h (test_function): Likewise.
25240         Reported by Eric Blake.
25241
25242 2007-05-23  Eric Blake  <ebb9@byu.net>
25243
25244         Fix fseeko/ftello on cygwin 1.5.24.
25245         * doc/functions/fseeko.texi (fseeko): Document the fix.
25246         * doc/functions/ftello.texi (ftello): Document the fix.
25247         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
25248         * doc/functions/stdout.text (stdout): New file.
25249         * doc/functions/stderr.text (stderr): New file.
25250         * doc/gnulib.texi (Function Substitutes): Use new files.
25251         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
25252         prior to 1.7.0.
25253         * tests/test-ftello.c (main): Likewise for ftello.
25254         * tests/test-fseeko.sh: New file.
25255         * tests/test-ftello.sh: New file.
25256         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
25257         with seekable stdin.
25258         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
25259         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
25260         (gl_REPLACE_FSEEKO): New macro.
25261         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
25262         * modules/fseeko (Files): Distribute fseeko.c.
25263         * modules/ftello (Files): Distribute ftello.c.
25264         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
25265         mode.
25266         * lib/ftello.c (rpl_ftello): New file.
25267         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
25268         fseeko, ftello.
25269         (gl_STDIN_LARGE_OFFSET): New macro.
25270         * modules/stdio (Makefile.am): Perform the replacement.
25271         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
25272
25273 2007-05-23  Bruno Haible  <bruno@clisp.org>
25274
25275         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
25276         GNULIB_POSIXCHECK is defined.
25277
25278 2007-05-21  Bruno Haible  <bruno@clisp.org>
25279
25280         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
25281         Check also the output for NaN arguments. When cross-compiling, guess
25282         no on IRIX.
25283         * lib/vasnprintf.c: Update comments.
25284         * tests/test-vasnprintf-posix.c (strisnan): New function.
25285         (test_function): Use it.
25286         * tests/test-vasprintf-posix.c (strisnan): New function.
25287         (test_function): Use it.
25288         * tests/test-snprintf-posix.h (strisnan): New function.
25289         (test_function): Use it.
25290         * tests/test-sprintf-posix.h (strisnan): New function.
25291         (test_function): Use it.
25292         Reported by Eric Blake.
25293
25294 2007-05-20  Bruno Haible  <bruno@clisp.org>
25295
25296         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
25297         numbers that fails on BeOS.
25298         * doc/functions/frexpl.texi: Update.
25299
25300 2007-05-20  Jim Meyering  <jim@meyering.net>
25301
25302         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
25303         forced upon us by glibc-2.6.
25304
25305 2007-05-20  Bruno Haible  <bruno@clisp.org>
25306
25307         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
25308         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
25309         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
25310         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
25311         NEED_PRINTF_INFINITE.
25312         (is_infinitel): New function.
25313         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
25314         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
25315         gl_PREREQ_VASNPRINTF_INFINITE.
25316         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
25317         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
25318         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
25319         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
25320         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
25321         gl_PREREQ_VASNPRINTF_INFINITE.
25322         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
25323         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
25324         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
25325         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
25326         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
25327         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25328         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
25329         * doc/functions/fprintf.texi: Update.
25330         * doc/functions/printf.texi: Update.
25331         * doc/functions/snprintf.texi: Update.
25332         * doc/functions/sprintf.texi: Update.
25333         * doc/functions/vfprintf.texi: Update.
25334         * doc/functions/vprintf.texi: Update.
25335         * doc/functions/vsnprintf.texi: Update.
25336         * doc/functions/vsprintf.texi: Update.
25337
25338 2007-05-20  Bruno Haible  <bruno@clisp.org>
25339
25340         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
25341         was not found in libc.
25342         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
25343
25344 2007-05-20  Bruno Haible  <bruno@clisp.org>
25345
25346         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
25347         printed as "-nan" instead of "nan".
25348         * tests/test-vasprintf-posix.c (test_function): Likewise.
25349         * tests/test-snprintf-posix.h (test_function): Likewise.
25350         * tests/test-sprintf-posix.h (test_function): Likewise.
25351         Needed for HP-UX 11.
25352
25353 2007-05-20  Jim Meyering  <jim@meyering.net>
25354
25355         Fix buggy test for the fchownat-deref bug.
25356         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
25357         symlink required for the run-test.  Without it, this test would
25358         always declare that fchownat doesn't work, and client code would
25359         unnecessarily use the replacement function with fixed libc.
25360         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
25361         Reported by Greg Schafer.
25362
25363 2007-05-19  Bruno Haible  <bruno@clisp.org>
25364
25365         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
25366         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
25367         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
25368         Needed for IRIX 6.5 and Solaris 2.5.1.
25369
25370 2007-05-19  Bruno Haible  <bruno@clisp.org>
25371
25372         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
25373         (test_function): Skip tests involving -0.0 on platforms where
25374         -0.0 = 0.0.
25375         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
25376         (test_function): Skip tests involving -0.0 on platforms where
25377         -0.0 = 0.0.
25378         * tests/test-snprintf-posix.h (have_minus_zero): New function.
25379         (test_function): Skip tests involving -0.0 on platforms where
25380         -0.0 = 0.0.
25381         * tests/test-sprintf-posix.h (have_minus_zero): New function.
25382         (test_function): Skip tests involving -0.0 on platforms where
25383         -0.0 = 0.0.
25384         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
25385         tests.
25386         * tests/test-printf-posix.h (test_function): Likewise.
25387         * tests/test-printf-posix.output: Remove all -0.0 related results.
25388         Needed for IRIX 6.5.
25389
25390 2007-05-19  Bruno Haible  <bruno@clisp.org>
25391
25392         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
25393         printed as "nan0x7fffffff" instead of "nan".
25394         * tests/test-vasprintf-posix.c (test_function): Likewise.
25395         * tests/test-snprintf-posix.h (test_function): Likewise.
25396         * tests/test-sprintf-posix.h (test_function): Likewise.
25397         * tests/test-fprintf-posix.h (NaN): Remove macro.
25398         (test_function): Remove all NaN related tests.
25399         * tests/test-printf-posix.h (NaN): Remove macro.
25400         (test_function): Remove all NaN related tests.
25401         * tests/test-printf-posix.output: Remove all NaN related results.
25402         Needed for IRIX 6.5.
25403
25404 2007-05-19  Bruno Haible  <bruno@clisp.org>
25405
25406         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
25407         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
25408
25409 2007-05-19  Bruno Haible  <bruno@clisp.org>
25410
25411         * lib/float_.h: New file.
25412         * m4/float_h.m4: New file.
25413         * modules/float: New file.
25414         * modules/isnanl (Dependencies): Add float.
25415         * modules/isnanl-nolibm (Dependencies): Likewise.
25416         * modules/mathl (Dependencies): Likewise.
25417         * modules/printf-frexpl (Dependencies): Likewise.
25418         * modules/signbit (Dependencies): Likewise.
25419         * modules/vasnprintf (Dependencies): Likewise.
25420         * doc/headers/float.texi: Update.
25421
25422 2007-05-19  Jim Meyering  <jim@meyering.net>
25423
25424         * lib/utimens.c (gl_futimens): Rename from futimens,
25425         now that glibc-2.6 declares futimens.
25426         * lib/utimens.h: Likewise.
25427
25428 2007-05-19  Bruno Haible  <bruno@clisp.org>
25429
25430         Avoid test failures on mingw.
25431         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
25432         * tests/test-printf-posix.sh: Likewise.
25433         * tests/test-vfprintf-posix.sh: Likewise.
25434         * tests/test-vprintf-posix.sh: Likewise.
25435
25436 2007-05-19  Bruno Haible  <bruno@clisp.org>
25437
25438         Fix *printf result for NaN, Inf, -0.0 on mingw.
25439         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
25440         * lib/vasnprintf.c: Include math.h and isnan.h.
25441         (is_infinite_or_zero): New function.
25442         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
25443         values in the %f, %F, %e, %E, %g, %G directives.
25444         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
25445         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
25446         gl_PRINTF_INFINITE and test its result. Invoke
25447         gl_PREREQ_VASNPRINTF_INFINITE.
25448         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
25449         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
25450         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
25451         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
25452         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
25453         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25454         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
25455         * doc/functions/fprintf.texi: Update.
25456         * doc/functions/printf.texi: Update.
25457         * doc/functions/snprintf.texi: Update.
25458         * doc/functions/sprintf.texi: Update.
25459         * doc/functions/vfprintf.texi: Update.
25460         * doc/functions/vprintf.texi: Update.
25461         * doc/functions/vsnprintf.texi: Update.
25462         * doc/functions/vsprintf.texi: Update.
25463
25464 2007-05-19  Bruno Haible  <bruno@clisp.org>
25465
25466         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
25467         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
25468         Instead of multiplying with 10^k, set extra_zeroes to k.
25469         (scale10_round_long_double): Remove function.
25470
25471 2007-05-18  Bruno Haible  <bruno@clisp.org>
25472
25473         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
25474         introduced on 2007-05-06.
25475
25476 2007-05-18  Bruno Haible  <bruno@clisp.org>
25477
25478         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
25479         %g directives.
25480         * tests/test-vasprintf-posix.c (test_function): Likewise.
25481         * tests/test-snprintf-posix.h (test_function): Likewise.
25482         * tests/test-sprintf-posix.h (test_function): Likewise.
25483
25484 2007-05-18  Bruno Haible  <bruno@clisp.org>
25485
25486         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
25487         (strmatch): New function.
25488         (test_function): Test the %f directive on numbers of various exponents.
25489         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
25490         (strmatch): New function.
25491         (test_function): Test the %f directive on numbers of various exponents.
25492         * tests/test-snprintf-posix.h (strmatch): New function.
25493         (test_function): Test the %f directive on numbers of various exponents.
25494         * tests/test-sprintf-posix.h (strmatch): New function.
25495         (test_function): Test the %f directive on numbers of various exponents.
25496         * tests/test-snprintf-posix.c (SIZEOF): New macro.
25497         * tests/test-sprintf-posix.c (SIZEOF): New macro.
25498         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
25499         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
25500
25501 2007-05-18  Bruno Haible  <bruno@clisp.org>
25502
25503         Add support for 'long double' number output.
25504         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
25505         * lib/vasnprintf.c: Include math.h and float+.h.
25506         (mp_limb_t): New type.
25507         (GMP_LIMB_BITS): New macro.
25508         (mp_twolimb_t): New type.
25509         (GMP_TWOLIMB_BITS): New macro.
25510         (mpn_t): New type.
25511         (multiply, divide, convert_to_decimal, decode_long_double,
25512         scale10_round_long_double, scale10_round_decimal_long_double,
25513         floorlog10l): New functions.
25514         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
25515         for the %f, %F, %e, %E, %g, %G directives.
25516         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
25517         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
25518         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
25519         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
25520         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
25521         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
25522         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
25523         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
25524         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
25525         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25526         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
25527         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
25528         * modules/snprintf-posix (Depends-on): Likewise.
25529         * modules/sprintf-posix (Depends-on): Likewise.
25530         * modules/vasnprintf-posix (Depends-on): Likewise.
25531         * modules/vasprintf-posix (Depends-on): Likewise.
25532         * modules/vfprintf-posix (Depends-on): Likewise.
25533         * modules/vsnprintf-posix (Depends-on): Likewise.
25534         * modules/vsprintf-posix (Depends-on): Likewise.
25535         * modules/vasnprintf (Files): Add lib/float+.h.
25536         * doc/functions/fprintf.texi: Update.
25537         * doc/functions/printf.texi: Update.
25538         * doc/functions/snprintf.texi: Update.
25539         * doc/functions/sprintf.texi: Update.
25540         * doc/functions/vfprintf.texi: Update.
25541         * doc/functions/vprintf.texi: Update.
25542         * doc/functions/vsnprintf.texi: Update.
25543         * doc/functions/vsprintf.texi: Update.
25544
25545 2007-05-18  Bruno Haible  <bruno@clisp.org>
25546
25547         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
25548
25549 2007-05-18  Bruno Haible  <bruno@clisp.org>
25550
25551         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
25552         for printing 64-bit integers. Needed for mingw.
25553
25554 2007-05-18  Bruno Haible  <bruno@clisp.org>
25555
25556         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
25557         gl_FUNC_FREXPL_WORKS.
25558         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
25559
25560 2007-05-18  Bruno Haible  <bruno@clisp.org>
25561
25562         * modules/frexpl-nolibm-tests: New file.
25563
25564         * modules/frexpl-nolibm: New file.
25565         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
25566
25567 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
25568
25569         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
25570         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
25571         GCC 4.2, which otherwise issues a lot of warnings.
25572         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
25573         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
25574         Likewise.
25575         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
25576         * modules/iconv_open (iconv.h): Likewise.
25577         * modules/locale (locale.h): Likewise.
25578         * modules/netinet_in (netinet/in.h): Likewise.
25579         * modules/sys_select (sys_select.h): Likewise.
25580         * modules/sys_socket (sys/socket.h): Likewise.
25581         * modules/sys_stat (sys/stat.h): Likewise.
25582         * modules/sysexits (sysexits.h): Likewise.
25583         * modules/unistd (unistd.h): Likewise.
25584
25585 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25586
25587         * modules/closein-tests (Makefile.am): Distribute
25588         `test-closein.sh'.
25589
25590 2007-05-17  Bruno Haible  <bruno@clisp.org>
25591
25592         * tests/test-printf-posix.output: Renamed from
25593         tests/test-fprintf-posix.out.
25594         * modules/fprintf-posix-tests: Update.
25595         * modules/printf-posix-tests: Update.
25596         * modules/vfprintf-posix-tests: Update.
25597         * modules/vprintf-posix-tests: Update.
25598         * tests/test-fprintf-posix.sh: Update.
25599         * tests/test-printf-posix.sh: Update.
25600         * tests/test-vfprintf-posix.sh: Update.
25601         * tests/test-vprintf-posix.sh: Update.
25602         Reported by Ralf Wildenhues.
25603
25604 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
25605
25606         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
25607         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
25608         GCC 4.2, which otherwise issues a lot of warnings.
25609         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
25610         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
25611         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
25612         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
25613         it should no longer be needed.
25614         * lib/string_.h: Likewise.
25615         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
25616         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
25617         * modules/inttypes (inttypes.h): Likewise.
25618         * modules/math (math.h): Likewise.
25619         * modules/search (search.h): Likewise.
25620         * modules/signal (signal.h): Likewise.
25621         * modules/stdint (stdint.h): Likewise.
25622         * modules/stdio (stdio.h): Likewise.
25623         * modules/stdlib (stdlib.h): Likewise.
25624         * modules/string (string.h): Likewise.
25625         * modules/sys_time (sys/time.h): Likewise.
25626         * modules/time (time.h): Likewise.
25627         * modules/wchar (wchar.h): Likewise.
25628         * modules/wctype (wtype.h): Likewise.
25629
25630 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
25631
25632         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
25633
25634 2007-05-13  Bruno Haible  <bruno@clisp.org>
25635
25636         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
25637         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
25638         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
25639         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
25640         (gl_PREREQ_STRTOK_R): Don't require it here.
25641
25642 2007-05-13  Bruno Haible  <bruno@clisp.org>
25643
25644         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
25645         when used in C++ mode.
25646
25647 2007-05-12  Bruno Haible  <bruno@clisp.org>
25648
25649         * lib/linebuffer.h: Tweak doc.
25650         * lib/linebuffer.c: Likewise.
25651
25652 2007-05-12  James Youngman  <jay@gnu.org>
25653
25654         * lib/linebuffer.c (readlinebuffer_delim): New function,
25655         like readlinebuffer, but use a caller-specified delimiter.
25656         (readlinebuffer): Just call readlinebuffer_delim with '\n'
25657         as the delimiter.
25658         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
25659
25660 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
25661
25662         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
25663         * modules/openat (Files): Remove openat-die.c.
25664         (Depends-on): Add openat-die.
25665         * modules/openat-die: New module.
25666
25667 2007-05-06  Bruno Haible  <bruno@clisp.org>
25668
25669         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
25670         Update with info about Cygwin.
25671         * doc/functions/fprintf.texi: Update.
25672         * doc/functions/printf.texi: Update.
25673         * doc/functions/snprintf.texi: Update.
25674         * doc/functions/sprintf.texi: Update.
25675         * doc/functions/vfprintf.texi: Update.
25676         * doc/functions/vprintf.texi: Update.
25677         * doc/functions/vsnprintf.texi: Update.
25678         * doc/functions/vsprintf.texi: Update.
25679         Reported by Eric Blake.
25680
25681 2007-05-06  Bruno Haible  <bruno@clisp.org>
25682
25683         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
25684         padding ourselves for the floating-point directives.
25685         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
25686         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
25687         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
25688         gl_PRINTF_FLAG_ZERO and test its result. Invoke
25689         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
25690         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
25691         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
25692         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
25693         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
25694         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
25695         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25696         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
25697         * tests/test-snprintf-posix.h (test_function): Also check the width
25698         and some flags in the %f directive.
25699         * tests/test-sprintf-posix.h (test_function): Likewise.
25700         * tests/test-vasnprintf-posix.c (test_function): Likewise.
25701         * tests/test-vasprintf-posix.c (test_function): Likewise.
25702         * doc/functions/fprintf.texi: Update.
25703         * doc/functions/printf.texi: Update.
25704         * doc/functions/snprintf.texi: Update.
25705         * doc/functions/sprintf.texi: Update.
25706         * doc/functions/vfprintf.texi: Update.
25707         * doc/functions/vprintf.texi: Update.
25708         * doc/functions/vsnprintf.texi: Update.
25709         * doc/functions/vsprintf.texi: Update.
25710
25711 2007-05-06  Bruno Haible  <bruno@clisp.org>
25712
25713         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
25714         pass the ' flag character to sprintf or snprintf.
25715         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
25716         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
25717         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
25718         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
25719         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
25720         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
25721         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
25722         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
25723         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
25724         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
25725         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25726         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
25727         * tests/test-snprintf-posix.h (test_function): Also check the grouping
25728         flag.
25729         * tests/test-sprintf-posix.h (test_function): Likewise.
25730         * tests/test-vasnprintf-posix.c (test_function): Likewise.
25731         * tests/test-vasprintf-posix.c (test_function): Likewise.
25732         * doc/functions/fprintf.texi: Update.
25733         * doc/functions/printf.texi: Update.
25734         * doc/functions/snprintf.texi: Update.
25735         * doc/functions/sprintf.texi: Update.
25736         * doc/functions/vfprintf.texi: Update.
25737         * doc/functions/vprintf.texi: Update.
25738         * doc/functions/vsnprintf.texi: Update.
25739         * doc/functions/vsprintf.texi: Update.
25740
25741 2007-05-01  Bruno Haible  <bruno@clisp.org>
25742
25743         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
25744
25745 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
25746
25747         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
25748         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
25749
25750 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
25751
25752         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
25753         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
25754         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
25755
25756 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
25757
25758         * lib/argp-help.c (struct hol_entry): New member `ord'.
25759         (HOL_ENTRY_PTRCMP): Use ord for comparison
25760         (hol_sort): Initialize ord.
25761
25762 2007-05-01  Bruno Haible  <bruno@clisp.org>
25763
25764         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
25765         Reported by Eric Blake.
25766         * doc/gnulib.texi (Function Substitutes): Update.
25767
25768 2007-05-01  Bruno Haible  <bruno@clisp.org>
25769
25770         * doc/functions.texi: Remove file, now redundant through
25771         doc/functions/*.texi.
25772
25773 2007-05-01  Bruno Haible  <bruno@clisp.org>
25774
25775         * modules/argp (Depends-on): Add sleep.
25776
25777 2007-05-01  Bruno Haible  <bruno@clisp.org>
25778
25779         * modules/sleep-tests: New file.
25780         * tests/test-sleep.c: New file.
25781
25782         * modules/sleep: New file.
25783         * lib/sleep.c: New file.
25784         * m4/sleep.m4: New file.
25785         * lib/unistd_.h (sleep): New declaration.
25786         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
25787         HAVE_SLEEP.
25788         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
25789         * doc/functions/sleep.texi: Document the sleep module.
25790
25791 2007-05-01  Bruno Haible  <bruno@clisp.org>
25792
25793         * lib/sigprocmask.h: Remove file.
25794         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
25795         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
25796         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
25797         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
25798         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
25799         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
25800         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
25801         HAVE_SIGSET_T as a shell variable.
25802         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
25803         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
25804         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
25805         (Depends-on): Add signal. Remove verify.
25806         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
25807         (Include): Mention <signal.h> instead of sigprocmask.h.
25808         * NEWS: Mention the change.
25809         * lib/fatal-signal.c: Don't include sigprocmask.h.
25810
25811 2007-05-01  Bruno Haible  <bruno@clisp.org>
25812
25813         * modules/signal: New file.
25814         * lib/signal_.h: New file.
25815         * m4/signal_h.m4: New file.
25816
25817 2007-05-01  Bruno Haible  <bruno@clisp.org>
25818
25819         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
25820         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
25821         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
25822         HAVE_WCTYPE_CTMP_BUG into wctype.h.
25823
25824 2007-05-01  Bruno Haible  <bruno@clisp.org>
25825
25826         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
25827         configure time.
25828         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
25829         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
25830         * modules/sys_stat (Makefile.am): Substitute their values into
25831         sys/stat.h.
25832
25833 2007-05-01  Bruno Haible  <bruno@clisp.org>
25834
25835         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
25836         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
25837         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
25838
25839 2007-05-01  Bruno Haible  <bruno@clisp.org>
25840
25841         * doc/header/assert.texi: Undo last change: don't mention the gnulib
25842         'assert' module here.
25843
25844 2007-05-01  Bruno Haible  <bruno@clisp.org>
25845
25846         * doc/functions/*.texi: New files.
25847         * doc/functions/google-ranking.txt: New file.
25848         * doc/gnulib.texi (Function Substitutes): New chapter.
25849         (ctime, inet_ntoa): Remove sections.
25850         * doc/ctime.texi: Remove file.
25851         * doc/inet_ntoa.texi: Remove file.
25852         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
25853         dependencies.
25854         (%.info): New rule, specifying a --reference-limit.
25855
25856 2007-05-01  Bruno Haible  <bruno@clisp.org>
25857
25858         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
25859
25860 2007-05-01  Bruno Haible  <bruno@clisp.org>
25861
25862         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
25863         the portability of 'mkdir' to mingw systems.
25864
25865 2007-05-01  Bruno Haible  <bruno@clisp.org>
25866
25867         * doc/headers/google-ranking.txt: New file.
25868
25869 2007-04-30  Eric Blake  <ebb9@byu.net>
25870
25871         Prefer fseeko to fseek.
25872         * modules/getpass (Depends-on): Add fseeko.
25873         * lib/getpass.c (getpass): Use fseeko, not fseek.
25874
25875 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
25876
25877         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
25878         assumes the sorting is stable, while most qsort implementations
25879         are not.  Use argument addresses to ensure they never compare as
25880         equal.
25881
25882         * tests/test-argp-2.sh (usage-indent test): Fix output
25883         (func_compare): Restore diff options
25884         * tests/test-argp.c: Restore #include "progname.h"
25885
25886 2007-04-29  Bruno Haible  <bruno@clisp.org>
25887
25888         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
25889         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
25890         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
25891         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
25892         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
25893         (configure.ac): Define CHECK_SNPRINTF_POSIX.
25894         (TESTS, check_PROGRAMS): Add test-snprintf.
25895         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
25896         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
25897         (TESTS, check_PROGRAMS): Add test-vsnprintf.
25898         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
25899         assertions that fail on HP-UX, OSF/1, or IRIX.
25900         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
25901
25902 2007-04-29  Bruno Haible  <bruno@clisp.org>
25903
25904         * MODULES.html.sh (posix_functions): Remove 'contents'.
25905
25906 2007-04-29  Karl Berry  <karl@gnu.org>
25907
25908         * config/srclist.txt (gendocs_template_min): new entry.
25909
25910 2007-04-29  Bruno Haible  <bruno@clisp.org>
25911
25912         Work around fpurge bug on BSD systems.
25913         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
25914         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
25915         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
25916         fpurge to rpl_fpurge if the system already has this function.
25917         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
25918         the case where the system already has this function. Correct invariants
25919         on BSD systems.
25920         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
25921         BSD systems.
25922
25923 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
25924
25925         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
25926         proposed by Sven Verdoolaege.
25927
25928         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
25929         options.
25930         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
25931         (usage and help tests): Update
25932
25933 2007-04-29  Bruno Haible  <bruno@clisp.org>
25934
25935         * tests/test-fflush.c (main): Use a file of size 17, not 10.
25936         Print more information in case of failure. Disable a test on BeOS.
25937
25938 2007-04-29  Bruno Haible  <bruno@clisp.org>
25939
25940         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
25941         This helps debugging on systems on which no gdb is available.
25942
25943 2007-04-29  Bruno Haible  <bruno@clisp.org>
25944
25945         * lib/freading.h: Improve comments.
25946         * lib/fwriting.h: Likewise.
25947         * tests/test-freading.c (main): Don't check freading immediately after
25948         repositioning. Needed for glibc.
25949
25950 2007-04-29  Bruno Haible  <bruno@clisp.org>
25951
25952         * lib/freading.c (freading): Trivial simplification.
25953
25954 2007-04-28  Bruno Haible  <bruno@clisp.org>
25955
25956         * tests/test-fwriting.c (main): Also test the interaction between
25957         fflush and fwriting.
25958         * modules/fwriting-tests (Depends-on): Add fflush.
25959
25960         * tests/test-freading.c (main): Also test the interaction between
25961         fflush and freading.
25962         * modules/freading-tests (Depends-on): Add fflush.
25963
25964 2007-04-28  Bruno Haible  <bruno@clisp.org>
25965
25966         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
25967         fseeko and ftello.
25968         Suggested by Eric Blake.
25969
25970 2007-04-28  Jim Meyering  <jim@meyering.net>
25971
25972         Avoid false-negative in gl_STDINT_H's C99 conformance test.
25973         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
25974         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
25975
25976 2007-04-27  Eric Blake  <ebb9@byu.net>
25977
25978         * doc/headers/assert.texi (assert.h): Document assert module use.
25979
25980 2007-04-27  Bruno Haible  <bruno@clisp.org>
25981
25982         * doc/headers/*.texi: New files.
25983         * doc/gnulib.texi (Header File Substitutes): New chapter.
25984         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
25985         dependencies.
25986         (standards.info ,standards.html, standards.dvi): Update dependencies.
25987         (mostlyclean, clean): New targets.
25988
25989 2007-04-27  Bruno Haible  <bruno@clisp.org>
25990
25991         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
25992         * modules/sysexits (Files, Makefile.am): Update.
25993
25994         * lib/sys_socket_.h: Renamed from lib/socket_.h.
25995         * modules/sys_socket (Files, Makefile.am): Update.
25996
25997         * lib/sys_stat_.h: Renamed from lib/stat_.h.
25998         * modules/sys_stat (Files, Makefile.am): Update.
25999
26000 2007-04-27  Eric Blake  <ebb9@byu.net>
26001
26002         * lib/freading.h: Improve comments.
26003         * lib/fwriting.h: Likewise.
26004         * lib/fflush.c: Likewise.
26005
26006         Fix closein for mingw.
26007         * modules/closein-tests: Add tests for closein.
26008         * tests/test-closein.c: New file.
26009         * tests/test-closein.sh: Likewise.
26010         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
26011         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
26012
26013 2007-04-27  Bruno Haible  <bruno@clisp.org>
26014
26015         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
26016         version is < 6.
26017         * lib/math_.h [__DECC]: Likewise.
26018         * lib/stdio_.h [__DECC]: Likewise.
26019         * lib/stdlib_.h [__DECC]: Likewise.
26020         * lib/string_.h [__DECC]: Likewise.
26021         * lib/time_.h [__DECC]: Likewise.
26022         * lib/wchar_.h [__DECC]: Likewise.
26023         * lib/wctype_.h [__DECC]: Likewise.
26024
26025 2007-04-27  Bruno Haible  <bruno@clisp.org>
26026
26027         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
26028
26029 2007-04-27  Bruno Haible  <bruno@clisp.org>
26030
26031         * lib/fflush.c: Add comments.
26032         * modules/fpurge-tests (Depends-on): Add fflush.
26033         * modules/freadable-tests (Depends-on): Likewise.
26034         * modules/fwritable-tests (Depends-on): Likewise.
26035
26036 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
26037
26038         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
26039         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
26040         Report by Bruno Haible <bruno@clisp.org>.
26041
26042 2007-04-26  Eric Blake  <ebb9@byu.net>
26043
26044         Fix fflush on mingw.
26045         * modules/fflush (Depends-on): Add freading.
26046         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
26047         but unread data.
26048
26049 2007-04-26  Eric Blake  <ebb9@byu.net>
26050         and Bruno Haible  <bruno@clisp.org>
26051
26052         Implement freading and fwriting.
26053         * lib/freading.c: New file.
26054         * lib/freading.h: Likewise.
26055         * m4/freading.m4: Likewise.
26056         * modules/freading: Likewise.
26057         * modules/freading-tests: Likewise.
26058         * tests/test-freading.c: Likewise.
26059         * lib/fwriting.c: New file.
26060         * lib/fwriting.h: Likewise.
26061         * m4/fwriting.m4: Likewise.
26062         * modules/fwriting: Likewise.
26063         * modules/fwriting-tests: Likewise.
26064         * tests/test-fwriting.c: Likewise.
26065         * MODULES.html.sh (File stream based Input/Output): Mention them.
26066
26067 2007-04-26  Bruno Haible  <bruno@clisp.org>
26068
26069         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
26070         'long' when we assume it.
26071         Suggested by Eric Blake.
26072
26073 2007-04-26  Bruno Haible  <bruno@clisp.org>
26074
26075         Ensure fseeko, ftello are declared on glibc systems.
26076         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
26077         * modules/fseeko (configure.ac-early): Likewise.
26078         * modules/ftello (configure.ac-early): Likewise.
26079         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
26080         AC_FUNC_FSEEKO for this.
26081         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
26082         (gl_CHECK_FSEEKO): Remove macro.
26083
26084 2007-04-26  Bruno Haible  <bruno@clisp.org>
26085
26086         * tests/test-fflush.c (main): Also check the ftell result after
26087         fflush and fseek/fseeko.
26088         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
26089         file descriptor position cache in the stream.
26090         * lib/fseeko.c (rpl_fseeko): Likewise.
26091
26092 2007-04-26  Bruno Haible  <bruno@clisp.org>
26093
26094         * modules/fflush-tests (Depends-on): Add fseeko.
26095
26096 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
26097             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26098
26099         * lib/argz_.h: ensure error_t definition is obtained in same
26100         mechanism system argz.h would have.
26101         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
26102         argz facilities are known bad.  Err on the side of caution if
26103         cross-compiling.
26104
26105 2007-04-25  Eric Blake  <ebb9@byu.net>
26106
26107         * lib/fpurge.c (includes): Use stdlib.h for free.
26108         * tests/test-fflush.c (main): Also test fflush-fseeko.
26109
26110 2007-04-25  Bruno Haible  <bruno@clisp.org>
26111
26112         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
26113         * lib/fseeko.c: New file.
26114         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
26115         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
26116         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
26117         gl_FUNC_FSEEKO.
26118         (gl_FUNC_FSEEKO): Invoke it.
26119         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
26120         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
26121         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
26122
26123 2007-04-25  Bruno Haible  <bruno@clisp.org>
26124
26125         * modules/fflush (Depends-on): Add ftello.
26126
26127 2007-04-25  Bruno Haible  <bruno@clisp.org>
26128
26129         * modules/ftello-tests: New file.
26130         * tests/test-ftello.c: New file.
26131
26132         * modules/ftello: New file.
26133         * m4/ftello.m4: New file.
26134         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
26135         HAVE_FTELLO.
26136         * lib/stdio_.h (ftello): New declaration.
26137         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
26138         HAVE_FTELLO.
26139
26140 2007-04-25  Bruno Haible  <bruno@clisp.org>
26141
26142         * modules/fseeko-tests: New file.
26143         * tests/test-fseeko.c: New file.
26144
26145         * modules/fseeko: New file.
26146         * m4/fseeko.m4: New file.
26147         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
26148         HAVE_FSEEKO.
26149         * lib/stdio_.h (fseeko): New declaration.
26150         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
26151         HAVE_FSEEKO.
26152
26153 2007-04-25  Bruno Haible  <bruno@clisp.org>
26154
26155         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
26156
26157 2007-04-25  Bruno Haible  <bruno@clisp.org>
26158
26159         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
26160         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
26161         * tests/test-unistd.c: Likewise.
26162         * tests/test-fcntl.c: Likewise.
26163
26164 2007-04-23  Eric Blake  <ebb9@byu.net>
26165
26166         * lib/fflush.c: Fix missing include.
26167         Reported by Bruno Haible.
26168
26169 2007-04-23  Bruno Haible  <bruno@clisp.org>
26170
26171         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
26172         Reported by Eric Blake.
26173
26174 2007-04-23  Bruno Haible  <bruno@clisp.org>
26175
26176         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
26177
26178 2007-04-23  Bruno Haible  <bruno@clisp.org>
26179
26180         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
26181
26182 2007-04-23  Bruno Haible  <bruno@clisp.org>
26183
26184         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
26185         Needed on HP-UX 11.
26186
26187 2007-04-16  Eric Blake  <ebb9@byu.net>
26188
26189         Make fflush rely on fpurge.
26190         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
26191         open coding all variants.
26192         * modules/fflush (Depends-on): Add fpurge and unistd.
26193         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
26194         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
26195
26196         Fix --with-tests compilation on cygwin.
26197         * modules/argmatch-tests (Makefile.am): List gnulib library first
26198         in LDADD.
26199         * modules/argp-tests (Makefile.am): Likewise.
26200         * modules/array-list-tests (Makefile.am): Likewise.
26201         * modules/array-oset-tests (Makefile.am): Likewise.
26202         * modules/avltree-list-tests (Makefile.am): Likewise.
26203         * modules/avltree-oset-tests (Makefile.am): Likewise.
26204         * modules/avltreehash-list-tests (Makefile.am): Likewise.
26205         * modules/carray-list-tests (Makefile.am): Likewise.
26206         * modules/dirname-tests (Makefile.am): Likewise.
26207         * modules/frexp-tests (Makefile.am): Likewise.
26208         * modules/isnanl-tests (Makefile.am): Likewise.
26209         * modules/linked-list-tests (Makefile.am): Likewise.
26210         * modules/linkedhash-list-tests (Makefile.am): Likewise.
26211         * modules/lock-tests (Makefile.am): Likewise.
26212         * modules/rbtree-list-tests (Makefile.am): Likewise.
26213         * modules/rbtree-oset-tests (Makefile.am): Likewise.
26214         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
26215         * modules/tls-tests (Makefile.am): Likewise.
26216         * modules/tsearch-tests (Makefile.am): Likewise.
26217         * modules/xvasprintf-tests (Makefile.am): Likewise.
26218
26219         Fix fpurge for cygwin.
26220         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
26221         value.
26222         * modules/fpurge-tests (Depends-on): Clean up trash.
26223
26224 2007-04-16  Simon Josefsson  <simon@josefsson.org>
26225
26226         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
26227
26228         * m4/autobuild.m4: Re-indent.
26229
26230 2007-04-13  Bruno Haible  <bruno@clisp.org>
26231
26232         * modules/fpurge-tests: New file.
26233         * tests/test-fpurge.c: New file.
26234
26235         * modules/fpurge: New file.
26236         * lib/fpurge.h: New file.
26237         * lib/fpurge.c: New file.
26238         * m4/fpurge.m4: New file.
26239
26240 2007-04-13  Bruno Haible  <bruno@clisp.org>
26241
26242         * modules/fbufmode-tests: New file.
26243         * tests/test-fbufmode.c: New file.
26244
26245         * modules/fbufmode: New file.
26246         * lib/fbufmode.h: New file.
26247         * lib/fbufmode.c: New file.
26248         * m4/fbufmode.m4: New file.
26249
26250 2007-04-13  Bruno Haible  <bruno@clisp.org>
26251
26252         * modules/fwritable-tests: New file.
26253         * tests/test-fwritable.c: New file.
26254
26255         * modules/fwritable: New file.
26256         * lib/fwritable.h: New file.
26257         * lib/fwritable.c: New file.
26258         * m4/fwritable.m4: New file.
26259
26260 2007-04-13  Bruno Haible  <bruno@clisp.org>
26261
26262         * modules/freadable-tests: New file.
26263         * tests/test-freadable.c: New file.
26264
26265         * modules/freadable: New file.
26266         * lib/freadable.h: New file.
26267         * lib/freadable.c: New file.
26268         * m4/freadable.m4: New file.
26269
26270 2007-04-13  Bruno Haible  <bruno@clisp.org>
26271
26272         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
26273         MOSTLYCLEANFILES.
26274
26275 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
26276
26277         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
26278         gzip bootstrap.conf to avoid dragging in i18n machinery.
26279         (gnulib_tool_option): Use it.
26280
26281 2007-04-13  Bruno Haible  <bruno@clisp.org>
26282
26283         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
26284         %F directives.
26285         * tests/test-vasprintf-posix.c (test_function): Likewise.
26286         * tests/test-snprintf-posix.h (test_function): Likewise.
26287         * tests/test-sprintf-posix.h (test_function): Likewise.
26288         * tests/test-fprintf-posix.h (test_function): Likewise.
26289         * tests/test-printf-posix.h (test_function): Likewise.
26290         * tests/test-fprintf-posix.out: Likewise.
26291
26292 2007-04-13  Bruno Haible  <bruno@clisp.org>
26293
26294         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
26295         * modules/tls-tests (configure.ac): Likewise.
26296         Reported by Arto C. Nirkko <anirkko@insel.ch>.
26297
26298 2007-04-13  Bruno Haible  <bruno@clisp.org>
26299
26300         * lib/tls.c (glthread_tls_get): Fix return type.
26301         Patch by Arto C. Nirkko <anirkko@insel.ch>.
26302
26303 2007-04-12  Eric Blake  <ebb9@byu.net>
26304
26305         * modules/gettime (Depends-on): Remove gettime.
26306         Reported by Dmitry V. Levin.
26307
26308 2007-04-12  Bruno Haible  <bruno@clisp.org>
26309
26310         * modules/fflush (Include): Mention <stdio.h>.
26311         * modules/strtoimax (Include): Mention <inttypes.h>.
26312         * modules/strtoumax (Include): Likewise.
26313
26314 2007-04-12  Eric Blake  <ebb9@byu.net>
26315
26316         * .cvsignore: New file.
26317         * .gitignore: Likewise.
26318
26319 2007-04-12  Bruno Haible  <bruno@clisp.org>
26320
26321         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
26322         not before, since $(LDADD) often contains libgnu.a.
26323         * modules/striconv-tests (test_striconv_LDADD): Likewise.
26324         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
26325         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
26326         Needed on Cygwin.
26327
26328 2007-04-12  Eric Blake  <ebb9@byu.net>
26329
26330         Work around glibc's failure to flush stdin on fclose.
26331         * lib/closein.c (close_stdin): Flush stdin before closing.
26332
26333         Work around glibc's failure to reset seekable stdin on exit.
26334         * modules/closein: New module.
26335         * lib/closein.c: New file.
26336         * lib/closein.h: Likewise.
26337         * m4/closein.m4: Likewise.
26338         * MODULES.html.sh (File stream based Input/Output): Document it.
26339
26340 2007-04-12  Simon Josefsson  <simon@josefsson.org>
26341
26342         * gnulib-tool: Rename generated 'autobuild' script to
26343         'do-autobuild' in --create-megatestdir output.
26344
26345         * doc/gnulib.texi (Build robot for gnulib): Fix.
26346
26347 2007-04-12  Simon Josefsson  <simon@josefsson.org>
26348
26349         * modules/sysexits (Depends-on): Add absolute-header.
26350
26351 2007-04-12  Eric Blake  <ebb9@byu.net>
26352
26353         No need to preserve errno on success.
26354         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
26355         Reported by Bruno Haible.
26356
26357 2007-04-12  Simon Josefsson  <simon@josefsson.org>
26358
26359         * MODULES.html.sh (Support for maintaining and releasing
26360         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
26361
26362 2007-04-12  Simon Josefsson  <simon@josefsson.org>
26363
26364         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
26365
26366 2007-04-12  Simon Josefsson  <simon@josefsson.org>
26367
26368         * modules/autobuild: New module.
26369
26370         * m4/autobuild.m4: New file.
26371
26372 2007-04-11  Bruno Haible  <bruno@clisp.org>
26373
26374         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
26375         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
26376         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
26377         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
26378         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
26379         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
26380         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
26381         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
26382         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
26383         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
26384         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
26385         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
26386         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
26387         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
26388         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
26389         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
26390         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
26391         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
26392         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
26393         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
26394         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
26395         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
26396         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
26397         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
26398         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
26399         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
26400         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
26401         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
26402         Reported by Eric Blake.
26403
26404 2007-04-11  Bruno Haible  <bruno@clisp.org>
26405
26406         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
26407
26408 2007-04-10  Bruno Haible  <bruno@clisp.org>
26409
26410         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
26411         for NaN and Infinity. Needed on FreeBSD 6.1.
26412         * tests/test-vasnprintf-posix.c (test_function): Undo last change
26413         regarding results for "%010a" of Infinity and NaN.
26414         * tests/test-vasprintf-posix.c (test_function): Likewise.
26415         * tests/test-snprintf-posix.h (test_function): Likewise.
26416         * tests/test-sprintf-posix.h (test_function): Likewise.
26417         * tests/test-fprintf-posix.h (test_function): Likewise.
26418         * tests/test-printf-posix.h (test_function): Likewise.
26419         * tests/test-fprintf-posix.out: Likewise.
26420
26421 2007-04-10  Bruno Haible  <bruno@clisp.org>
26422
26423         * modules/locale-tests: New file.
26424         * tests/test-locale.c: New file.
26425
26426         * modules/locale: New file.
26427         * lib/locale_.h: New file.
26428         * m4/locale_h.m4: New file.
26429
26430 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
26431             Bruno Haible  <bruno@clisp.org>
26432
26433         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
26434         be determined, test for availability of the copysignf, copysign,
26435         copysignl functions.
26436         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
26437         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
26438         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
26439
26440 2007-04-09  Eric Blake  <ebb9@byu.net>
26441
26442         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
26443         * modules/stdio (Makefile.am): Support fflush.
26444         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
26445         * modules/fflush: New file.
26446         * lib/fflush.c: Likewise.
26447         * m4/fflush.m4: Likewise.
26448         * modules/fflush-tests: New test.
26449         * tests/test-fflush.c: Likewise.
26450         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
26451
26452 2007-04-06  Bruno Haible  <bruno@clisp.org>
26453
26454         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
26455         (VASNPRINTF): Use signbit for faster determination whether to print a
26456         minus sign.
26457         * modules/vasnprintf (Files): Remove lib/float+.h.
26458         * modules/fprintf-posix (Depends-on): Add signbit.
26459         * modules/snprintf-posix (Depends-on): Likewise.
26460         * modules/sprintf-posix (Depends-on): Likewise.
26461         * modules/vasnprintf-posix (Depends-on): Likewise.
26462         * modules/vasprintf-posix (Depends-on): Likewise.
26463         * modules/vfprintf-posix (Depends-on): Likewise.
26464         * modules/vsnprintf-posix (Depends-on): Likewise.
26465         * modules/vsprintf-posix (Depends-on): Likewise.
26466
26467 2007-04-06  Bruno Haible  <bruno@clisp.org>
26468
26469         * tests/test-frexp.c (main): Test also the sign bit of zero results.
26470         * tests/test-frexpl.c (main): Likewise.
26471         * tests/test-ldexpl.c (main): Likewise.
26472         * modules/frexp-tests (Depends-on): Add signbit.
26473         * modules/frexpl-tests (Depdends-on): Likewise.
26474         * modules/ldexpl-tests (Depdends-on): Likewise.
26475
26476 2007-04-06  Bruno Haible  <bruno@clisp.org>
26477
26478         * modules/signbit-tests: New file.
26479         * tests/test-signbit.c: New file.
26480
26481         * modules/signbit: New file.
26482         * lib/signbitf.c: New file.
26483         * lib/signbitd.c: New file.
26484         * lib/signbitl.c: New file.
26485         * m4/signbit.m4: New file.
26486         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
26487         (signbit): New macro.
26488         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
26489         REPLACE_SIGNBIT.
26490         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
26491         REPLACE_FREXPL into math.h.
26492
26493 2007-04-06  Bruno Haible  <bruno@clisp.org>
26494
26495         * modules/isnanf-nolibm-tests: New file.
26496         * tests/test-isnanf.c: New file.
26497
26498         * modules/isnanf-nolibm: New file.
26499         * lib/isnanf.h: New file.
26500         * lib/isnanf.c: New file.
26501         * lib/isnan.c: Consider the USE_FLOAT macro.
26502         * m4/isnanf.m4: New file.
26503
26504 2007-04-06  Bruno Haible  <bruno@clisp.org>
26505
26506         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
26507         (Link): New section.
26508
26509         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
26510
26511 2007-04-06  Bruno Haible  <bruno@clisp.org>
26512
26513         Assume the 'long double' type.
26514         * m4/longdouble.m4: Remove file.
26515         * config/srclist.txt: Don't mention longdouble.m4.
26516         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
26517         * lib/float+.h: Likewise.
26518         * lib/frexp.c: Likewise.
26519         * lib/printf-args.h: Likewise.
26520         * lib/printf-args.c: Likewise.
26521         * lib/printf-frexp.c: Likewise.
26522         * lib/printf-parse.c: Likewise.
26523         * lib/vasnprintf.c: Likewise.
26524         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
26525         * m4/intl.m4: Likewise.
26526         * m4/isnanl.m4: Likewise.
26527         * m4/printf.m4: Likewise.
26528         * m4/printf-frexpl.m4: Likewise.
26529         * m4/vasnprintf.m4: Likewise.
26530         * modules/allocsa (Files): Remove m4/longdouble.m4.
26531         * modules/gettext (Files): Likewise.
26532         * modules/relocatable-prog-wrapper (Files): Likewise.
26533         * modules/vasnprintf (Files): Likewise.
26534         * modules/isnanl (Files): Likewise.
26535         (Include): Simplify.
26536         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
26537         (Include): Simplify.
26538         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
26539         (Include): Simplify.
26540         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
26541         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
26542         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
26543         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
26544         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
26545         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
26546         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
26547         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
26548         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
26549         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
26550         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
26551         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
26552         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
26553         * tests/test-isnanl.c: Likewise.
26554         * tests/test-snprintf-posix.h: Likewise.
26555         * tests/test-sprintf-posix.h: Likewise.
26556         * tests/test-vasnprintf-posix.c: Likewise.
26557         * tests/test-vasnprintf-posix2.c: Likewise.
26558         * tests/test-vasprintf-posix.c: Likewise.
26559
26560 2007-04-06  Bruno Haible  <bruno@clisp.org>
26561
26562         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
26563         * lib/math_.h [__DECC]: Include the overridden include file through
26564         #include_next, outside the double-inclusion guard.
26565         * lib/stdio_.h [__DECC]: Likewise.
26566         * lib/stdlib_.h [__DECC]: Likewise.
26567         * lib/string_.h [__DECC]: Likewise.
26568         * lib/time_.h [__DECC]: Likewise.
26569         * lib/wchar_.h [__DECC]: Likewise.
26570         * lib/wctype_.h [__DECC]: Likewise.
26571         * lib/inttypes_.h [__DECC]: Likewise.
26572         Reported by Albert Chin <china@thewrittenword.com> in
26573         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
26574
26575 2007-04-04  Eric Blake  <ebb9@byu.net>
26576
26577         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
26578         1.5.x.
26579
26580 2007-04-04  Bruno Haible  <bruno@clisp.org>
26581
26582         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
26583         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
26584
26585 2007-04-04  Bruno Haible  <bruno@clisp.org>
26586
26587         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
26588         results for "%010a" of Infinity and NaN.
26589         * tests/test-vasprintf-posix.c (test_function): Likewise.
26590         * tests/test-snprintf-posix.h (test_function): Likewise.
26591         * tests/test-sprintf-posix.h (test_function): Likewise.
26592         * tests/test-fprintf-posix.h (test_function): Remove these tests.
26593         * tests/test-printf-posix.h (test_function): Likewise.
26594         * tests/test-fprintf-posix.out: Update.
26595         Needed for FreeBSD 6.1.
26596
26597 2007-04-04  Bruno Haible  <bruno@clisp.org>
26598
26599         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
26600         directly used by the gnulib modules nor by gnulib-tool.
26601
26602 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
26603
26604         * DEPENDENCIES: Give overall description of version dependency
26605         desirability.  Use more-typical names for apps.
26606         Add shell, coreutils, diffutils, grep, tar, gzip.
26607
26608 2007-04-04  Simon Josefsson  <simon@josefsson.org>
26609
26610         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
26611
26612 2007-04-04  Karl Berry  <karl@gnu.org>
26613
26614         * MODULES.html.sh (func_module): missing '.
26615
26616 2007-04-03  Bruno Haible  <bruno@clisp.org>
26617
26618         * modules/argmatch-tests (Makefile.am): New variable
26619         test_argmatch_LDADD.
26620         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
26621         * modules/array-list-tests (Makefile.am): New variable
26622         test_array_list_LDADD.
26623         * modules/array-oset-tests (Makefile.am): New variable
26624         test_array_oset_LDADD.
26625         * modules/avltree-list-tests (Makefile.am): New variable
26626         test_avltree_list_LDADD.
26627         * modules/avltree-oset-tests (Makefile.am): New variable
26628         test_avltree_oset_LDADD.
26629         * modules/avltreehash-list-tests (Makefile.am): New variable
26630         test_avltreehash_list_LDADD.
26631         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
26632         test_canonicalize_lgpl_LDADD.
26633         * modules/carray-list-tests (Makefile.am): New variable
26634         test_carray_list_LDADD.
26635         * modules/dirname-tests (Makefile.am): New variable
26636         test_dirname_LDADD.
26637         * modules/linked-list-tests (Makefile.am): New variable
26638         test_linked_list_LDADD.
26639         * modules/linkedhash-list-tests (Makefile.am): New variable
26640         test_linkedhash_list_LDADD.
26641         * modules/rbtree-list-tests (Makefile.am): New variable
26642         test_rbtree_list_LDADD.
26643         * modules/rbtree-oset-tests (Makefile.am): New variable
26644         test_rbtree_oset_LDADD.
26645         * modules/rbtreehash-list-tests (Makefile.am): New variable
26646         test_rbtreehash_list_LDADD.
26647         * modules/xvasprintf-tests (Makefile.am): New variable
26648         test_xvasprintf_LDADD.
26649         Reported by Eric Blake.
26650
26651 2007-04-03  Eric Blake  <ebb9@byu.net>
26652
26653         * DEPENDENCIES: Weaken m4 requirements.
26654
26655 2007-04-03  Bruno Haible  <bruno@clisp.org>
26656
26657         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
26658         * modules/isnanl-tests (configure.ac): Likewise.
26659
26660 2007-04-03  Ben Pfaff  <blp@gnu.org>
26661
26662         * modules/iconv_open: Add $(srcdir)/ to source directory
26663         references in Makefile fragments that call gperf, to fix VPATH
26664         builds.
26665
26666 2007-04-03  Bruno Haible  <bruno@clisp.org>
26667
26668         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
26669         * lib/ldexpl.c: Undo last change.
26670
26671 2007-04-03  Bruno Haible  <bruno@clisp.org>
26672
26673         * modules/printf-frexpl (Depends-on): Undo last change.
26674         (Files): Add m4/ldexpl.m4.
26675
26676 2007-04-03  Bruno Haible  <bruno@clisp.org>
26677
26678         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
26679         * modules/isnanl (Link): New section.
26680
26681         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
26682         * modules/frexp (Link): New section.
26683
26684         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
26685         * modules/frexpl (Link): New section.
26686
26687         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
26688         * modules/ldexpl (Link): New section.
26689
26690 2007-04-03  Bruno Haible  <bruno@clisp.org>
26691
26692         * modules/TEMPLATE-EXTENDED: New file.
26693         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
26694
26695 2007-04-03  Bruno Haible  <bruno@clisp.org>
26696
26697         * DEPENDENCIES: New file.
26698         Suggested by Simon Josefsson.
26699
26700 2007-04-03  Bruno Haible  <bruno@clisp.org>
26701
26702         * doc/gnulib.texi: Escape @.
26703
26704 2007-04-03  James Youngman  <jay@gnu.org>
26705         and Paul Eggert  <eggert@cs.ucla.edu>
26706
26707         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
26708         birthtime on all systems that have birthtime, not just those which
26709         use st_birthtimensec rather than st_birthtim.  Putting zero in
26710         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
26711         that the birth time is not available for files on an NFS mount.
26712
26713 2007-04-03  Simon Josefsson  <simon@josefsson.org>
26714
26715         * modules/memxor: Move back from crypto/, suggested by Bruno.
26716         * modules/crypto/hmac-sha1: Fix memxor dependency.
26717
26718         * modules/crypto/gc: Moved from ../.
26719
26720 2007-04-02  Eric Blake  <ebb9@byu.net>
26721
26722         * lib/ldexpl.c (includes): Avoid libm.
26723
26724         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
26725
26726 2007-04-02  Bruno Haible  <bruno@clisp.org>
26727
26728         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
26729         on IRIX.
26730
26731 2007-04-02  Bruno Haible  <bruno@clisp.org>
26732
26733         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
26734         x86 or x86_64 platforms running MacOS X.
26735         Reported by Ryan Schmidt <@ryandesign.com>.
26736
26737 2007-04-02  Bruno Haible  <bruno@clisp.org>
26738
26739         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
26740         i386.
26741
26742 2007-04-01  Simon Josefsson  <simon@josefsson.org>
26743
26744         * modules/crypto/arcfour: Moved from ../.
26745         * modules/crypto/arcfour-tests: Moved from ../.
26746         * modules/crypto/arctwo: Moved from ../.
26747         * modules/crypto/arctwo-tests: Moved from ../.
26748         * modules/crypto/des: Moved from ../.
26749         * modules/crypto/des-tests: Moved from ../.
26750         * modules/crypto/gc-arcfour: Moved from ../.
26751         * modules/crypto/gc-arcfour-tests: Moved from ../.
26752         * modules/crypto/gc-arctwo: Moved from ../.
26753         * modules/crypto/gc-arctwo-tests: Moved from ../.
26754         * modules/crypto/gc-des: Moved from ../.
26755         * modules/crypto/gc-des-tests: Moved from ../.
26756         * modules/crypto/gc-hmac-md5: Moved from ../.
26757         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
26758         * modules/crypto/gc-hmac-sha1: Moved from ../.
26759         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
26760         * modules/crypto/gc-md2: Moved from ../.
26761         * modules/crypto/gc-md2-tests: Moved from ../.
26762         * modules/crypto/gc-md4: Moved from ../.
26763         * modules/crypto/gc-md4-tests: Moved from ../.
26764         * modules/crypto/gc-md5: Moved from ../.
26765         * modules/crypto/gc-md5-tests: Moved from ../.
26766         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
26767         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
26768         * modules/crypto/gc-random: Moved from ../.
26769         * modules/crypto/gc-rijndael: Moved from ../.
26770         * modules/crypto/gc-rijndael-tests: Moved from ../.
26771         * modules/crypto/gc-sha1: Moved from ../.
26772         * modules/crypto/gc-sha1-tests: Moved from ../.
26773         * modules/crypto/gc-tests: Moved from ../.
26774         * modules/crypto/hmac-md5: Moved from ../.
26775         * modules/crypto/hmac-md5-tests: Moved from ../.
26776         * modules/crypto/hmac-sha1: Moved from ../.
26777         * modules/crypto/hmac-sha1-tests: Moved from ../.
26778         * modules/crypto/md2: Moved from ../.
26779         * modules/crypto/md2-tests: Moved from ../.
26780         * modules/crypto/md4: Moved from ../.
26781         * modules/crypto/md4-tests: Moved from ../.
26782         * modules/crypto/md5: Moved from ../.
26783         * modules/crypto/md5-tests: Moved from ../.
26784         * modules/crypto/memxor: Moved from ../.
26785         * modules/crypto/rijndael: Moved from ../.
26786         * modules/crypto/rijndael-tests: Moved from ../.
26787         * modules/crypto/sha1: Moved from ../.
26788
26789 2007-03-30  James Youngman  <jay@gnu.org>
26790
26791         * tests/test-stat-time.c (prepare_test): use chmod() rather than
26792         rename() to change the ctime of a file (because ctime is unaffected
26793         by rename on jfs2 on AIX 5.1).
26794         (main): Start by doing cleanup, in case a previous run failed leaving
26795         test files behind.
26796
26797 2007-03-31  Bruno Haible  <bruno@clisp.org>
26798
26799         Support old proprietary implementations of iconv.
26800         * modules/iconv_open: New file.
26801         * lib/iconv_.h: New file.
26802         * m4/iconv_h.m4: New file.
26803         * lib/iconv_open.c: New file.
26804         * lib/iconv_open-aix.gperf: New file.
26805         * lib/iconv_open-hpux.gperf: New file.
26806         * lib/iconv_open-irix.gperf: New file.
26807         * lib/iconv_open-osf.gperf: New file.
26808         * m4/iconv_open.m4: New file.
26809         * modules/linebreak (Depends-on): Add iconv_open.
26810         * modules/striconv (Depends-on): Likewise.
26811         * modules/striconveh (Depends-on): Likewise.
26812         * modules/unicodeio (Depends-on): Likewise.
26813         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
26814         (iconv_t)(-1).
26815         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
26816         conversion if cd is (iconv_t)(-1).
26817         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
26818         is not possible.
26819
26820 2007-03-31  Bruno Haible  <bruno@clisp.org>
26821
26822         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
26823         work on Solaris either. Protect also second use of "autodetect_jp".
26824
26825 2007-03-31  Bruno Haible  <bruno@clisp.org>
26826
26827         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
26828         the function is not present.
26829
26830 2007-03-31  Bruno Haible  <bruno@clisp.org>
26831
26832         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
26833         the function is not present.
26834
26835 2007-03-31  Bruno Haible  <bruno@clisp.org>
26836
26837         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
26838         a bug in HP-UX iconv_open().
26839
26840 2007-03-31  Bruno Haible  <bruno@clisp.org>
26841
26842         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
26843         (Mathematics <math.h>): New section, add fpieee.
26844         (Input/output <stdio.h>): Add fseterr.
26845         (Mathematics <math.h>): New section, add printf-frexp.
26846         (Container data structures): Add sublist.
26847         (Core language properties): Add fpucw, inline.
26848         (Functions for greatest-width integer types <inttypes.h>): Add
26849         imaxabs, imaxdiv, inttypes.
26850         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
26851         isnanl-nolibm, ldexp.
26852         (Mathematics <math.h>): New section, add printf-frexpl.
26853         (Support for systems lacking POSIX:2001): Add fprintf-posix,
26854         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
26855         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
26856         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
26857         (Unicode string functions): Add unistr/u*-mbtoucr.
26858         (Java): Add javacomp-script, javaexec-script.
26859         (C#): Add csharpcomp-script, csharpexec-script.
26860         (Support for building libraries and executables): Add havelib,
26861         relocatable-*.
26862         (Support for maintaining and releasing projects): Renamed from
26863         'Support for maintaining and release projects'. Add announce-gen.
26864
26865 2007-03-31  Bruno Haible  <bruno@clisp.org>
26866
26867         * README: Talk primarily about git.
26868         (git and CVS): Renamed from CVS.
26869         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
26870         gnulib is available through git.
26871         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
26872
26873 2007-03-30  Bruno Haible  <bruno@clisp.org>
26874
26875         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
26876         * lib/poll_.h: Likewise.
26877         * lib/stat_.h: Likewise.
26878         * lib/sys_time_.h: Likewise.
26879         * lib/sysexit_.h: Likewise.
26880         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
26881         * lib/stdbool_.h: Likewise.
26882         * lib/byteswap_.h: Add double-inclusion guard.
26883
26884 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
26885
26886         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
26887
26888 2007-03-30  Karl Berry  <karl@gnu.org>
26889
26890         * config/srclist-update: double space after USA in the license
26891         substitution, since that's how it's usually (?) written.
26892
26893 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
26894
26895         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
26896         reported by Bruno Haible.
26897
26898 2007-03-29  Bruno Haible  <bruno@clisp.org>
26899
26900         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
26901         a bug in AIX iconv().
26902
26903 2007-03-29  Bruno Haible  <bruno@clisp.org>
26904
26905         * modules/ldexpl-tests: New file.
26906         * tests/test-ldexpl.c: New file.
26907
26908 2007-03-29  Bruno Haible  <bruno@clisp.org>
26909
26910         * lib/ldexpl.c: Include fpucw.h.
26911         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
26912         multiplication.
26913         * modules/ldexpl (Depends-on): Add fpucw.
26914
26915 2007-03-29  Bruno Haible  <bruno@clisp.org>
26916
26917         * modules/ldexpl: New file.
26918         * m4/ldexpl.m4: New file.
26919         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
26920         set.
26921         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
26922         REPLACE_LDEXPL.
26923         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
26924         REPLACE_LDEXPL.
26925         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
26926         gl_FUNC_LDEXPL_WORKS.
26927         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
26928         * modules/mathl (Files): Remove lib/ldexpl.c.
26929         (Depends-on): Add ldexpl.
26930
26931 2007-03-29  Bruno Haible  <bruno@clisp.org>
26932
26933         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
26934
26935 2007-03-29  Bruno Haible  <bruno@clisp.org>
26936
26937         * tests/test-striconveh.c (main): Don't assume that a direct conversion
26938         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
26939         and possibly also HP-UX.
26940         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
26941         work on AIX, IRIX, HP-UX, OSF/1.
26942         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
26943         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
26944         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
26945         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
26946         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
26947         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
26948
26949 2007-03-29  Bruno Haible  <bruno@clisp.org>
26950
26951         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
26952
26953 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
26954
26955         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
26956         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
26957
26958 2007-03-29  Eric Blake  <ebb9@byu.net>
26959
26960         * lib/acl-internal.h: Remove redundant include.
26961         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
26962         Cygwin when a file is locked.
26963
26964 2007-03-29  Bruno Haible  <bruno@clisp.org>
26965
26966         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
26967         file.
26968         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
26969
26970 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
26971
26972         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
26973         try to remove a parent directory if the child couldn't be removed
26974         (except for the first rmdir, which could fail because the child
26975         doesn't exist).  Problem reported by Jeff Blaine in
26976         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
26977
26978 2007-03-28  Bruno Haible  <bruno@clisp.org>
26979
26980         * lib/striconveh.c (utf8conv_carefully): New function.
26981         (mem_cd_iconveh_internal): Invoke it.
26982
26983 2007-03-28  Bruno Haible  <bruno@clisp.org>
26984
26985         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
26986         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
26987         input.
26988         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
26989         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
26990         unistr/u8-uctomb.
26991
26992 2007-03-28  Bruno Haible  <bruno@clisp.org>
26993
26994         * modules/unistr/u8-mbtoucr: New file.
26995         * lib/unistr/u8-mbtoucr.c: New file.
26996         * modules/unistr/u16-mbtoucr: New file.
26997         * lib/unistr/u16-mbtoucr.c: New file.
26998         * modules/unistr/u16-mbtoucr: New file.
26999         * lib/unistr/u16-mbtoucr.c: New file.
27000         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
27001
27002 2007-03-27  Simon Josefsson  <simon@josefsson.org>
27003             Bruno Haible  <bruno@clisp.org>
27004
27005         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
27006         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
27007         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
27008
27009         * m4/stdio_h.m4: Add stubs for vasprintf too.
27010
27011         * modules/stdio: Support vasprintf in sed command.
27012
27013         * modules/vasprintf: Depend on stdio for prototypes.  Remove
27014         vasprintf.h.  Add stdio module indicator.
27015
27016         * lib/stdio_.h: Declare asprintf and vasprintf, based on
27017         vasprintf.h.
27018
27019         * lib/vasprintf.h: File removed.
27020
27021         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
27022         * lib/vasprintf.c: Ditto.
27023         * lib/xvasprintf.c: Ditto.
27024         * tests/test-vasprintf-posix.c: Ditto.
27025         * tests/test-vasprintf.c: Ditto.
27026
27027 2007-03-27  Bruno Haible  <bruno@clisp.org>
27028
27029         Make vasnprintf multithread-safe.
27030         * lib/vasnprintf.c (decimal_point_char): New function.
27031         (VASNPRINTF): Use it.
27032         Suggested by Simon Josefsson.
27033
27034 2007-03-27  Eric Blake  <ebb9@byu.net>
27035
27036         Support sub-second birthtime on cygwin.
27037         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
27038         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
27039         (get_stat_birthtime): Also work with st_birthtim.
27040
27041 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
27042
27043         * lib/stat-time.h (USE_BIRTHTIME): Remove.
27044         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
27045         (get_stat_birthtime_ns): Do not try to use "spare" fields.
27046         (get_stat_birthtime_ns): Simplify compile-time tests.
27047         (get_stat_birthtime): Change the API to look like
27048         get_stat_mtime etc., except return a negative tv_nsec on error.
27049         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
27050         Don't check for "spare" fields.
27051         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
27052         or for struct stat.st_birthtime, as these tests aren't used.
27053         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
27054
27055 2007-03-27  Bruno Haible  <bruno@clisp.org>
27056
27057         * lib/stat-time.h: Include <sys/stat.h>.
27058
27059 2007-03-27  James Youngman  <jay@gnu.org>
27060
27061         * lib/stat-time.h (get_stat_birthtime): New function for
27062           retrieving st_birthtime as provided by UFS2 (hence *BSD).
27063         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
27064           and its variants.
27065         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
27066         * modules/stat-time-test: New file.
27067         * tests/test-stat-time.c: New test, devised by Bruno Haible.
27068
27069 2007-03-26  Bruno Haible  <bruno@clisp.org>
27070
27071         Better support of signalling NaNs.
27072         * lib/atanl.c: Include isnanl.h.
27073         (atanl): Perform test for NaN at the beginning of the function and
27074         through a call to isnanl.
27075         * lib/cosl.c: Include isnanl.h.
27076         (cosl): Perform test for NaN at the beginning of the function and
27077         through a call to isnanl.
27078         * lib/ldexpl.c: Include isnanl.h.
27079         (ldexpl): Perform test for NaN through a call to isnanl.
27080         * lib/logl.c: Include isnanl.h.
27081         (logl): Perform test for NaN at the beginning of the function and
27082         through a call to isnanl.
27083         * lib/sinl.c: Include isnanl.h.
27084         (sinl): Perform test for NaN at the beginning of the function and
27085         through a call to isnanl.
27086         * lib/sqrtl.c: Include isnanl.h.
27087         (sqrtl): Perform test for NaN at the beginning of the function and
27088         through a call to isnanl.
27089         * lib/tanl.c: Include isnanl.h.
27090         (tanl): Perform test for NaN at the beginning of the function and
27091         through a call to isnanl.
27092         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
27093         * modules/mathl (Depends-on): Add isnanl.
27094
27095 2007-03-26  Eric Blake  <ebb9@byu.net>
27096
27097         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
27098         regression in logic sense of previous patch.
27099
27100 2007-03-26  Bruno Haible  <bruno@clisp.org>
27101
27102         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
27103         unportable shell command "if ! ...".
27104         Reported by Ralf Wildenhues.
27105
27106 2007-03-25  Bruno Haible  <bruno@clisp.org>
27107
27108         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
27109         <sysexits.h> file, and only add EX_CONFIG.
27110         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
27111         absolute file name and whether it is sufficient. Substitute also
27112         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
27113         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
27114         ABSOLUTE_SYSEXITS_H into sysexits.h.
27115
27116 2007-03-25  Bruno Haible  <bruno@clisp.org>
27117
27118         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
27119         hints is NULL.
27120
27121 2007-03-25  Bruno Haible  <bruno@clisp.org>
27122
27123         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
27124         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
27125
27126 2007-03-25  Bruno Haible  <bruno@clisp.org>
27127
27128         * lib/vasnprintf.c: Include langinfo.h.
27129         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
27130         multithread-safe.
27131         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
27132         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
27133         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27134         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27135         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27136         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27137         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27138         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
27139         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27140         Reported by Simon Josefsson.
27141
27142 2007-03-25  Bruno Haible  <bruno@clisp.org>
27143
27144         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
27145         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
27146         * modules/vasnprintf (Depends-on): Add stdint.
27147
27148 2007-03-25  Bruno Haible  <bruno@clisp.org>
27149
27150         * modules/fpieee: New file.
27151         * m4/fpieee.m4: New file.
27152         * modules/isnan-nolibm (Depends-on): Add fpieee.
27153         * modules/isnanl-nolibm (Depends-on): Add fpieee.
27154         * modules/isnanl (Depends-on): Add fpieee.
27155
27156 2007-03-25  Bruno Haible  <bruno@clisp.org>
27157
27158         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
27159
27160 2007-03-25  Bruno Haible  <bruno@clisp.org>
27161
27162         Avoid test failures on IRIX 6.5.
27163         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
27164         (main): Use it.
27165         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
27166         macros.
27167         (main): Use them.
27168
27169 2007-03-25  Bruno Haible  <bruno@clisp.org>
27170
27171         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
27172         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
27173         exists but doesn't work.
27174         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
27175         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
27176         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
27177         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
27178
27179 2007-03-25  Bruno Haible  <bruno@clisp.org>
27180
27181         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
27182         returns inf. Needed on IRIX 6.5.
27183
27184 2007-03-25  Bruno Haible  <bruno@clisp.org>
27185
27186         * tests/test-frexpl.c: Include isnanl-nolibm.h.
27187         (main): Use isnanl instead of x != x idiom.
27188         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
27189
27190         * tests/test-frexp.c: Include isnan.h.
27191         (main): Use isnan instead of x != x idiom.
27192         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
27193
27194 2007-03-25  Bruno Haible  <bruno@clisp.org>
27195
27196         * tests/test-frexp.c (NaN): New function/macro.
27197         (main): Use it instead of 0.0 / 0.0.
27198         * tests/test-isnan.c (NaN): New function/macro.
27199         (main): Use it instead of 0.0 / 0.0.
27200         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
27201         (test_function): Use it instead of 0.0 / 0.0.
27202         * tests/test-vasprintf-posix.c (NaN): New function/macro.
27203         (test_function): Use it instead of 0.0 / 0.0.
27204         * tests/test-snprintf-posix.h (NaN): New function/macro.
27205         (test_function): Use it instead of 0.0 / 0.0.
27206         * tests/test-sprintf-posix.h (NaN): New function/macro.
27207         (test_function): Use it instead of 0.0 / 0.0.
27208         * tests/test-fprintf-posix.h (NaN): New function/macro.
27209         (test_function): Use it instead of 0.0 / 0.0.
27210         * tests/test-printf-posix.h (NaN): New function/macro.
27211         (test_function): Use it instead of 0.0 / 0.0.
27212
27213         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
27214
27215 2007-03-25  Bruno Haible  <bruno@clisp.org>
27216
27217         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
27218
27219 2007-03-25  Bruno Haible  <bruno@clisp.org>
27220
27221         * lib/regexec.c (merge_state_with_log): Make static.
27222
27223 2007-03-25  Bruno Haible  <bruno@clisp.org>
27224
27225         * lib/trigl.c (kernel_rem_pio2): Make static.
27226
27227 2007-03-25  Bruno Haible  <bruno@clisp.org>
27228
27229         * lib/sincosl.c (sincosl_table): Make static.
27230
27231 2007-03-25  Bruno Haible  <bruno@clisp.org>
27232
27233         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
27234         if the compiler does not support C99.
27235
27236 2007-03-25  Bruno Haible  <bruno@clisp.org>
27237
27238         * modules/time (Makefile.am): Ensure all rule action lines start with a
27239         tab.
27240
27241 2007-03-24  Bruno Haible  <bruno@clisp.org>
27242
27243         * modules/tsearch-tests: New file.
27244         * tests/test-tsearch.sh: New file.
27245         * tests/test-tsearch.c: New file, mostly copied from glibc.
27246
27247         * modules/search-tests: New file.
27248         * tests/test-search.c: New file.
27249
27250         * modules/search: New file.
27251         * lib/search_.h: New file, incorporating lib/tsearch.h.
27252         * m4/search_h.m4: New file.
27253         * lib/tsearch.h: Remove file.
27254         * lib/tsearch.c: Include search.h instead of tsearch.h.
27255         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
27256         HAVE_TSEARCH.
27257         * modules/tsearch (Files): Remove lib/tsearch.h.
27258         (Depends-on): Add search.
27259         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
27260         (Include): Change tsearch.h into search.h.
27261
27262 2007-03-24  Bruno Haible  <bruno@clisp.org>
27263
27264         * modules/fpucw: New file.
27265         * lib/fpucw.h: New file.
27266         * lib/frexp.c: Include fpucw.h.
27267         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
27268         (FUNC): Use them.
27269         * lib/printf-frexp.c: Include fpucw.h.
27270         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
27271         (FUNC): Use them.
27272         * lib/vasnprintf.c: Include fpucw.h.
27273         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
27274         'long double' calculations.
27275         * tests/test-frexpl.c: Include fpucw.h.
27276         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
27277         * tests/test-printf-frexpl.c: Include fpucw.h.
27278         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
27279         * modules/frexpl (Depends-on): Add fpucw.
27280         * modules/printf-frexpl (Depends-on): Likewise.
27281         * modules/fprintf-posix (Depends-on): Likewise.
27282         * modules/snprintf-posix (Depends-on): Likewise.
27283         * modules/sprintf-posix (Depends-on): Likewise.
27284         * modules/vasnprintf-posix (Depends-on): Likewise.
27285         * modules/vasprintf-posix (Depends-on): Likewise.
27286         * modules/vfprintf-posix (Depends-on): Likewise.
27287         * modules/vsnprintf-posix (Depends-on): Likewise.
27288         * modules/vsprintf-posix (Depends-on): Likewise.
27289         * modules/frexpl-tests (Depends-on): Likewise.
27290         * modules/printf-frexpl-tests (Depends-on): Likewise.
27291
27292 2007-03-24  Bruno Haible  <bruno@clisp.org>
27293
27294         * lib/float+.h: New file.
27295         * lib/isnan.c: Include float+.h.
27296         (SIZE): New macro.
27297         (FUNC): Compare only SIZE bytes of the value.
27298         * lib/vasnprintf.c: Include float+.h.
27299         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
27300         SIZEOF_LDBL or SIZEOF_DBL bytes.
27301         * modules/isnan-nolibm (Files): Add lib/float+.h.
27302         * modules/isnanl-nolibm (Files): Add lib/float+.h.
27303         * modules/isnanl (Files): Add lib/float+.h.
27304         * modules/vasnprintf (Files): Add lib/float+.h.
27305
27306 2007-03-24  Bruno Haible  <bruno@clisp.org>
27307
27308         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
27309         include isnanl-nolibm.h.
27310
27311 2007-03-24  Bruno Haible  <bruno@clisp.org>
27312
27313         * tests/test-read-file.c (main): Don't produce spurious output for
27314         expected situations. Make the test fail if it encountered unexpected
27315         results.
27316
27317 2007-03-24  Bruno Haible  <bruno@clisp.org>
27318
27319         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
27320         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
27321
27322 2007-03-24  Bruno Haible  <bruno@clisp.org>
27323
27324         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
27325
27326 2007-03-24  Bruno Haible  <bruno@clisp.org>
27327
27328         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
27329         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
27330
27331         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
27332         * modules/utf8-ucs4: Turn into a symbolic link to module
27333         unistr/u8-mbtouc.
27334
27335         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
27336         utf8-ucs4-unsafe.
27337         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
27338         unistr/u8-mbtouc-unsafe.
27339
27340         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
27341         * modules/utf16-ucs4: Turn into a symbolic link to module
27342         unistr/u16-mbtouc.
27343
27344         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
27345         utf16-ucs4-unsafe.
27346         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
27347         unistr/u16-mbtouc-unsafe.
27348
27349         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
27350         * modules/ucs4-utf8: Turn into a symbolic link to module
27351         unistr/u8-ubtomb.
27352
27353         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
27354         * modules/ucs4-utf16: Turn into a symbolic link to module
27355         unistr/u16-ubtomb.
27356
27357 2007-03-24  Bruno Haible  <bruno@clisp.org>
27358
27359         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
27360         Enable the function only if HAVE_INLINE.
27361         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
27362         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
27363         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
27364         Enable the function only if HAVE_INLINE.
27365         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
27366         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
27367         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
27368         Enable the function only if HAVE_INLINE.
27369         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
27370         Enable the function only if HAVE_INLINE.
27371         * modules/utf8-ucs4: Update.
27372         * modules/utf8-ucs4-unsafe: Update.
27373         * modules/utf16-ucs4: Update.
27374         * modules/utf16-ucs4-unsafe: Update.
27375         * modules/ucs4-utf8: Update.
27376         * modules/ucs4-utf16: Update.
27377
27378 2007-03-24  Bruno Haible  <bruno@clisp.org>
27379
27380         * lib/utf8-ucs4.h: Remove file.
27381         * lib/utf8-ucs4-unsafe.h: Remove file.
27382         * lib/utf16-ucs4.h: Remove file.
27383         * lib/utf16-ucs4-unsafe.h: Remove file.
27384         * lib/ucs4-utf8.h: Remove file.
27385         * lib/ucs4-utf16.h: Remove file.
27386         * lib/unistr.h: Include their previous contents.
27387         * m4/utf-ucs4.m4: Remove file.
27388         * m4/ucs4-utf.m4: Remove file.
27389         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
27390         (Depends-on): Add unistr/base.
27391         (configure.ac): Remove gl_UTF_UCS4.
27392         (Makefile.am): Update.
27393         (Include): Change to unistr.h.
27394         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
27395         (Depends-on): Add unistr/base.
27396         (configure.ac): Remove gl_UTF_UCS4.
27397         (Makefile.am): Update.
27398         (Include): Change to unistr.h.
27399         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
27400         (Depends-on): Add unistr/base.
27401         (configure.ac): Remove gl_UTF_UCS4.
27402         (Makefile.am): Update.
27403         (Include): Change to unistr.h.
27404         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
27405         (Depends-on): Add unistr/base.
27406         (configure.ac): Remove gl_UTF_UCS4.
27407         (Makefile.am): Update.
27408         (Include): Change to unistr.h.
27409         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
27410         (Depends-on): Add unistr/base.
27411         (configure.ac): Remove gl_UCS4_UTF.
27412         (Makefile.am): Update.
27413         (Include): Change to unistr.h.
27414         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
27415         (Depends-on): Add unistr/base.
27416         (configure.ac): Remove gl_UCS4_UTF.
27417         (Makefile.am): Update.
27418         (Include): Change to unistr.h.
27419         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
27420         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
27421         utf8-ucs4-unsafe.h.
27422         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
27423         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
27424         utf16-ucs4-unsafe.h.
27425         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
27426         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
27427         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
27428         * lib/unistr/u8-strchr.c: Likewise.
27429         * lib/unistr/u8-strrchr.c: Likewise.
27430         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
27431         * lib/unistr/u16-strchr.c: Likewise.
27432         * lib/unistr/u16-strrchr.c: Likewise.
27433         * lib/striconveh.c: Update.
27434         * lib/linebreak.c: Update.
27435
27436 2007-03-24  Bruno Haible  <bruno@clisp.org>
27437
27438         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
27439         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
27440
27441 2007-03-22  Bruno Haible  <bruno@clisp.org>
27442
27443         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
27444
27445 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
27446
27447         * MODULES.html.sh (File system functions): New module write-any-file.
27448         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
27449         * m4/write-any-file.m4: New files.
27450
27451 2007-03-23  Eric Blake  <ebb9@byu.net>
27452
27453         * gnulib-tool: Rearrange space-tab sequences, since some editors
27454         like to eat them.
27455
27456 2007-03-23  Eric Blake  <ebb9@byu.net>
27457
27458         * lib/version-etc.c (version_etc_va): Update license wording to
27459         be more concise.  Recommended by Richard Stallman.
27460
27461 2007-03-22  Bruno Haible  <bruno@clisp.org>
27462
27463         * lib/poll.c (MSG_PEEK): New fallback definition.
27464
27465 2007-03-22  Bruno Haible  <bruno@clisp.org>
27466
27467         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
27468         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
27469         (main): Update.
27470         Fixes a compilation error on BeOS.
27471
27472 2007-03-22  Bruno Haible  <bruno@clisp.org>
27473
27474         * modules/frexpl-tests: New file.
27475         * tests/test-frexpl.c: New file.
27476
27477         * modules/frexpl: New file.
27478         * m4/frexpl.m4: New file.
27479         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
27480         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
27481         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
27482         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
27483         (Depends-on): Add frexpl. Remove isnanl-nolibm.
27484         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
27485
27486 2007-03-22  Bruno Haible  <bruno@clisp.org>
27487
27488         * lib/frexpl.c: Share code with lib/frexp.c.
27489         * modules/mathl (Files): Add lib/frexp.c.
27490         (Depends-on): Add isnanl-nolibm.
27491
27492 2007-03-22  Bruno Haible  <bruno@clisp.org>
27493
27494         * modules/printf-frexp (Files): Add m4/frexp.m4.
27495         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
27496         only if the found frexp function actually works.
27497
27498 2007-03-22  Bruno Haible  <bruno@clisp.org>
27499
27500         * lib/frexp.c: Remove older implementation that uses divisions.
27501
27502 2007-03-21  Bruno Haible  <bruno@clisp.org>
27503
27504         * modules/frexp-tests: New file.
27505         * tests/test-frexp.c: New file.
27506
27507         * modules/frexp: New file.
27508         * lib/frexp.c: New file.
27509         * m4/frexp.m4: New file.
27510         * lib/math_.h (frexp): New declaration.
27511         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
27512         REPLACE_FREXP.
27513         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
27514
27515 2007-03-21  Bruno Haible  <bruno@clisp.org>
27516
27517         * modules/isnanl-tests: New file.
27518         * tests/test-isnanl.c: New file.
27519
27520         * modules/isnanl: New file.
27521         * lib/isnanl.h: New file.
27522         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
27523         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
27524         gl_FUNC_ISNANL_WORKS.
27525         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
27526         New macros.
27527
27528 2007-03-21  Bruno Haible  <bruno@clisp.org>
27529
27530         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
27531         lib/isnanl.h.
27532         (Include): Update.
27533         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
27534         * lib/vasnprintf.c: Update.
27535         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
27536         tests/test-isnanl.h, remove tests/test-isnanl.c.
27537         (Makefile.am): Update.
27538         * tests/test-isnanl-nolibm.c: New file.
27539         * tests/test-isnanl.h: New file.
27540         * tests/test-isnanl.c: Remove file.
27541
27542 2007-03-21  Jim Meyering  <jim@meyering.net>
27543
27544         When trying to open ".", treat ESTALE like EACCES.
27545         * lib/savewd.c (savewd_save): Resort to forking not just upon
27546         failure with EACCES, but also when errno is ESTALE.
27547
27548 2007-03-20  Bruno Haible  <bruno@clisp.org>
27549
27550         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
27551         Needed on AIX 5.1. Reported by Matthew Woehlke.
27552
27553 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
27554
27555         Suggestions by Bruno Haible:
27556         * lib/acl-internal.h: Include "gettext.h" rather than rolling
27557         our own.
27558         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
27559         * modules/acl (Depends-on): Add gettext.
27560
27561 2007-03-19  Bruno Haible  <bruno@clisp.org>
27562
27563         * modules/iconvme: Remove file.
27564         * lib/iconvme.h: Remove file.
27565         * lib/iconvme.c: Remove file.
27566         * m4/iconvme.m4: Remove file.
27567
27568 2007-03-19  Bruno Haible  <bruno@clisp.org>
27569
27570         * doc/relocatable-maint.texi: Break long shell script line.
27571         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
27572
27573 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
27574
27575         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
27576         handle file_has_acl.
27577         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
27578         * lib/acl.c: Move header inclusions and related macro defns into
27579         lib/acl-internal.h.
27580         (S_ISLNK): Remove defn, since that's now done for us.
27581         (file_has_acl): Move to lib/file-has-acl.c.
27582         Call acl_trivial if available.  This is the crucial part of the fix.
27583         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
27584         shared within the library.  Rewrite a bit, partly to make it compatible
27585         with the GNU coding style.
27586         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
27587         Remove unnecessary double-quotes.
27588         Don't test for acl_to_text; the build will catch that.
27589         Replace acl_entries if it doesn't exist and it is needed.
27590         Check for -lsec and acl_trivial (as used on Solaris 10).
27591         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
27592         lib/file-has-acl.c.
27593         (Depends-on): Add sys_stat, for S_ISLNK.
27594
27595 2007-03-19  Ben Pfaff  <blp@gnu.org>
27596
27597         * doc/gnulib.texi: Fix typos.
27598         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
27599
27600 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
27601
27602         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
27603         If size is zero here, buf must be zero.
27604
27605 2007-03-19  Simon Josefsson  <simon@josefsson.org>
27606
27607         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
27608         <bruno@clisp.org>.
27609
27610 2007-03-18  Bruno Haible  <bruno@clisp.org>
27611
27612         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
27613         Suggested by Eric Blake.
27614
27615 2007-03-18  Ben Pfaff  <blp@gnu.org>
27616
27617         * doc/relocatable.texi: Recommend using as prefix a directory
27618         that does not exist and will never be created.  Based on
27619         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
27620         and others.
27621
27622 2007-03-17  Bruno Haible  <bruno@clisp.org>
27623
27624         * lib/fchownat.c: Include lchown.h.
27625
27626 2007-03-17  Bruno Haible  <bruno@clisp.org>
27627
27628         Fix endless loop when the given allocated size was > INT_MAX.
27629         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
27630         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
27631         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
27632         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
27633         * lib/sprintf.c (sprintf): Likewise.
27634
27635 2007-03-17  Bruno Haible  <bruno@clisp.org>
27636
27637         * tests/test-argp-2.sh (func_compare): Output a context diff.
27638
27639 2007-03-17  Bruno Haible  <bruno@clisp.org>
27640
27641         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
27642         locale's decimal-point character.
27643
27644 2007-03-17  Bruno Haible  <bruno@clisp.org>
27645
27646         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
27647         before comparing it. Needed because on some platforms (e.g. x86) a
27648         'long double' occupies less bytes than sizeof (long double).
27649
27650 2007-03-17  Bruno Haible  <bruno@clisp.org>
27651
27652         * tests/test-crc.c (main): Make printf statements 64-bit clean.
27653         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
27654         * tests/test-getaddrinfo.c (simple): Likewise.
27655         * tests/test-read-file.c (main): Likewise.
27656
27657 2007-03-17  Bruno Haible  <bruno@clisp.org>
27658
27659         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
27660
27661 2007-03-17  Bruno Haible  <bruno@clisp.org>
27662
27663         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
27664         unused variable.
27665
27666 2007-03-17  Bruno Haible  <bruno@clisp.org>
27667
27668         * tests/test-c-strcasecmp.c: Include c-strcase.h.
27669         * tests/test-c-strncasecmp.c: Likewise.
27670
27671 2007-03-17  Bruno Haible  <bruno@clisp.org>
27672
27673         * modules/stdlib (Depends-on): Add unistd.
27674         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
27675         Needed for MacOS X 10.3.
27676
27677 2007-03-17  Bruno Haible  <bruno@clisp.org>
27678
27679         * lib/unistr/u-strdup.h: Include <stdlib.h>.
27680
27681 2007-03-17  Bruno Haible  <bruno@clisp.org>
27682
27683         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
27684
27685 2007-03-17  Bruno Haible  <bruno@clisp.org>
27686
27687         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
27688         to reflect files copied from gnulib (with or without modifications).
27689         Suggested by Jim Meyering.
27690
27691 2007-03-17  Eric Blake  <ebb9@byu.net>
27692
27693         * NEWS: Document stdlib change from 2007-02-18.
27694
27695 2007-03-17  Jim Meyering  <jim@meyering.net>
27696
27697         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
27698         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
27699         someone uses a name containing shell meta-characters.
27700         Reported by Alfred M. Szmidt.
27701
27702         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
27703
27704 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
27705
27706         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
27707         and copy gettext configuration files only if configure.ac contains
27708         a use of AM_GNU_GETTEXT_VERSION.
27709
27710 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
27711
27712         * build-aux/bootstrap (gnulib_name): New variable.
27713         (gnulib_tool_options): Use it.
27714
27715 2007-03-13  Simon Josefsson  <simon@josefsson.org>
27716
27717         * tests/test-des.c: Use new namespace.
27718
27719 2007-03-15  Bruno Haible  <bruno@clisp.org>
27720
27721         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
27722         Reported by James Youngman <jay@gnu.org>.
27723
27724 2007-03-15  Bruno Haible  <bruno@clisp.org>
27725
27726         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
27727         declared prototype. Needed with cc on OSF/1 5.1.
27728
27729 2007-03-15  Bruno Haible  <bruno@clisp.org>
27730
27731         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
27732         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
27733         (struct gl_list_implementation): Add dispose_fn argument to the
27734         'create_empty', 'create' methods.
27735         (struct gl_list_impl_base): Add field 'dispose_fn'.
27736         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
27737         argument.
27738         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
27739         dispose_fn argument.
27740         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
27741         dispose_fn on the dropped values.
27742         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
27743         dispose_fn argument.
27744         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
27745         dropped values.
27746         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
27747         (gl_tree_remove_node): Call dispose_fn on the dropped value.
27748         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
27749         (gl_tree_remove_node): Call dispose_fn on the dropped value.
27750         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
27751         argument.
27752         (gl_tree_list_free): Call dispose_fn on the dropped values.
27753         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
27754         the dropped values.
27755         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
27756         Add dispose_fn argument.
27757         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
27758         Call dispose_fn on the dropped values.
27759         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
27760         Add dispose_fn argument.
27761         (gl_sublist_create): Initialize the 'dispose_fn' field.
27762         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
27763         * tests/test-array_list.c (main): Update.
27764         * tests/test-carray_list.c (main): Update.
27765         * tests/test-avltree_list.c (main): Update.
27766         * tests/test-rbtree_list.c (main): Update.
27767         * tests/test-avltreehash_list.c (main): Update.
27768         * tests/test-rbtreehash_list.c (main): Update.
27769         * tests/test-linked_list.c (main): Update.
27770         * tests/test-linkedhash_list.c (main): Update.
27771         * tests/test-array_oset.c (main): Update.
27772
27773 2007-03-15  Bruno Haible  <bruno@clisp.org>
27774
27775         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
27776         (gl_oset_create_empty): Add dispose_fn argument.
27777         (struct gl_oset_implementation): Add dispose_fn argument to
27778         'create_empty' method.
27779         (struct gl_oset_impl_base): Add dispose_fn field.
27780         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
27781         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
27782         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
27783         values.
27784         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
27785         (gl_tree_oset_free): Call dispose_fn on the dropped values.
27786         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
27787         dropped value.
27788         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
27789         dropped value.
27790         * tests/test-array_oset.c (main): Update.
27791         * tests/test-avltree_oset.c (main): Update.
27792         * tests/test-rbtree_oset.c (main): Update.
27793         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
27794
27795 2007-03-13  Bruno Haible  <bruno@clisp.org>
27796
27797         * tests/test-stdbool.c (i): Update after last patch.
27798
27799 2007-03-12  Bruno Haible  <bruno@clisp.org>
27800
27801         * lib/quotearg.c: Include <wctype.h> early, before the definition of
27802         the iswprint macro. Needed on Solaris 2.5.1.
27803
27804 2007-03-12  Bruno Haible  <bruno@clisp.org>
27805
27806         * tests/test-printf-frexp.c (main): Declare x as volatile.
27807
27808 2007-03-12  Simon Josefsson  <simon@josefsson.org>
27809
27810         * doc/gnulib.texi (Build robot for gnulib): New section.
27811
27812 2007-03-12  Jim Meyering  <jim@meyering.net>
27813
27814         * build-aux/bootstrap: New file.
27815         * build-aux/bootstrap.conf: New file, from coreutils.
27816
27817 2007-03-11  Bruno Haible  <bruno@clisp.org>
27818
27819         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
27820
27821 2007-03-12  Simon Josefsson  <simon@josefsson.org>
27822
27823         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
27824         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
27825         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
27826
27827 2007-03-11  Bruno Haible  <bruno@clisp.org>
27828
27829         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
27830         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
27831
27832 2007-03-11  Bruno Haible  <bruno@clisp.org>
27833
27834         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
27835         formula. Needed for SunPRO C 5.0.
27836
27837 2007-03-11  Bruno Haible  <bruno@clisp.org>
27838
27839         * modules/long-options (Depends-on): Add getopt.
27840
27841 2007-03-11  Bruno Haible  <bruno@clisp.org>
27842
27843         * modules/modechange (Depends-on): Add stdbool.
27844
27845 2007-03-11  Bruno Haible  <bruno@clisp.org>
27846
27847         * modules/i-ring (Depends-on): Add stdbool.
27848
27849 2007-03-11  Bruno Haible  <bruno@clisp.org>
27850
27851         * modules/gc-des (Depends-on): Add stdbool.
27852
27853 2007-03-11  Bruno Haible  <bruno@clisp.org>
27854
27855         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
27856
27857 2007-03-11  Bruno Haible  <bruno@clisp.org>
27858
27859         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
27860
27861 2007-03-11  Bruno Haible  <bruno@clisp.org>
27862
27863         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
27864
27865 2007-03-11  Bruno Haible  <bruno@clisp.org>
27866
27867         * lib/vasnprintf.c (sprintf): Undefine.
27868
27869 2007-03-11  Bruno Haible  <bruno@clisp.org>
27870
27871         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
27872         initializers in SunPRO C and Compaq C compilers.
27873
27874 2007-03-11  Bruno Haible  <bruno@clisp.org>
27875
27876         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
27877         decrementing code ANSI C compliant.
27878
27879 2007-03-11  Bruno Haible  <bruno@clisp.org>
27880
27881         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
27882         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
27883
27884 2007-03-11  Bruno Haible  <bruno@clisp.org>
27885
27886         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
27887         <stdbool.h> substitute doesn't pass.
27888
27889 2007-03-11  Bruno Haible  <bruno@clisp.org>
27890
27891         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
27892
27893 2007-03-11  Bruno Haible  <bruno@clisp.org>
27894
27895         * gnulib-tool (func_create_megatestdir): Create also an autobuild
27896         script, for submission to autobuild.josefsson.org.
27897
27898 2007-03-10  Bruno Haible  <bruno@clisp.org>
27899
27900         * modules/canonicalize-lgpl-tests: New file.
27901         * tests/test-canonicalize-lgpl.sh: New file.
27902         * tests/test-canonicalize-lgpl.c: New file.
27903
27904         * modules/c-strcase-tests: New file.
27905         * tests/test-c-strcase.sh: New file.
27906         * tests/test-c-strcasecmp.c: New file.
27907         * tests/test-c-strncasecmp.c: New file.
27908
27909         * modules/atexit-tests: New file.
27910         * tests/test-atexit.sh: New file.
27911         * tests/test-atexit.c: New file.
27912
27913 2007-03-10  Bruno Haible  <bruno@clisp.org>
27914
27915         * tests/test-binary-io.sh: Use temporary filenames that are not so
27916         likely to clash with those of other tests (in a parallel make).
27917         * tests/test-binary-io.c: Likewise.
27918
27919 2007-03-10  Bruno Haible  <bruno@clisp.org>
27920
27921         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
27922         fallback; use #error instead.
27923         Suggested by Simon Josefsson.
27924
27925 2007-03-10  Bruno Haible  <bruno@clisp.org>
27926
27927         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
27928         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
27929         first and the last.
27930
27931 2007-03-10  Bruno Haible  <bruno@clisp.org>
27932
27933         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
27934
27935 2007-03-10  Bruno Haible  <bruno@clisp.org>
27936
27937         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
27938         "make distcheck".
27939         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
27940         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
27941         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
27942
27943 2007-03-10  Bruno Haible  <bruno@clisp.org>
27944
27945         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
27946         variable.
27947         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
27948         variable.
27949
27950 2007-03-09  Eric Blake  <ebb9@byu.net>
27951         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
27952
27953         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
27954         types are not being provided by gnulib.
27955         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
27956         types are supported.
27957
27958 2007-03-10  Bruno Haible  <bruno@clisp.org>
27959
27960         * lib/stdio_.h (__attribute__): New macro.
27961         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
27962         vsprintf): Specify __attribute__ __format__ for GCC.
27963         Suggested by Eric Blake.
27964
27965 2007-03-09  Bruno Haible  <bruno@clisp.org>
27966
27967         * modules/printf-posix-tests: New file.
27968         * tests/test-printf-posix.sh: New file.
27969         * tests/test-printf-posix.c: New file.
27970
27971         * modules/printf-posix: New file.
27972         * lib/printf.c: New file.
27973         * m4/printf-posix-rpl.m4: New file.
27974         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
27975         REPLACE_PRINTF.
27976         * lib/stdio_.h (printf): New declaration.
27977         (format, __format__, ____printf____, ____scanf____, ____strftime____,
27978         ____strfmon____): New macros.
27979         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
27980         REPLACE_PRINTF.
27981
27982 2007-03-09  Bruno Haible  <bruno@clisp.org>
27983
27984         * tests/test-vasnprintf-posix2.sh: New file.
27985         * tests/test-vasnprintf-posix2.c: New file.
27986         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
27987         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
27988         (Makefile.am): Activate test-vasnprintf-posix2.sh.
27989
27990         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
27991         a locale dependent decimal point, rather than always '.'.
27992
27993 2007-03-09  Eric Blake  <ebb9@byu.net>
27994
27995         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
27996         spite of platforms like Tandem/NSK that define it to -1.
27997
27998 2007-03-08  Bruno Haible  <bruno@clisp.org>
27999
28000         * modules/vprintf-posix-tests: New file.
28001         * tests/test-vprintf-posix.sh: New file.
28002         * tests/test-vprintf-posix.c: New file.
28003         * tests/test-printf-posix.h: New file.
28004
28005         * modules/vprintf-posix: New file.
28006         * lib/vprintf.c: New file.
28007         * m4/vprintf-posix.m4: New file.
28008         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
28009         REPLACE_VPRINTF.
28010         * lib/stdio_.h (vprintf): New declaration.
28011         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
28012         REPLACE_VPRINTF.
28013
28014 2007-03-08  Bruno Haible  <bruno@clisp.org>
28015
28016         * modules/fprintf-posix-tests: New file.
28017         * tests/test-fprintf-posix.sh: New file.
28018         * tests/test-fprintf-posix.c: New file.
28019
28020         * modules/fprintf-posix: New file.
28021         * lib/fprintf.c: New file.
28022         * m4/fprintf-posix.m4: New file.
28023         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
28024         REPLACE_FPRINTF.
28025         * lib/stdio_.h (fprintf): New declaration.
28026         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
28027         REPLACE_FPRINTF.
28028
28029 2007-03-08  Bruno Haible  <bruno@clisp.org>
28030
28031         * modules/vfprintf-posix-tests: New file.
28032         * tests/test-vfprintf-posix.sh: New file.
28033         * tests/test-vfprintf-posix.c: New file.
28034         * tests/test-fprintf-posix.h: New file.
28035         * tests/test-fprintf-posix.out: New file.
28036
28037         * modules/vfprintf-posix: New file.
28038         * lib/vfprintf.c: New file.
28039         * m4/vfprintf-posix.m4: New file.
28040         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
28041         REPLACE_VFPRINTF.
28042         * lib/stdio_.h (vfprintf): New declaration.
28043         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
28044         REPLACE_VFPRINTF.
28045
28046 2007-03-08  Bruno Haible  <bruno@clisp.org>
28047
28048         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
28049
28050 2007-03-08  Bruno Haible  <bruno@clisp.org>
28051
28052         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
28053         instead of 'expr' invocations.
28054         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28055         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28056         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28057         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28058         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28059         Suggested by Paul Eggert.
28060
28061 2007-03-08  Bruno Haible  <bruno@clisp.org>
28062
28063         * modules/fseterr-tests: New file.
28064         * tests/test-fseterr.c: New file.
28065
28066         * modules/fseterr: New file.
28067         * lib/fseterr.h: New file.
28068         * lib/fseterr.c: New file.
28069
28070 2007-03-08  Bruno Haible  <bruno@clisp.org>
28071
28072         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
28073         * lib/getopt_.h: Likewise.
28074         * lib/mbswidth.h: Likewise.
28075         * lib/setenv.h: Likewise.
28076         * lib/vasnprintf.h: Likewise.
28077         * lib/vasprintf.h: Likewise.
28078         * lib/verror.h: Likewise.
28079         * lib/xsetenv.h: Likewise.
28080         * lib/xvasprintf.h: Likewise.
28081
28082 2007-03-08  Jim Meyering  <jim@meyering.net>
28083
28084         * users.txt: Add parted.
28085
28086         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
28087
28088 2007-03-07  Bruno Haible  <bruno@clisp.org>
28089
28090         * m4/printf.m4: Make the shell script snippets copy&pastable.
28091
28092 2007-03-02  Bruno Haible  <bruno@clisp.org>
28093
28094         * lib/netinet_in_.h: New file.
28095         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
28096         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
28097         * modules/netinet_in (Files): Add lib/netinet_in_.h.
28098         (Depends-on): Add absolute-header.
28099         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
28100         into netinet/in.h.
28101
28102 2007-03-03  Bruno Haible  <bruno@clisp.org>
28103
28104         * lib/sys_select_.h: New file.
28105         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
28106         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
28107         * modules/sys_select (Files): Add lib/sys_select_.h.
28108         (Depends-on): Add absolute-header.
28109         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
28110         into sys/select.h.
28111
28112 2007-03-02  Bruno Haible  <bruno@clisp.org>
28113
28114         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
28115         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
28116         values.
28117         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
28118         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
28119         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
28120         * modules/sys_socket (Depends-on): Add absolute-header.
28121         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
28122         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
28123         (Include): Remove requirement of inclusion of <sys/types.h>.
28124
28125 2007-03-02  Bruno Haible  <bruno@clisp.org>
28126
28127         * lib/byteswap_.h (bswap_32): Fix formula.
28128
28129 2007-03-06  Bruno Haible  <bruno@clisp.org>
28130
28131         * modules/sprintf-posix-tests: New file.
28132         * tests/test-sprintf-posix.c: New file.
28133
28134         * modules/sprintf-posix: New file.
28135         * lib/sprintf.c: New file.
28136         * m4/sprintf-posix.m4: New file.
28137         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
28138         REPLACE_SPRINTF.
28139         * lib/stdio_.h (sprintf): New declaration.
28140         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
28141         REPLACE_SPRINTF.
28142
28143 2007-03-06  Bruno Haible  <bruno@clisp.org>
28144
28145         * modules/vsprintf-posix-tests: New file.
28146         * tests/test-vsprintf-posix.c: New file.
28147         * tests/test-sprintf-posix.h: New file.
28148
28149         * modules/vsprintf-posix: New file.
28150         * lib/vsprintf.c: New file.
28151         * m4/vsprintf-posix.m4: New file.
28152         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
28153         REPLACE_VSPRINTF.
28154         * lib/stdio_.h (vsprintf): New declaration.
28155         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
28156         REPLACE_VSPRINTF.
28157
28158 2007-03-06  Bruno Haible  <bruno@clisp.org>
28159
28160         * modules/vsnprintf (Depend-on): Remove minmax.
28161
28162 2007-03-06  Bruno Haible  <bruno@clisp.org>
28163
28164         * modules/snprintf-posix-tests: New file.
28165         * tests/test-snprintf-posix.c: New file.
28166
28167         * modules/snprintf-posix: New file.
28168         * m4/snprintf-posix.m4: New file.
28169         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
28170         gl_FUNC_SNPRINTF.
28171         (gl_FUNC_SNPRINTF): Invoke it.
28172         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
28173         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
28174         is set.
28175         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
28176
28177 2007-03-06  Bruno Haible  <bruno@clisp.org>
28178
28179         * modules/vsnprintf-posix-tests: New file.
28180         * tests/test-vsnprintf-posix.c: New file.
28181         * tests/test-snprintf-posix.h: New file.
28182
28183         * modules/vsnprintf-posix: New file.
28184         * m4/vsnprintf-posix.m4: New file.
28185         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
28186         gl_FUNC_VSNPRINTF.
28187         (gl_FUNC_VSNPRINTF): Invoke it.
28188         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
28189         * lib/stdio_.h (vsnprintf): Define as a replacement if
28190         REPLACE_VSNPRINTF is set.
28191         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
28192
28193 2007-03-06  Bruno Haible  <bruno@clisp.org>
28194
28195         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
28196         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
28197
28198 2007-03-06  Bruno Haible  <bruno@clisp.org>
28199
28200         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
28201         (asinl): Declare also if HAVE_DECL_ASINL is set.
28202         (atanl): Declare also if HAVE_DECL_ATANL is set.
28203         (ceill): Declare also if HAVE_DECL_CEILL is set.
28204         (cosl): Declare also if HAVE_DECL_COSL is set.
28205         (expl): Declare also if HAVE_DECL_EXPL is set.
28206         (floorl): Declare also if HAVE_DECL_FLOORL is set.
28207         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
28208         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
28209         (logl): Declare also if HAVE_DECL_LOGL is set.
28210         (sinl): Declare also if HAVE_DECL_SINL is set.
28211         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
28212         (tanl): Declare also if HAVE_DECL_TANL is set.
28213         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
28214         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
28215         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
28216         declaration of frexpl, ldexpl.
28217         * modules/printf-frexpl (Depends-on): Add math.
28218         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
28219
28220 2007-03-05  Bruno Haible  <bruno@clisp.org>
28221
28222         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
28223         frexpl and ldexpl are declared.
28224         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
28225
28226 2007-03-05  Bruno Haible  <bruno@clisp.org>
28227
28228         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
28229         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
28230
28231 2007-03-05  Bruno Haible  <bruno@clisp.org>
28232
28233         * lib/stdio_.h: Include <stddef.h>.
28234
28235 2007-03-05  Bruno Haible  <bruno@clisp.org>
28236
28237         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
28238
28239 2007-03-05  Bruno Haible  <bruno@clisp.org>
28240
28241         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
28242         NetBSD 4, from Ralf Wildenhues.
28243
28244 2007-03-04  Bruno Haible  <bruno@clisp.org>
28245
28246         * lib/vasprintf.h: Update #if logic for the case when the functions
28247         exist but are overridden.
28248
28249 2007-03-04  Bruno Haible  <bruno@clisp.org>
28250
28251         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
28252         implementations: glibc-2.4 and MacOS X 10.3.
28253         * tests/test-vasnprintf-posix.c (test_function): Test also the case
28254         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
28255         * tests/test-vasprintf-posix.c (test_function): Likewise.
28256
28257 2007-03-04  Bruno Haible  <bruno@clisp.org>
28258
28259         * modules/vasprintf-posix-tests: New file.
28260         * tests/test-vasprintf-posix.c: New file.
28261
28262         * modules/vasprintf-posix: New file.
28263         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
28264         defined.
28265         * m4/vasprintf-posix.m4: New file.
28266         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
28267         gl_FUNC_VASPRINTF.
28268         (gl_FUNC_VASPRINTF): Invoke it.
28269         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
28270         here.
28271         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
28272
28273 2007-03-04  Bruno Haible  <bruno@clisp.org>
28274
28275         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
28276         REPLACE_GETTIMEOFDAY.
28277         * modules/sys_time (Makefile.am): Likewise.
28278         * m4/sys_time_h.m4: Likewise.
28279         * m4/gettimeofday.m4: Likewise.
28280
28281 2007-03-04  Bruno Haible  <bruno@clisp.org>
28282
28283         * modules/vasnprintf-posix-tests: New file.
28284         * tests/test-vasnprintf-posix.c: New file.
28285
28286         * modules/vasnprintf-posix: New file.
28287         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
28288         printf-frexpl.h.
28289         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
28290         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
28291         REPLACE_VASNPRINTF is defined.
28292         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
28293         gl_FUNC_VASNPRINTF.
28294         (gl_FUNC_VASNPRINTF): Invoke it.
28295         * m4/vasnprintf-posix.m4: New file.
28296         * m4/printf.m4: New file.
28297
28298 2007-03-04  Bruno Haible  <bruno@clisp.org>
28299
28300         Compile progreloc.c only if --enable-relocatable is specified.
28301         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
28302         if --enable-relocatable was specified.
28303         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
28304         lib_SOURCES.
28305
28306 2007-03-04  Jim Meyering  <jim@meyering.net>
28307
28308         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
28309         Use it consistently, rather than enumerating errno constants.
28310
28311 2007-03-04  Bruno Haible  <bruno@clisp.org>
28312
28313         * modules/xvasprintf-tests: New file.
28314         * tests/test-xvasprintf.c: New file.
28315
28316         * modules/vasprintf-tests: New file.
28317         * tests/test-vasprintf.c: New file.
28318
28319         * modules/vasnprintf-tests: New file.
28320         * tests/test-vasnprintf.c: New file.
28321
28322         * modules/vsnprintf-tests: New file.
28323         * tests/test-vsnprintf.c: New file.
28324
28325         * modules/snprintf-tests: New file.
28326         * tests/test-snprintf.c: New file.
28327
28328 2007-03-04  Bruno Haible  <bruno@clisp.org>
28329
28330         Compile relocatable.c only if --enable-relocatable is specified.
28331         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
28332         gl_RELOCATABLE_LIBRARY.
28333         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
28334         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
28335         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
28336         gl_RELOCATABLE_LIBRARY.
28337         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
28338         (Makefile.am): Remove lib_SOURCES.
28339         * modules/relocatable-lib-lgpl (configure.ac): Invoke
28340         gl_RELOCATABLE_LIBRARY.
28341         (Makefile.am): Remove lib_SOURCES.
28342         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
28343         always.
28344         * modules/relocatable-prog-wrapper (configure.ac): Invoke
28345         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
28346
28347 2007-03-04  Bruno Haible  <bruno@clisp.org>
28348
28349         * modules/argmatch-tests: New file.
28350         * tests/test-argmatch.c: New file.
28351
28352         * tests/test-allocsa.c (main): Halve the number of loop runs.
28353
28354         * modules/alloca-opt-tests: New file.
28355         * tests/test-alloca-opt.c: New file.
28356
28357 2007-03-04  Jim Meyering  <jim@meyering.net>
28358
28359         Work around difference between Linux ACLs and Solaris 10 ZFS.
28360         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
28361         for EINVAL.
28362
28363 2007-03-03  Bruno Haible  <bruno@clisp.org>
28364
28365         * modules/relocatable-prog (Depends-on): Add back progreloc's
28366         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
28367
28368 2007-03-03  Bruno Haible  <bruno@clisp.org>
28369
28370         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
28371         * modules/relocatable-lib: New file.
28372
28373 2007-03-03  Bruno Haible  <bruno@clisp.org>
28374
28375         * modules/relocatable-prog: Renamed from modules/relocatable.
28376         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
28377
28378 2007-03-03  Bruno Haible  <bruno@clisp.org>
28379
28380         * modules/relocatable-script (Files): Add doc/relocatable.texi,
28381         m4/relocatable-lib.m4.
28382         (Depends-on): Remove 'relocatable'.
28383         (configure.ac): Add gl_RELOCATABLE_NOP.
28384
28385 2007-03-03  Bruno Haible  <bruno@clisp.org>
28386
28387         * modules/relocatable-prog-wrapper: New file.
28388         * modules/relocatable (Depends-on): Add it. Remove all other
28389         dependencies except progname.
28390         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
28391
28392         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
28393         (gl_FUNC_STRERROR): Nop.
28394         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
28395
28396         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
28397         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
28398
28399         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
28400         (gl_FUNC_READLINK): Update.
28401
28402         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
28403
28404 2007-03-03  Bruno Haible  <bruno@clisp.org>
28405
28406         * lib/xreadlink.c: Include <unistd.h> unconditionally.
28407         * modules/xreadlink (Depends-on): Add unistd.
28408         * modules/xreadlink-with-size (Depends-on): Likewise.
28409
28410 2007-03-03  Bruno Haible  <bruno@clisp.org>
28411
28412         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
28413         extracted from gt_FUNC_SETENV.
28414         (gt_FUNC_SETENV): Remove macro.
28415         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
28416         remove gt_FUNC_SETENV.
28417
28418 2007-03-03  Bruno Haible  <bruno@clisp.org>
28419
28420         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
28421         ENABLE_RELOCATABLE here.
28422         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
28423
28424 2007-03-03  Bruno Haible  <bruno@clisp.org>
28425
28426         * modules/rbtreehash-list-tests (Depends-on): Add progname.
28427         * tests/test-rbtreehash_list.c: Include progname.h.
28428         (main): Call set_program_name.
28429
28430         * modules/rbtree-oset-tests (Depends-on): Add progname.
28431         * tests/test-rbtree_oset.c: Include progname.h.
28432         (main): Call set_program_name.
28433
28434         * modules/rbtree-list-tests (Depends-on): Add progname.
28435         * tests/test-rbtree_list.c: Include progname.h.
28436         (main): Call set_program_name.
28437
28438         * modules/linked-list-tests (Depends-on): Add progname.
28439         * tests/test-linked_list.c: Include progname.h.
28440         (main): Call set_program_name.
28441
28442 2007-03-03  Bruno Haible  <bruno@clisp.org>
28443
28444         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
28445         All uses of __restrict changed to _Restrict_.
28446         * lib/glob_.h (__restrict): Remove macro.
28447
28448 2007-03-02  Bruno Haible  <bruno@clisp.org>
28449
28450         * modules/gettext (configure.ac): Require gettext infrastructure
28451         from version 0.16.1.
28452
28453 2007-03-02  Bruno Haible  <bruno@clisp.org>
28454
28455         * modules/linkedhash-list-tests (Depends-on): Add progname.
28456         * tests/test-linkedhash_list.c: Include progname.h.
28457         (main): Call set_program_name.
28458
28459         * modules/carray-list-tests (Depends-on): Add progname.
28460         * tests/test-carray_list.c: Include progname.h.
28461         (main): Call set_program_name.
28462
28463         * modules/avltreehash-list-tests (Depends-on): Add progname.
28464         * tests/test-avltreehash_list.c: Include progname.h.
28465         (main): Call set_program_name.
28466
28467         * modules/avltree-oset-tests (Depends-on): Add progname.
28468         * tests/test-avltree_oset.c: Include progname.h.
28469         (main): Call set_program_name.
28470
28471         * modules/avltree-list-tests (Depends-on): Add progname.
28472         * tests/test-avltree_list.c: Include progname.h.
28473         (main): Call set_program_name.
28474
28475         * modules/array-oset-tests (Depends-on): Add progname.
28476         * tests/test-array_oset.c: Include progname.h.
28477         (main): Call set_program_name.
28478
28479         * modules/array-list-tests (Depends-on): Add progname.
28480         * tests/test-array_list.c: Include progname.h.
28481         (main): Call set_program_name.
28482
28483         * modules/argp-tests (Depends-on): Add progname.
28484         * tests/test-argp.c: Include argp.h first. Include progname.h.
28485         (main): Call set_program_name.
28486
28487 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
28488
28489         * doc/gnulib-tool.texi (Initial import): Reword description of
28490         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
28491         limited effect even if defined after the first system include.
28492
28493 2007-03-01  Bruno Haible  <bruno@clisp.org>
28494
28495         * build-aux/config.libpath: Update to libtool-1.5.22.
28496         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
28497
28498 2007-03-01  Bruno Haible  <bruno@clisp.org>
28499
28500         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
28501         foo_CFLAGS.
28502         Reported by Ralf Wildenhues.
28503
28504 2007-03-01  Bruno Haible  <bruno@clisp.org>
28505
28506         * build-aux/install-reloc: Remove object files left over by some
28507         compilers.
28508         Reported by Ralf Wildenhues.
28509
28510 2007-03-01  Bruno Haible  <bruno@clisp.org>
28511
28512         * build-aux/install-reloc: Break long lines.
28513
28514 2007-03-01  Bruno Haible  <bruno@clisp.org>
28515
28516         * doc/relocatable.texi: Document that it may not work on OpenBSD.
28517         Reported by Ralf Wildenhues.
28518
28519 2007-03-01  Bruno Haible  <bruno@clisp.org>
28520
28521         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
28522         include ordering constraints.
28523
28524 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
28525
28526         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
28527         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
28528         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
28529         as another example.
28530         * lib/time_.h: Fix misspelling.
28531         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
28532         Require gl_HEADER_TIME_H_DEFAULTS.
28533         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
28534         * m4/time_r.m4 (gl_TIME_R): Likewise.
28535         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
28536
28537 2007-03-01  Bruno Haible  <bruno@clisp.org>
28538
28539         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
28540         * m4/utimens.m4 (gl_UTIMENS): Likewise.
28541
28542 2007-03-01  Jim Meyering  <jim@meyering.net>
28543
28544         * modules/xreadlink (Maintainer): Add my name.
28545         * modules/xreadlink-with-size (Depends-on): Alphabetize.
28546
28547 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
28548             Bruno Haible  <bruno@clisp.org>
28549
28550         * build-aux/install-reloc: Compile also c-ctype.c.
28551         * build-aux/relocatable.sh.in: New file.
28552         * doc/relocatable.texi: New file.
28553         * doc/relocatable-maint.texi: New file.
28554         * doc/gnulib.texi: Include relocatable-maint.texi.
28555         * lib/progreloc.c: Include unistd.h unconditionally.
28556         * lib/relocwrapper.c: Include unistd.h unconditionally.
28557         Include c-ctype.h.
28558         (add_dotbin): Use c_tolower.
28559         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
28560         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
28561         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
28562         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
28563         to m4/relocatable-lib.m4.
28564         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
28565         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
28566         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
28567         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
28568         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
28569         * modules/relocatable: New file.
28570         * modules/relocatable-lib: New file.
28571         * modules/relocatable-script: New file.
28572
28573 2007-02-28  Bruno Haible  <bruno@clisp.org>
28574
28575         Import --enable-relocatable infrastructure.
28576         * build-aux/config.libpath: New file, from GNU gettext.
28577         * build-aux/install-reloc: New file, from GNU gettext.
28578         * build-aux/reloc-ldflags: New file, from GNU gettext.
28579         * lib/relocatable.h: New file, from GNU gettext.
28580         * lib/relocatable.c: New file, from GNU gettext.
28581         * lib/relocwrapper.c: New file, from GNU gettext.
28582         * m4/relocatable.m4: New file, from GNU gettext.
28583
28584 2007-02-28  Bruno Haible  <bruno@clisp.org>
28585
28586         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
28587
28588         * modules/xreadlink: New file, from GNU gettext with modifications.
28589         * lib/xreadlink.c: New file, from GNU gettext.
28590         * lib/xreadlink.h: Add comments.
28591         (xreadlink): New declaration.
28592
28593         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
28594         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
28595         lib/xreadlink-with-size.c.
28596         (configure.ac): Remove gl_XREADLINK invocation.
28597         (Makefile.am): Augment lib_SOURCES.
28598         * m4/xreadlink.m4: Remove file.
28599         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
28600         (xreadlink_with_size): Renamed from xreadink.
28601         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
28602         * modules/canonicalize (Depends-on): Replace xreadlink with
28603         xreadlink-with-size.
28604         * lib/canonicalize.c (canonicalize_filename_mode): Update.
28605
28606 2007-02-25  Jim Meyering  <jim@meyering.net>
28607
28608         * build-aux/announce-gen: When complaining about excess arguments,
28609         list them.
28610
28611 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
28612
28613         * README: Document signed integer overflow situation more
28614         accurately.
28615
28616 2007-02-25  Bruno Haible  <bruno@clisp.org>
28617
28618         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
28619         'a' or 'A' conversion.
28620
28621 2007-02-25  Bruno Haible  <bruno@clisp.org>
28622
28623         * modules/filename: Renamed from modules/pathname.
28624         (Files): Replace lib/pathname.h with lib/filename.h. Replace
28625         lib/concatpath.c with lib/concat-filename.c.
28626         (Makefile.am): Update.
28627         (Include): Replace pathname.h with filename.h.
28628         * lib/filename.h: Renamed from lib/pathname.h.
28629         (concatenated_filename): Renamed from concatenated_pathname.
28630         * lib/concat-filename.c: Renamed from lib/concatpath.c.
28631         (concatenated_filename): Renamed from concatenated_pathname.
28632         * lib/findprog.c: Include filename.h instead of pathname.h.
28633         (find_in_path): Update.
28634         * lib/javacomp.c: Include filename.h instead of pathname.h.
28635         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
28636         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
28637         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
28638         is_oldgcj_14_13_usable, is_javac_usable): Update.
28639         * lib/javaexec.c: Include filename.h instead of pathname.h.
28640         (execute_java_class): Update.
28641         * modules/findprog: Update.
28642         * modules/javacomp: Update.
28643         * modules/javaexec: Update.
28644         * MODULES.html.sh (File system functions): Add 'filename', remove
28645         'pathname'.
28646
28647 2007-02-25  Bruno Haible  <bruno@clisp.org>
28648
28649         * modules/printf-frexpl-tests: New file.
28650         * tests/test-printf-frexpl.c: New file.
28651
28652         * modules/printf-frexpl: New file.
28653         * lib/printf-frexpl.h: New file.
28654         * lib/printf-frexpl.c: New file.
28655         * m4/printf-frexpl.m4: New file.
28656
28657 2007-02-25  Bruno Haible  <bruno@clisp.org>
28658
28659         * modules/printf-frexp-tests: New file.
28660         * tests/test-printf-frexp.c: New file.
28661
28662         * modules/printf-frexp: New file.
28663         * lib/printf-frexp.h: New file.
28664         * lib/printf-frexp.c: New file.
28665         * m4/printf-frexp.m4: New file.
28666
28667 2007-02-25  Bruno Haible  <bruno@clisp.org>
28668
28669         Assume automake >= 1.10 for the tests.
28670         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
28671         * modules/arctwo-tests: Likewise.
28672         * modules/argp-tests: Likewise.
28673         * modules/avltree-list-tests: Likewise.
28674         * modules/avltree-oset-tests: Likewise.
28675         * modules/avltreehash-list-tests: Likewise.
28676         * modules/carray-list-tests: Likewise.
28677         * modules/crc-tests: Likewise.
28678         * modules/des-tests: Likewise.
28679         * modules/gc-arcfour-tests: Likewise.
28680         * modules/gc-arctwo-tests: Likewise.
28681         * modules/gc-des-tests: Likewise.
28682         * modules/gc-hmac-md5-tests: Likewise.
28683         * modules/gc-hmac-sha1-tests: Likewise.
28684         * modules/gc-md2-tests: Likewise.
28685         * modules/gc-md4-tests: Likewise.
28686         * modules/gc-md5-tests: Likewise.
28687         * modules/gc-pbkdf2-sha1-tests: Likewise.
28688         * modules/gc-rijndael-tests: Likewise.
28689         * modules/gc-sha1-tests: Likewise.
28690         * modules/gc-tests: Likewise.
28691         * modules/getaddrinfo-tests: Likewise.
28692         * modules/hmac-md5-tests: Likewise.
28693         * modules/hmac-sha1-tests: Likewise.
28694         * modules/linked-list-tests: Likewise.
28695         * modules/linkedhash-list-tests: Likewise.
28696         * modules/lock-tests: Likewise.
28697         * modules/md2-tests: Likewise.
28698         * modules/md4-tests: Likewise.
28699         * modules/md5-tests: Likewise.
28700         * modules/rbtree-list-tests: Likewise.
28701         * modules/rbtree-oset-tests: Likewise.
28702         * modules/rbtreehash-list-tests: Likewise.
28703         * modules/read-file-tests: Likewise.
28704         * modules/rijndael-tests: Likewise.
28705         * modules/stdint-tests: Likewise.
28706         * modules/tls-tests: Likewise.
28707
28708 2007-02-24  Bruno Haible  <bruno@clisp.org>
28709
28710         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
28711         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
28712         function; instead check whether isnan with a double argument links.
28713         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
28714         function; instead check whether isnan with a 'long double' argument
28715         links.
28716         Reported by Eric Blake <ebb9@byu.net>.
28717
28718 2007-02-24  Bruno Haible  <bruno@clisp.org>
28719
28720         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
28721         defined.
28722         * lib/isnanl.c: Remove all code. Just include isnan.c.
28723         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
28724
28725 2007-02-25  Jim Meyering  <jim@meyering.net>
28726
28727         Avoid conflicting types for 'unsetenv' on FreeBSD.
28728         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
28729         conflicting with FreeBSD's (5.0 and 6.1) function declaration
28730         in stdlib.h.
28731
28732 2007-02-24  Bruno Haible  <bruno@clisp.org>
28733
28734         * modules/isnanl-nolibm-tests: New file.
28735         * tests/test-isnanl.c: New file.
28736
28737         * modules/isnanl-nolibm: New file.
28738         * lib/isnanl.h: New file.
28739         * lib/isnanl.c: New file.
28740         * m4/isnanl.m4: New file.
28741
28742 2007-02-24  Bruno Haible  <bruno@clisp.org>
28743
28744         * modules/isnan-nolibm-tests: New file.
28745         * tests/test-isnan.c: New file.
28746
28747         * modules/isnan-nolibm: New file.
28748         * lib/isnan.h: New file.
28749         * lib/isnan.c: New file.
28750         * m4/isnan.m4: New file.
28751
28752 2007-02-24  Bruno Haible  <bruno@clisp.org>
28753
28754         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
28755         assume that an exponent fits in 20 bits.
28756
28757 2007-02-24  Jim Meyering  <jim@meyering.net>
28758
28759         * m4/regex.m4: Update the description of the configure-time option,
28760         --without-included-regex, to state accurately what the defaults are,
28761         and perhaps to give people an idea why using this option is risky.
28762
28763 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
28764
28765         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
28766         loops on small arguments.  This attempts to avoid the problem
28767         Bruno Haible reported for AIX 4.3.2 in
28768         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
28769
28770 2007-02-23  Bruno Haible  <bruno@clisp.org>
28771
28772         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
28773         Needed for help2man.
28774
28775 2007-02-23  Karl Berry  <karl@gnu.org>
28776
28777         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
28778         exists, foo.h should be cvs-ignored, not committed.
28779
28780 2007-02-23  Eric Blake  <ebb9@byu.net>
28781
28782         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
28783         * lib/stat-time.h (includes): Likewise.
28784         * lib/utimecmp.c (includes): Likewise.
28785         * lib/utimens.h (includes): Likewise.
28786         * lib/getdate.y (includes): Also include "timespec.h" for use
28787         internal to the module.
28788         * modules/utimens (Depends-on): Revert yesterday's patch.
28789         * modules/nanosleep (Depends-on): Add missing dependency.
28790
28791 2007-02-22  Bruno Haible  <bruno@clisp.org>
28792
28793         * lib/glob.c: Don't include getlogin_r.h.
28794
28795 2007-02-22  Jim Meyering  <jim@meyering.net>
28796
28797         * modules/utimens (Depends-on): Add timespec, required for
28798         utimens.h's inclusion of timespec.h.
28799
28800 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
28801
28802         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
28803         long unreadable paths in GNU/Linux.  Problem reported by Andreas
28804         Schwab in
28805         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
28806         I'll try to think of a better way to fix the Solaris problem.
28807
28808         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
28809         like glibc; on Solaris 10, it fails with errno == EINVAL.
28810         POSIX says the behavior is unspecified if the first argument is NULL,
28811         so play it safe and never pass NULL to the system getcwd.
28812
28813 2007-02-21  Jim Meyering  <jim@meyering.net>
28814
28815         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
28816         of gettimeofday.  It would conflict with the one now always
28817         provided via sys_time_.h.  Reported by Matthew Woehlke, as
28818         an IRIX 6.5 build failure.
28819
28820 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
28821
28822         Minor fixups to port to Solaris 10 with Sun C 5.8.
28823         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
28824         * modules/getcwd (Depends-on): Add dirfd.
28825         * lib/putenv.c (putenv): #undef it.
28826         (rpl_putenv): New decl.
28827         (malloc, free): Include <stdlib.h> rather than prototyping separately.
28828
28829 2007-02-20  Bruno Haible  <bruno@clisp.org>
28830
28831         * modules/stdio-tests: New file.
28832         * tests/test-stdio.c: New file.
28833
28834         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
28835         (Depends-on): Add stdio.
28836         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
28837         (Include): Use <stdio.h> instead of vsnprintf.h.
28838         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
28839         HAVE_DECL_VSNPRINTF.
28840         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
28841
28842         * modules/snprintf (Files): Remove lib/snprintf.h.
28843         (Depends-on): Add stdio.
28844         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
28845         (Include): Use <stdio.h> instead of snprintf.h.
28846         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
28847         HAVE_DECL_SNPRINTF.
28848         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
28849         * lib/getaddrinfo.c: Likewise.
28850
28851         * modules/stdio: New file.
28852         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
28853         * lib/snprintf.h: Remove file.
28854         * lib/vsnprintf.h: Remove file.
28855         * lib/.cppi-disable: Remove snprintf.h.
28856         * m4/stdio_h.m4: New file.
28857         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
28858
28859 2007-02-20  Jim Meyering  <jim@meyering.net>
28860
28861         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
28862         used by e.g., mingw.  From Bruno Haible.
28863
28864 2007-02-19  Bruno Haible  <bruno@clisp.org>
28865
28866         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
28867         warnings.
28868         Reported by Ben Pfaff <blp@cs.stanford.edu>.
28869
28870 2007-02-19  Bruno Haible  <bruno@clisp.org>
28871
28872         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
28873         from mingw users.
28874
28875 2007-02-19  Bruno Haible  <bruno@clisp.org>
28876
28877         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
28878         warnings.
28879         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
28880
28881 2007-02-19  Jim Meyering  <jim@meyering.net>
28882
28883         Don't use FD after a successful "fdopendir (fd)".
28884         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
28885         Reset it by calling dirfd on the just-obtained DIR*.
28886
28887         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
28888         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
28889
28890 2007-02-18  Bruno Haible  <bruno@clisp.org>
28891
28892         * lib/readlink.c: Include <unistd.h>.
28893         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
28894         HAVE_READLINK.
28895         * modules/readlink (Depends-on): Add unistd.
28896         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28897         (Include): Add <unistd.h>.
28898
28899         * lib/getlogin_r.h: Remove file.
28900         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
28901         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
28902         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
28903         HAVE_DECL_GETLOGIN_R.
28904         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
28905         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28906         (Include): Use <unistd.h> instead of getlogin_r.h.
28907
28908         * lib/getcwd.h: Remove file.
28909         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
28910         * lib/xgetcwd.c: Likewise.
28911         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
28912         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
28913         * modules/getcwd (Files): Remove lib/getcwd.h.
28914         (Depends-on): Add unistd.
28915         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28916         (Include): Use <unistd.h> instad of getcwd.h.
28917
28918         * lib/ftruncate.c: Include <unistd.h> first.
28919         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
28920         Set HAVE_FTRUNCATE.
28921         * modules/ftruncate (Depends-on): Add unistd.
28922         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28923
28924         * lib/fchdir.c: Include <unistd.h> first.
28925         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
28926         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
28927         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
28928         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28929         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
28930
28931         * lib/dup2.c: Include <unistd.h> first.
28932         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
28933         HAVE_DUP2.
28934         * modules/dup2 (Depends-on): Add unistd.
28935         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28936
28937         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
28938         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
28939         REPLACE_CHOWN. Don't define chown as a macro here.
28940         * modules/chown (Depends-on): Add unistd.
28941         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
28942
28943         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
28944         Add definition for GL_LINK_WARNING.
28945         (chown, dup2): New declarations.
28946         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
28947         link warning.
28948         (ftruncate): New declaration.
28949         (getcwd): New declaration, taken from old getcwd.h.
28950         (getlogin_r): New declaration, taken from old getlogin_r.h.
28951         (readlink): New declaration.
28952         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
28953         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
28954         (gl_PREREQ_UNISTD): Remove macro.
28955         (gl_UNISTD_MODULE_INDICATOR): New macro.
28956         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
28957         many new variables. Don't set UNISTD_H.
28958         * modules/unistd (Description): Change.
28959         (Depends-on): Add link-warning.
28960         (configure.ac): Update.
28961         (Makefile.am): Create unistd.h always. Substitute many new variables
28962         into it.
28963
28964 2007-02-18  Bruno Haible  <bruno@clisp.org>
28965
28966         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
28967         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
28968         HAVE_GETSUBOPT.
28969         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
28970         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
28971         * lib/getsubopt.h: Remove file.
28972         * modules/getsubopt (Files): Remove lib/getsubopt.h.
28973         (Depends-on): Add stdlib.
28974         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
28975         (Includes): Use <stdlib.h> instead of getsubopt.h.
28976         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
28977         Set HAVE_GETSUBOPT.
28978         * lib/getsubopt.c: Don't include getsubopt.h.
28979
28980 2007-02-18  Bruno Haible  <bruno@clisp.org>
28981
28982         * modules/fchdir (Depends-on): Add dup2.
28983
28984 2007-02-18  Bruno Haible  <bruno@clisp.org>
28985
28986         * lib/stdlib_.h: Handle glibc's special invocation convention
28987         specially.
28988
28989 2007-02-18  Bruno Haible  <bruno@clisp.org>
28990
28991         * modules/stdlib-tests: New file.
28992         * tests/test-stdlib.c: New file.
28993
28994         * modules/mkstemp (Files): Remove lib/mkstemp.h.
28995         (Depends-on): Add stdlib.
28996         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
28997         (Includes): Use <stdlib.h> instead of mkstemp.h.
28998         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
28999         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
29000         * lib/mkstemp.c: Don't include mkstemp.h.
29001         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
29002         * lib/stdlib--.h: Don't include mkstemp.h.
29003
29004         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
29005         (Depends-on): Add stdlib.
29006         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
29007         (Includes): Use <stdlib.h> instead of mkdtemp.h.
29008         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
29009         HAVE_MKDTEMP.
29010         * lib/mkdtemp.c: Don't include mkdtemp.h.
29011         * lib/clean-temp.c: Don't include mkdtemp.h.
29012
29013         * modules/exit (Files): Remove lib/exit.h.
29014         (Depends-on): Add stdlib.
29015         (Makefile.am): Remove lib_SOURCES.
29016         (Include): Use <stdlib.h> instead of exit.h.
29017         * lib/argmatch.c: Don't include exit.h.
29018         * lib/execute.c: Likewise.
29019         * lib/pagealign_alloc.c: Likewise.
29020         * lib/pipe.c: Likewise.
29021         * lib/wait-process.c: Likewise.
29022         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
29023         * lib/exitfail.c: Likewise.
29024         * lib/savewd.c: Likewise.
29025         * lib/xsetenv.c: Likewise.
29026
29027         * modules/stdlib: New file.
29028         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
29029         and extra comments about mkstemp().
29030         * lib/exit.h: Remove file.
29031         * lib/mkdtemp.h: Remove file.
29032         * lib/mkstemp.h: Remove file.
29033         * m4/stdlib_h.m4: New file.
29034         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
29035
29036 2007-02-18  Bruno Haible  <bruno@clisp.org>
29037
29038         * modules/math-tests: New file.
29039         * tests/test-math.c: New file.
29040
29041         * modules/math: New file.
29042         * modules/mathl (Files): Remove lib/mathl.h.
29043         (Depends-on): Add math.
29044         (Makefile.am): Don't mention mathl.h.
29045         (Include): Use <math.h> instead of mathl.h.
29046         * lib/math_.h: New file.
29047         * lib/mathl.h: Remove file.
29048         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
29049         mathl.h.
29050         * lib/asinl.c: Likewise.
29051         * lib/atanl.c: Likewise.
29052         * lib/ceill.c: Likewise.
29053         * lib/cosl.c: Likewise.
29054         * lib/expl.c: Likewise.
29055         * lib/floorl.c: Likewise.
29056         * lib/frexpl.c: Likewise.
29057         * lib/ldexpl.c: Likewise.
29058         * lib/logl.c: Likewise.
29059         * lib/sincosl.c: Likewise.
29060         * lib/sinl.c: Likewise.
29061         * lib/sqrtl.c: Likewise.
29062         * lib/tanl.c: Likewise.
29063         * lib/trigl.c: Likewise.
29064         * m4/math_h.m4: New file.
29065         * MODULES.html.sh (Mathematics): Add math.
29066
29067 2007-02-17  Bruno Haible  <bruno@clisp.org>
29068
29069         * modules/wctype-tests: New file.
29070         * tests/test-wctype.c: New file.
29071
29072         * modules/wchar-tests: New file.
29073         * tests/test-wchar.c: New file.
29074
29075         * modules/unistd-tests: New file.
29076         * tests/test-unistd.c: New file.
29077
29078         * modules/time-tests: New file.
29079         * tests/test-time.c: New file.
29080
29081         * modules/sysexits-tests: New file.
29082         * tests/test-sysexits.c: New file.
29083
29084         * modules/sys_time-tests: New file.
29085         * tests/test-sys_time.c: New file.
29086
29087         * modules/sys_stat-tests: New file.
29088         * tests/test-sys_stat.c: New file.
29089
29090         * modules/sys_socket-tests: New file.
29091         * tests/test-sys_socket.c: New file.
29092
29093         * modules/sys_select-tests: New file.
29094         * tests/test-sys_select.c: New file.
29095
29096         * modules/string-tests: New file.
29097         * tests/test-string.c: New file.
29098
29099         * modules/stdbool-tests: New file.
29100         * tests/test-stdbool.c: New file.
29101
29102         * modules/netinet_in-tests: New file.
29103         * tests/test-netinet_in.c: New file.
29104
29105         * modules/inttypes-tests: New file.
29106         * tests/test-inttypes.c: New file.
29107
29108         * modules/fcntl-tests: New file.
29109         * tests/test-fcntl.c: New file.
29110
29111         * modules/byteswap-tests: New file.
29112         * tests/test-byteswap.c: New file.
29113
29114         * modules/arpa_inet-tests: New file.
29115         * tests/test-arpa_inet.c: New file.
29116
29117 2007-02-17  Bruno Haible  <bruno@clisp.org>
29118
29119         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
29120         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
29121         if the corresponding module is not enabled. Emit link warnings if
29122         the function is used nevertheless.
29123         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
29124         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
29125         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
29126         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
29127         * modules/inttypes (Depends-on): Add link-warning.
29128         (Makefile.am): Copy the contents of build-aux/link-warning.h into
29129         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
29130         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
29131         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
29132         * modules/imaxdiv (configure.ac): Likewise.
29133         * modules/strtoimax (configure.ac): Likewise.
29134         * modules/strtoumax (configure.ac): Likewise.
29135
29136 2007-02-17  Bruno Haible  <bruno@clisp.org>
29137
29138         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
29139         gl_STRING_MODULE_INDICATOR_DEFAULTS.
29140         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
29141         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
29142
29143 2007-02-17  Bruno Haible  <bruno@clisp.org>
29144
29145         * modules/link-warning: New file.
29146         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
29147         * lib/string_.h (GL_LINK_WARNING): Remove definition.
29148         * modules/string (Depends-on): Add link-warning.
29149         (Makefile.am): Copy the contents of build-aux/link-warning.h into
29150         string.h.
29151         * MODULES.html.sh (Support for building libraries and executables): Add
29152         link-warning.
29153
29154 2007-02-17  Bruno Haible  <bruno@clisp.org>
29155
29156         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
29157         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
29158         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
29159         long lines.
29160
29161 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
29162             Bruno Haible  <bruno@clisp.org>
29163
29164         * modules/tmpfile: New file.
29165         * lib/tmpfile.c: New file.
29166         * m4/tmpfile.m4: New file.
29167         * MODULES.html.sh (func_all_modules): New section "Input/output".
29168
29169 2007-02-15  Bruno Haible  <bruno@clisp.org>
29170
29171         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
29172         (supports_delete_on_close): New function.
29173         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
29174
29175 2007-02-14  Bruno Haible  <bruno@clisp.org>
29176
29177         * modules/mbspcasecmp-tests: New file.
29178         * tests/test-mbspcasecmp.sh: New file.
29179         * tests/test-mbspcasecmp.c: New file.
29180
29181         New module mbspcasecmp.
29182         * modules/mbspcasecmp: New file.
29183         * lib/mbspcasecmp.c: New file.
29184         * lib/string_.h (strncasecmp): Change warning message.
29185         (mbspcasecmp): New declaration.
29186         * m4/mbspcasecmp.m4: New file.
29187         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29188         GNULIB_MBSPCASECMP.
29189         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
29190         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
29191
29192 2007-02-14  Bruno Haible  <bruno@clisp.org>
29193
29194         * modules/mbsncasecmp-tests: New file.
29195         * tests/test-mbsncasecmp.sh: New file.
29196         * tests/test-mbsncasecmp.c: New file.
29197
29198         New module mbsncasecmp.
29199         * modules/mbsncasecmp: New file.
29200         * lib/mbsncasecmp.c: New file.
29201         * lib/string_.h (mbsncasecmp): New declaration.
29202         * m4/mbsncasecmp.m4: New file.
29203         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29204         GNULIB_MBSNCASECMP.
29205         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
29206         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
29207
29208 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
29209
29210         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
29211         Verify that it doesn't overlap with our flags.
29212         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
29213         do not have the desired effect in multibyte locales; instead, use
29214         mbscasecmp.
29215         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
29216         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
29217         we don't require GNU fnmatch ourselves (if our users require it, they
29218         should do so explicitly).
29219
29220         Fix regex code so it doesn't rely on strcasecmp.
29221         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
29222         Otherwise, include gnulib's langinfo.h.
29223         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
29224         undesirable behavior in non-C locales.  Instead, rely on localecharset.
29225         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
29226         * modules/regex (FILES): Remove m4/codeset.m4.
29227         (Depends-on): Add localcharset.  Remove strcase.
29228
29229 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29230
29231         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
29232         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
29233
29234 2007-02-13  Bruno Haible  <bruno@clisp.org>
29235
29236         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
29237         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29238
29239 2007-02-12  Bruno Haible  <bruno@clisp.org>
29240
29241         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
29242         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
29243         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
29244         time warning rather than a link error.
29245
29246 2007-02-12  Bruno Haible  <bruno@clisp.org>
29247
29248         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
29249         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
29250         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29251
29252 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
29253
29254         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
29255         args, not 2.
29256
29257 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
29258
29259         New module 'time', so that apps can include <time.h> as per
29260         POSIX and GNU instead of separate include files like time_r.h
29261         and timegm.h.  This implementation tries out a simpler approach
29262         for replacing decls in standard include files (as compared to
29263         the string module), somewhat as an experiment.
29264
29265         * config/srclist.txt: Comment out mktime.c for now.
29266         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
29267         since it doesn't apply any more.  Use generic wording instead.
29268         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
29269         'time'.
29270         * lib/time_.h, m4/time_h.m4, modules/time: New files.
29271         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
29272         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
29273         Don't include <sys/types.h>; no longer needed since we assume C89.
29274         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
29275         * lib/strftime.c: Likewise.
29276         * lib/time_r.c: Likewise.
29277         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
29278         * lib/nanosleep.c: Include <time.h> first, to check interface.
29279         * lib/strptime.c: Likewise.
29280         * lib/time_r.c: Likewise.
29281         * lib/timegm.c: Likewise.
29282         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
29283         needed.
29284         * lib/timegm.c: Don't include timegm.h; no longer needed.
29285         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
29286         time.h now handles any problems in that area.
29287         (struct timespec, nanosleep): Remove; time.h now arranges for these.
29288         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
29289         that time.h defines struct timespec.
29290         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
29291         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
29292         handles that.
29293         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
29294         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
29295         needed.  Set REPLACE_LOCALTIME.
29296         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
29297         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
29298         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
29299         nanosleep; time_h.m4 now does that.  Don't require
29300         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
29301         module handles this now.
29302         * modules/getdate (Depends-on): Remove timespec.  Add time.
29303         * modules/nanosleep (Depends-on): Likewise.
29304         * modules/stat-time (Depends-on): Likewise.
29305         * modules/nanosleep (Include): Include time.h, not timespec.h.
29306         * modules/strptime (Files): Remove lib/strptime.h.
29307         (Depends-on): Add extensions, time.
29308         (Include): Include time.h, not strptime.h.
29309         * modules/time_r (Files): Remove lib/time_r.h.
29310         (Depends-on): Add time.
29311         (Include): Include time.h, not time_r.h.
29312         * modules/timegm: Likewise.
29313         * modules/timespec (Description): Now does timespec-related decls
29314         of our own, instead of struct timespec itself.
29315         (Depends-on): Add time; remove extensions.
29316         (Maintainer): Add self.
29317         * modules/utimecmp (Depends-on): Add time; remove timespec.
29318         * modules/utimens (Depends-on): Likewise.
29319         * modules/xnanosleep (Depends-on): Likewise.
29320
29321 2007-02-11  Bruno Haible  <bruno@clisp.org>
29322
29323         * lib/c-strstr.c: Include allocsa.h.
29324         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
29325         * lib/c-strcasestr.c: Include allocsa.h.
29326         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
29327         * lib/strcasestr.c: Include allocsa.h.
29328         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
29329         * lib/mbsstr.c: Include allocsa.h.
29330         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
29331         allocsa/freesa instead of malloc/free.
29332         * lib/mbscasestr.c: Include allocsa.h.
29333         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
29334         allocsa/freesa instead of malloc/free.
29335         * modules/c-strstr (Depends-on): Add allocsa.
29336         * modules/c-strcasestr (Depends-on): Likewise.
29337         * modules/strcasestr (Depends-on): Likewise.
29338         * modules/mbsstr (Depends-on): Likewise.
29339         * modules/mbscasestr (Depends-on): Likewise.
29340
29341 2007-02-11  Bruno Haible  <bruno@clisp.org>
29342
29343         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
29344
29345         * modules/mbsspn-tests: New file.
29346         * tests/test-mbsspn.sh: New file.
29347         * tests/test-mbsspn.c: New file.
29348
29349 2007-02-11  Bruno Haible  <bruno@clisp.org>
29350
29351         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
29352
29353         * modules/mbspbrk-tests: New file.
29354         * tests/test-mbspbrk.sh: New file.
29355         * tests/test-mbspbrk.c: New file.
29356
29357 2007-02-11  Bruno Haible  <bruno@clisp.org>
29358
29359         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
29360         unneeded cast.
29361
29362         * modules/mbscspn-tests: New file.
29363         * tests/test-mbscspn.sh: New file.
29364         * tests/test-mbscspn.c: New file.
29365
29366 2007-02-11  Bruno Haible  <bruno@clisp.org>
29367
29368         * modules/mbscasecmp-tests: New file.
29369         * tests/test-mbscasecmp.sh: New file.
29370         * tests/test-mbscasecmp.c: New file.
29371
29372 2007-02-11  Bruno Haible  <bruno@clisp.org>
29373
29374         Ensure O(n) worst-case complexity of mbscasestr.
29375         * lib/mbscasestr.c: Include stdbool.h.
29376         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
29377         functions.
29378         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
29379         the bookkeeping indicates that it's worth it.
29380         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
29381
29382         * modules/mbscasestr-tests: New file.
29383         * tests/test-mbscasestr1.c: New file.
29384         * tests/test-mbscasestr2.sh: New file.
29385         * tests/test-mbscasestr2.c: New file.
29386         * tests/test-mbscasestr3.sh: New file.
29387         * tests/test-mbscasestr3.c: New file.
29388         * tests/test-mbscasestr4.sh: New file.
29389         * tests/test-mbscasestr4.c: New file.
29390         * m4/locale-tr.m4: New file.
29391
29392 2007-02-11  Bruno Haible  <bruno@clisp.org>
29393
29394         Ensure O(n) worst-case complexity of mbsstr.
29395         * lib/mbsstr.c: Include stdbool.h.
29396         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
29397         functions.
29398         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
29399         bookkeeping indicates that it's worth it.
29400         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
29401
29402         * modules/mbsstr-tests: New file.
29403         * tests/test-mbsstr1.c: New file.
29404         * tests/test-mbsstr2.sh: New file.
29405         * tests/test-mbsstr2.c: New file.
29406         * tests/test-mbsstr3.sh: New file.
29407         * tests/test-mbsstr3.c: New file.
29408         * m4/locale-fr.m4: New file.
29409
29410 2007-02-11  Bruno Haible  <bruno@clisp.org>
29411
29412         * lib/mbsrchr.c (mbsrchr): Fix bug.
29413
29414         * modules/mbsrchr-tests: New file.
29415         * tests/test-mbsrchr.sh: New file.
29416         * tests/test-mbsrchr.c: New file.
29417
29418 2007-02-11  Bruno Haible  <bruno@clisp.org>
29419
29420         * lib/mbschr.c (mbschr): Fix bug.
29421
29422         * modules/mbschr-tests: New file.
29423         * tests/test-mbschr.sh: New file.
29424         * tests/test-mbschr.c: New file.
29425         * m4/locale-zh.m4: New file.
29426
29427 2007-02-11  Bruno Haible  <bruno@clisp.org>
29428
29429         Support for copying multibyte string iterators.
29430         * lib/mbiter.h: Include <string.h>.
29431         (mbiter_multi_copy): New function.
29432         (mbi_copy): New macro.
29433         * lib/mbuiter.h: Include <string.h>.
29434         (mbuiter_multi_copy): New function.
29435         (mbui_copy): New macro.
29436
29437 2007-02-11  Bruno Haible  <bruno@clisp.org>
29438
29439         New module mbslen.
29440         * modules/mbslen: New file.
29441         * lib/mbslen.c: New file.
29442         * lib/string_.h (mbslen): New declaration.
29443         * m4/mbslen.m4: New file.
29444         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29445         GNULIB_MBSLEN.
29446         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
29447         * MODULES.html.sh (Internationalization functions): Add mbslen.
29448
29449 2007-02-11  Bruno Haible  <bruno@clisp.org>
29450
29451         Ensure O(n) worst-case complexity of strcasestr substitute.
29452         * lib/strcasestr.c: Include stdbool.h.
29453         (knuth_morris_pratt): New function.
29454         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
29455         bookkeeping indicates that it's worth it.
29456         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
29457
29458         * modules/strcasestr-tests: New file.
29459         * tests/test-strcasestr.c: New file.
29460
29461 2007-02-11  Bruno Haible  <bruno@clisp.org>
29462
29463         Ensure O(n) worst-case complexity of c_strcasestr.
29464         * lib/c-strcasestr.c: Include stdbool.h, string.h.
29465         (knuth_morris_pratt): New function.
29466         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
29467         the bookkeeping indicates that it's worth it.
29468         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
29469
29470         * modules/c-strcasestr-tests: New file.
29471         * tests/test-c-strcasestr.c: New file.
29472
29473 2007-02-11  Bruno Haible  <bruno@clisp.org>
29474
29475         Ensure O(n) worst-case complexity of c_strstr.
29476         * lib/c-strstr.c: Include stdbool.h, string.h.
29477         (knuth_morris_pratt): New function.
29478         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
29479         bookkeeping indicates that it's worth it.
29480         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
29481
29482         * lib/c-strstr.c: Complete rewrite for maintainability.
29483
29484         * modules/c-strstr-tests: New file.
29485         * tests/test-c-strstr.c: New file.
29486
29487 2007-02-11  Bruno Haible  <bruno@clisp.org>
29488
29489         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
29490         5.2.1 and earlier, whereby \055 was treated just like the range
29491         delimiter '-'.
29492         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
29493
29494 2007-02-08  Bruno Haible  <bruno@clisp.org>
29495
29496         * modules/regex (Depends-on): Add stdbool.
29497         Reported by Dalibor Topic <robilad@kaffe.org>.
29498
29499 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
29500
29501         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
29502         Prefer returning from main to exiting from it.
29503         Remove unnecessary parens after sizeof.
29504
29505 2007-02-05  Bruno Haible  <bruno@clisp.org>
29506
29507         New module mbssep.
29508         * modules/mbssep: New file.
29509         * lib/mbssep.c: New file.
29510         * lib/string_.h (strsep): Add a conditional link warning.
29511         (mbssep): New declaration.
29512         * m4/mbssep.m4: New file.
29513         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29514         GNULIB_MBSSEP.
29515         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
29516         * MODULES.html.sh (Internationalization functions): Add mbssep.
29517
29518 2007-02-05  Bruno Haible  <bruno@clisp.org>
29519
29520         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
29521         Optimize search in case of 1 delimiter.
29522
29523 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
29524
29525         * lib/acl.h: Include sys/types.h before sys/acl.h.
29526
29527 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
29528
29529         Merge upstream fix for glibc bugzilla #3957:
29530
29531         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
29532
29533         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
29534         bit for RE_HAT_LISTS_NOT_NEWLINE.
29535         (build_charclass_op): Remove bogus comment.
29536
29537 2007-02-05  Simon Josefsson  <simon@josefsson.org>
29538
29539         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
29540
29541 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
29542
29543         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
29544         * lib/memmem.c [!defined _LIBC]: Include config.h.
29545
29546 2007-02-04  Bruno Haible  <bruno@clisp.org>
29547
29548         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
29549         warning message.
29550
29551 2007-02-04  Bruno Haible  <bruno@clisp.org>
29552
29553         New module mbstok_r.
29554         * modules/mbstok_r: New file.
29555         * lib/mbstok_r.c: New file.
29556         * lib/string_.h (strtok_r): Change argument names to match the
29557         comments. Add a conditional link warning.
29558         (mbstok_r): New declaration.
29559         * m4/mbstok_r.m4: New file.
29560         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29561         GNULIB_MBSTOK_R.
29562         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
29563         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
29564
29565 2007-02-04  Bruno Haible  <bruno@clisp.org>
29566
29567         New module mbsspn.
29568         * modules/mbsspn: New file.
29569         * lib/mbsspn.c: New file.
29570         * lib/string_.h (strspn): Add a conditional link warning.
29571         (mbsspn): New declaration.
29572         * m4/mbsspn.m4: New file.
29573         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29574         GNULIB_MBSSPN.
29575         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
29576         * MODULES.html.sh (Internationalization functions): Add mbsspn.
29577
29578 2007-02-04  Bruno Haible  <bruno@clisp.org>
29579
29580         New module mbspbrk.
29581         * modules/mbspbrk: New file.
29582         * lib/mbspbrk.c: New file.
29583         * lib/string_.h (strpbrk): Add a conditional link warning.
29584         (mbspbrk): New declaration.
29585         * m4/mbspbrk.m4: New file.
29586         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29587         GNULIB_MBSPBRK.
29588         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
29589         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
29590
29591 2007-02-04  Bruno Haible  <bruno@clisp.org>
29592
29593         New module mbscspn.
29594         * modules/mbscspn: New file.
29595         * lib/mbscspn.c: New file.
29596         * lib/string_.h (strcspn): Add a conditional link warning.
29597         (mbscspn): New declaration.
29598         * m4/mbscspn.m4: New file.
29599         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29600         GNULIB_MBSCSPN.
29601         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
29602         * MODULES.html.sh (Internationalization functions): Add mbscspn.
29603
29604 2007-02-04  Bruno Haible  <bruno@clisp.org>
29605
29606         New module mbscasestr, reduced goal of strcasestr.
29607         * modules/mbscasestr: New file.
29608         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
29609         (mbscasestr): Renamed from strcasestr.
29610         * lib/strcasestr.c: Don't include mbuiter.h.
29611         (strcasestr): Remove support for multibyte locales.
29612         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
29613         Change the conditional link warning.
29614         (mbscasestr): New declaration.
29615         * m4/mbscasestr.m4: New file.
29616         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
29617         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
29618         REPLACE_STRCASESTR.
29619         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
29620         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
29621         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
29622         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
29623         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
29624         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
29625         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
29626         (Depends-on): Remove mbuiter.
29627         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
29628
29629 2007-02-04  Bruno Haible  <bruno@clisp.org>
29630
29631         Simplify handling of strncasecmp.
29632         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
29633         the conditional link warning.
29634         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
29635         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
29636         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
29637         * modules/strcase (configure.ac): Don't invoke
29638         gl_STRING_MODULE_INDICATOR.
29639         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
29640
29641 2007-02-04  Bruno Haible  <bruno@clisp.org>
29642
29643         New module mbscasecmp, reduced goal of strcasecmp.
29644         * modules/mbscasecmp: New file.
29645         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
29646         (mbscasecmp): Renamed from strcasecmp.
29647         * lib/strcasecmp.c: Don't include mbuiter.h.
29648         (strcasecmp): Remove support for multibyte locales.
29649         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
29650         Change the conditional link warning.
29651         (mbscasecmp): New declaration.
29652         * m4/mbscasecmp.m4: New file.
29653         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
29654         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
29655         REPLACE_STRCASECMP.
29656         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
29657         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29658         GNULIB_MBSCASECMP.
29659         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
29660         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
29661         * modules/strcase (Files): Remove m4/mbrtowc.m4.
29662         (Depends-on): Remove mbuiter.
29663         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
29664
29665 2007-02-04  Bruno Haible  <bruno@clisp.org>
29666
29667         New module mbsstr. Remove module strstr.
29668         * modules/mbsstr: New file.
29669         * modules/strstr: Remove file.
29670         * lib/mbsstr.c: Renamed from lib/strstr.c.
29671         (mbsstr): Renamed from strstr.
29672         * lib/string_.h (strstr): Remove declaration. Change the conditional
29673         link warning.
29674         (mbsstr): New declaration.
29675         * m4/mbsstr.m4: New file.
29676         * m4/strstr.m4: Remove file.
29677         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
29678         REPLACE_STRSTR.
29679         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
29680         Don't initialize GNULIB_STRSTR.
29681         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
29682         substitute GNULIB_STRSTR and REPLACE_STRSTR.
29683         * MODULES.html.sh (Internationalization functions): Add mbsstr.
29684         (Support for systems lacking ANSI C 89): Remove strstr.
29685
29686 2007-02-04  Bruno Haible  <bruno@clisp.org>
29687
29688         New module mbsrchr.
29689         * modules/mbsrchr: New file.
29690         * lib/mbsrchr.c: New file.
29691         * lib/string_.h (strrchr): Add a conditional link warning.
29692         (mbsrchr): New declaration.
29693         * m4/mbsrchr.m4: New file.
29694         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29695         GNULIB_MBSRCHR.
29696         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
29697         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
29698
29699 2007-02-04  Bruno Haible  <bruno@clisp.org>
29700
29701         New module mbschr.
29702         * modules/mbschr: New file.
29703         * lib/mbschr.c: New file.
29704         * lib/string_.h (strchr): Add a conditional link warning.
29705         (mbschr): New declaration.
29706         * m4/mbschr.m4: New file.
29707         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
29708         GNULIB_MBSCHR.
29709         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
29710         * MODULES.html.sh (Internationalization functions): Add mbschr.
29711
29712 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
29713
29714         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
29715
29716         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
29717
29718 2007-02-04  Bruno Haible  <bruno@clisp.org>
29719
29720         New module description section 'configure.ac-early'.
29721         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
29722         (func_get_autoconf_early_snippet): New function.
29723         (func_import, func_create_testdir): Use it. Remove special cases for
29724         modules 'extensions' and 'lock'.
29725         * modules/extensions (configure.ac-early): Require
29726         gl_USE_SYSTEM_EXTENSIONS.
29727         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
29728
29729 2007-02-04  Bruno Haible  <bruno@clisp.org>
29730
29731         Make use of gcj-4.3's -fsource and -ftarget option.
29732         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
29733         and if so try the options -fsource and -ftarget.
29734         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
29735         source_version, ftarget_option, target_version arguments.
29736         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
29737         (is_envjavac_oldgcj_14_14_usable): Renamed from
29738         is_envjavac_gcj_14_14_usable.
29739         (is_envjavac_oldgcj_14_13_usable): Renamed from
29740         is_envjavac_gcj_14_13_usable.
29741         (is_gcj_present): Update.
29742         (is_gcj_43, is_gcj43_usable): New functions.
29743         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
29744         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
29745         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
29746         try the options -fsource and -ftarget.
29747
29748 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
29749
29750         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
29751         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
29752         larger value.
29753
29754 2007-02-03  Jim Meyering  <jim@meyering.net>
29755
29756         Give tools a better chance to allocate space for very large buffers.
29757         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
29758
29759         Make pwd and readlink work also when run with an unreadable parent dir
29760         on systems with openat support.
29761         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
29762         provided getcwd function, even when we have openat support.
29763         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
29764
29765 2007-02-02  Bruno Haible  <bruno@clisp.org>
29766
29767         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
29768         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
29769         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
29770         portability problems if one of these functions is only used on specific
29771         platforms.
29772         Reported by Paul Eggert.
29773
29774 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
29775
29776         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
29777         is causing more trouble than it's curing.
29778         * lib/regex_internal.h (__mempcpy): Remove.
29779         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
29780         (and make the code a tad smaller to boot).
29781         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
29782
29783 2007-02-02  Jim Meyering  <jim@meyering.net>
29784
29785         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
29786         section, not in the Makefile.am: one.
29787
29788 2007-02-02  Eric Blake  <ebb9@byu.net>
29789
29790         * lib/strchrnul.c: Always include config.h first.
29791
29792         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
29793         gnulib strstr is not necessary here.
29794
29795 2007-02-02  Simon Josefsson  <simon@josefsson.org>
29796
29797         * m4/socklen.m4: Fix typo.
29798
29799 2007-02-02  Eric Blake  <ebb9@byu.net>
29800
29801         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
29802         * modules/netinet_in (Makefile.am): Likewise.
29803
29804 2007-02-01  Bruno Haible  <bruno@clisp.org>
29805
29806         * lib/string_.h (GL_LINK_WARNING): New macro.
29807         (strcasecmp, strstr, strcasestr): If provided by the system,
29808         conditionally define as a macro that leads to a warning instead of to
29809         an error.
29810         (strncasecmp): Conditionally define as a macro that leads to a warning.
29811
29812 2007-02-01  Karl Berry  <karl@gnu.org>
29813
29814         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
29815
29816 2007-02-01  Bruno Haible  <bruno@clisp.org>
29817
29818         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
29819         renamings.
29820
29821 2007-02-01  Eric Blake  <ebb9@byu.net>
29822
29823         * modules/regex (Depends-on): Revert dependence on mempcpy.
29824         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
29825         module's definition of mempcpy.
29826         Reported by Paul Eggert.
29827
29828 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
29829
29830         * lib/string_.h: If the gnulib module XYZ is not present, undefine
29831         the symbol XYZ before redefining it.  This fixes a problem with
29832         programs that don't use XYZ, when compiled on systems that define
29833         XYZ to something else.
29834
29835 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
29836
29837         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
29838         occurs when "mkdir -m foo" creates a setgid directory that is (1)
29839         writeable to group or other and (2) is intended to have a special
29840         mode bit that is set or cleared.  In such a case, the directory
29841         should be neither group- nor other-writeable until the special
29842         mode bits are right.
29843
29844 2007-01-31  Eric Blake  <ebb9@byu.net>
29845
29846         * modules/mountlist (Depends-on): Add strstr.
29847
29848         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
29849         bug.
29850         * modules/string (Makefile.am): Remove redundant replacement.
29851         * modules/regex (Depends-on): Add mempcpy.
29852
29853 2007-01-31  Bruno Haible  <bruno@clisp.org>
29854
29855         New module description field 'Link'.
29856         * gnulib-tool (func_usage): Document --extract-link-directive.
29857         (sed_extract_prog): Recognize 'Link' directive.
29858         (func_get_link_directive): New function.
29859         (func_import): Show summary of link directives.
29860         Handle --extract-link-directive option.
29861         * modules/acl (Link): New section.
29862         * modules/clock-time (Link): New section.
29863         * modules/euidaccess (Link): New section.
29864         * modules/gettext (Link): New section.
29865         * modules/iconv (Link): New section.
29866         * modules/lock (Link): New section.
29867         * modules/nanosleep (Link): New section.
29868         * modules/readline (Link): New section.
29869
29870 2007-01-27  Bruno Haible  <bruno@clisp.org>
29871
29872         Enforce the use of gnulib modules for unportable <string.h> functions.
29873         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
29874         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
29875         (gl_HEADER_STRING_H_BODY): Require it.
29876         * lib/string_.h: If the gnulib module XYZ is not present, redefine
29877         the symbol XYZ to one that gives a link error.
29878         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
29879         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
29880         * modules/mempcpy (configure.ac): Likewise.
29881         * modules/memrchr (configure.ac): Likewise.
29882         * modules/stpcpy (configure.ac): Likewise.
29883         * modules/stpncpy (configure.ac): Likewise.
29884         * modules/strcase (configure.ac): Likewise.
29885         * modules/strcasestr (configure.ac): Likewise.
29886         * modules/strchrnul (configure.ac): Likewise.
29887         * modules/strdup (configure.ac): Likewise.
29888         * modules/strndup (configure.ac): Likewise.
29889         * modules/strnlen (configure.ac): Likewise.
29890         * modules/strpbrk (configure.ac): Likewise.
29891         * modules/strsep (configure.ac): Likewise.
29892         * modules/strstr (configure.ac): Likewise.
29893         * modules/strtok_r (configure.ac): Likewise.
29894
29895 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
29896
29897         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
29898
29899 2007-01-30  Jim Meyering  <jim@meyering.net>
29900
29901         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
29902
29903 2007-01-29  Bruno Haible  <bruno@clisp.org>
29904
29905         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
29906         * lib/execute.c: Likewise.
29907         * lib/pipe.c: Likewise.
29908         * lib/printf-args.h: Likewise.
29909         * lib/printf-args.c: Likewise.
29910         * lib/printf-parse.c: Likewise.
29911         * lib/vasnprintf.c: Likewise.
29912
29913 2007-01-29  Eric Blake  <ebb9@byu.net>
29914
29915         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
29916         declaration.
29917
29918 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
29919
29920         * lib/strptime.h (strptime): Use 'restrict' for args where
29921         POSIX requires this.
29922         * lib/strptime.c (strptime): Likewise.
29923         Change license notice from LGPL to GPL, since gnulib-tool will
29924         change this as needed.
29925         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
29926         defined.
29927         Include "strptime.h" first, to check interface.
29928         Do not #undef _LIBC and _NL_CURRENT.
29929         Do not include <stdlib.h>; no longer needed.
29930         Include "time_r.h" and declare ptime_locale_status
29931         only if _LIBC is not defined.
29932         (__P): Remove unused macro.
29933         (match_string): Bring back glibc version, but use it only if _LIBC
29934         is defined.
29935         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
29936         Remove unnecessary assertion and abort() call.
29937         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
29938         * m4/strptime.m4: Fix serial number comment.
29939         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
29940         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
29941         (Depends-on): Add time_r.
29942
29943 2007-01-29  Bruno Haible  <bruno@clisp.org>
29944
29945         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29946         strptime.
29947         * modules/strptime (Depends-on): Add stdbool.
29948         * lib/strptime.h: Include <time.h> always. Add comments.
29949
29950 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29951
29952         * modules/strptime: New file.
29953         * lib/strptime.h: New file.
29954         * lib/strptime.c: New file.
29955         * m4/strptime.m4: New file.
29956
29957 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
29958
29959         * MODULES.html.sh: New module mpsort.
29960         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
29961
29962         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
29963         a circularity problem with HP-UX ia64 reported by Bob Proulx in
29964         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
29965         All uses changed.
29966         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
29967         All uses changed.
29968         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
29969         to _Restrict_.
29970         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
29971         the parameter matches the prototype.
29972
29973 2007-01-28  Jim Meyering  <jim@meyering.net>
29974
29975         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
29976         sys/time.h here, reverting that part of the previous patch:
29977         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
29978
29979 2007-01-28  Bruno Haible  <bruno@clisp.org>
29980
29981         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
29982         value of $(SYS_TIME_H).
29983         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
29984         remove it conditionally, too. [added by Jim Meyering]
29985         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
29986         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
29987         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
29988         GETTIMEOFDAY_REPLACEMENT to 1.
29989
29990 2007-01-28  Bruno Haible  <bruno@clisp.org>
29991
29992         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
29993         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
29994         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
29995         Set UNISTD_H instead of UNISTD_H2.
29996         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
29997
29998 2007-01-28  Bruno Haible  <bruno@clisp.org>
29999
30000         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
30001         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
30002
30003 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30004
30005         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
30006         (func_create_testdir): Ensure C locale for `grep' and `tr'
30007         character ranges.
30008         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
30009         ACLOCAL_AMFLAGS parsing state machine.
30010
30011 2007-01-27  Bruno Haible  <bruno@clisp.org>
30012
30013         * modules/unistr/base: Update.
30014
30015 2007-01-27  Bruno Haible  <bruno@clisp.org>
30016
30017         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
30018         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
30019         * modules/unistr/u32-mbtouc-unsafe: Renamed from
30020         modules/unistr/u32-mbtouc.
30021         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
30022         * lib/unistr.h: Update.
30023         * lib/linebreak.c: Update.
30024         * modules/unistr/u32-mbtouc: Renamed from
30025         modules/unistr/u32-mbtouc-safe.
30026         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
30027         * lib/unistr.h: Update.
30028         * lib/unistr/u32-to-u8.c: Update.
30029         * lib/unistr/u32-to-u16.c: Update.
30030
30031 2007-01-27  Bruno Haible  <bruno@clisp.org>
30032
30033         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
30034         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
30035         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
30036         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
30037         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
30038         * modules/unistr/u16-mbtouc-unsafe: Renamed from
30039         modules/unistr/u16-mbtouc.
30040         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
30041         * lib/unistr.h: Update.
30042         * lib/linebreak.c: Update.
30043         * modules/linebreak: Update.
30044         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
30045         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
30046         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
30047         * modules/unistr/u16-mbtouc: Renamed from
30048         modules/unistr/u16-mbtouc-safe.
30049         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
30050         * lib/unistr.h: Update.
30051         * lib/unistr/u16-to-u8.c: Update.
30052         * modules/unistr/u16-to-u8: Update.
30053         * lib/unistr/u16-to-u32.c: Update.
30054         * modules/unistr/u16-to-u32: Update.
30055
30056 2007-01-27  Bruno Haible  <bruno@clisp.org>
30057
30058         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
30059         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
30060         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
30061         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
30062         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
30063         * modules/unistr/u8-mbtouc-unsafe: Renamed from
30064         modules/unistr/u8-mbtouc.
30065         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
30066         * lib/unistr.h: Update.
30067         * lib/striconveh.c: Update.
30068         * modules/striconveh: Update.
30069         * lib/linebreak.c: Update.
30070         * modules/linebreak: Update.
30071         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
30072         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
30073         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
30074         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
30075         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
30076         * lib/unistr.h: Update.
30077         * lib/striconveh.c: Update.
30078         * modules/striconveh: Update.
30079         * lib/unistr/u8-to-u16.c: Update.
30080         * modules/unistr/u8-to-u16: Update.
30081         * lib/unistr/u8-to-u32.c: Update.
30082         * modules/unistr/u8-to-u32: Update.
30083
30084 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30085
30086         Sync from Libtool.
30087         * lib/argz.c: Do not include strings.h nor memory.h, include
30088         string.h unconditionally.  Patch by Simon Josefsson.
30089
30090 2007-01-27  Bruno Haible  <bruno@clisp.org>
30091
30092         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
30093         from gl_HEADER_STRING_H_BODY.
30094         (gl_HEADER_STRING_H_BODY): Require it.
30095         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
30096         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
30097         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
30098         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
30099         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
30100         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
30101         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
30102         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
30103         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
30104         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
30105         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
30106         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
30107         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
30108         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
30109         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
30110
30111 2007-01-27  Bruno Haible  <bruno@clisp.org>
30112
30113         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
30114         check_PROGRAMS into noinst_PROGRAMS.
30115         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
30116         check_PROGRAMS in this case.
30117         (func_import): Set for_test to false.
30118         (func_create_testdir): Set for_test to true.
30119
30120 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
30121             Bruno Haible  <bruno@clisp.org>
30122
30123         * modules/strcasestr (Files): Remove lib/strcasestr.h.
30124         (Depends-on): Add string.
30125         (Includes): Use <string.h> instead of strcasestr.h.
30126         * modules/string (Makefile.am): Also substitute the value of
30127         REPLACE_STRCASESTR.
30128         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
30129         assume strcasestr is declared in <string.h> not <strings.h>. Also
30130         set REPLACE_STRCASESTR.
30131         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
30132         REPLACE_STRCASESTR.
30133         * lib/strcasestr.h: Remove file.
30134         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
30135         * lib/string_.h (strcasestr): New declaration.
30136
30137 2007-01-27  Bruno Haible  <bruno@clisp.org>
30138
30139         * lib/string_.h: Use 'extern'.
30140
30141 2007-01-27  Jim Meyering  <jim@meyering.net>
30142
30143         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
30144         of set-but-not-used local, "q".
30145
30146         * lib/mempcpy.c: Include <config.h> before <string.h>.
30147         This fixes a compilation error on HP-UX, due to the system's
30148         "restrict"-using mempcpy prototype.
30149
30150 2007-01-26  Bruno Haible  <bruno@clisp.org>
30151
30152         Small optimization.
30153         * lib/javacomp.c: Include c-strstr.h.
30154          (is_envjavac_gcj): Use c_strstr instead of strstr.
30155         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
30156
30157 2007-01-26  Bruno Haible  <bruno@clisp.org>
30158
30159         * MODULES.html.sh (Unicode string functions): Add the new modules.
30160
30161         * modules/uniconv/u32-strconv-to-locale: New file.
30162         * lib/uniconv/u32-strconv-to-locale.c: New file.
30163
30164         * modules/uniconv/u16-strconv-to-locale: New file.
30165         * lib/uniconv/u16-strconv-to-locale.c: New file.
30166
30167         * modules/uniconv/u8-strconv-to-locale: New file.
30168         * lib/uniconv/u8-strconv-to-locale.c: New file.
30169
30170         * modules/uniconv/u32-strconv-from-locale: New file.
30171         * lib/uniconv/u32-strconv-from-locale.c: New file.
30172
30173         * modules/uniconv/u16-strconv-from-locale: New file.
30174         * lib/uniconv/u16-strconv-from-locale.c: New file.
30175
30176         * modules/uniconv/u8-strconv-from-locale: New file.
30177         * lib/uniconv/u8-strconv-from-locale.c: New file.
30178
30179         * modules/uniconv/u32-strconv-to-enc: New file.
30180         * lib/uniconv/u32-strconv-to-enc.c: New file.
30181         * modules/uniconv/u32-strconv-to-enc-tests: New file.
30182         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
30183
30184         * modules/uniconv/u16-strconv-to-enc: New file.
30185         * lib/uniconv/u16-strconv-to-enc.c: New file.
30186         * lib/uniconv/u-strconv-to-enc.h: New file.
30187         * modules/uniconv/u16-strconv-to-enc-tests: New file.
30188         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
30189
30190         * modules/uniconv/u8-strconv-to-enc: New file.
30191         * lib/uniconv/u8-strconv-to-enc.c: New file.
30192         * modules/uniconv/u8-strconv-to-enc-tests: New file.
30193         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
30194
30195         * modules/uniconv/u32-strconv-from-enc: New file.
30196         * lib/uniconv/u32-strconv-from-enc.c: New file.
30197         * modules/uniconv/u32-strconv-from-enc-tests: New file.
30198         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
30199
30200         * modules/uniconv/u16-strconv-from-enc: New file.
30201         * lib/uniconv/u16-strconv-from-enc.c: New file.
30202         * modules/uniconv/u16-strconv-from-enc-tests: New file.
30203         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
30204
30205         * modules/uniconv/u8-strconv-from-enc: New file.
30206         * lib/uniconv/u8-strconv-from-enc.c: New file.
30207         * lib/uniconv/u-strconv-from-enc.h: New file.
30208         * modules/uniconv/u8-strconv-from-enc-tests: New file.
30209         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
30210
30211         * modules/uniconv/u32-conv-from-enc: New file.
30212         * lib/uniconv/u32-conv-from-enc.c: New file.
30213         * modules/uniconv/u32-conv-from-enc-tests: New file.
30214         * tests/uniconv/test-u32-conv-from-enc.c: New file.
30215
30216         * modules/uniconv/u16-conv-from-enc: New file.
30217         * lib/uniconv/u16-conv-from-enc.c: New file.
30218         * lib/uniconv/u-conv-from-enc.h: New file.
30219         * modules/uniconv/u16-conv-from-enc-tests: New file.
30220         * tests/uniconv/test-u16-conv-from-enc.c: New file.
30221
30222         * modules/uniconv/u8-conv-from-enc: New file.
30223         * lib/uniconv/u8-conv-from-enc.c: New file.
30224         * modules/uniconv/u8-conv-from-enc-tests: New file.
30225         * tests/uniconv/test-u8-conv-from-enc.c: New file.
30226
30227         * modules/uniconv/base: New file.
30228         * lib/uniconv.h: New file.
30229
30230 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
30231
30232         * doc/gnulib-tool.texi (Initial import): Update to match current
30233         behavior with strdup module.
30234         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
30235         * lib/memmem.h: Remove; all uses removed.  This is now done
30236         by <string.h>.
30237         * lib/mempcpy.h: Likewise.
30238         * lib/memrchr.h: Likewise.
30239         * lib/stpcpy.h: Likewise.
30240         * lib/stpncpy.h: Likewise.
30241         * lib/strcase.h: Likewise.
30242         * lib/strchrnul.h: Likewise.
30243         * lib/strdup.h: Likewise.
30244         * lib/strndup.h: Likewise.
30245         * lib/strnlen.h: Likewise.
30246         * lib/strpbrk.h: Likewise.
30247         * lib/strsep.h: Likewise.
30248         * lib/strstr.h: Likewise.
30249         * lib/strtok_r.h: Likewise.
30250         * lib/string_.h: New file.
30251         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
30252         Rely on <string.h> instead.
30253         * lib/canon-host.c: Likewise.
30254         * lib/chdir-long.c: Likewise.
30255         * lib/concatpath.c: Likewise.
30256         * lib/exclude.c: Likewise.
30257         * lib/fchdir.c: Likewise.
30258         * lib/getaddrinfo.c: Likewise.
30259         * lib/getcwd.c: Likewise.
30260         * lib/getsubopt.c: Likewise.
30261         * lib/glob.c: Likewise.
30262         * lib/hard-locale.c: Likewise.
30263         * lib/iconvme.c: Likewise.
30264         * lib/javacomp.c: Likewise.
30265         * lib/mempcpy.c: Likewise.
30266         * lib/memrchr.c: Likewise.
30267         * lib/regex_internal.h: Likewise.
30268         * lib/stpncpy.c: Likewise.
30269         * lib/strcasecmp.c: Likewise.
30270         * lib/strchrnul.c: Likewise.
30271         * lib/strdup.c: Likewise.
30272         * lib/striconv.c: Likewise.
30273         * lib/striconveh.c: Likewise.
30274         * lib/striconveha.c: Likewise.
30275         * lib/strncasecmp.c: Likewise.
30276         * lib/strndup.c: Likewise.
30277         * lib/strnlen.c: Likewise.
30278         * lib/strsep.c: Likewise.
30279         * lib/strstr.c: Likewise.
30280         * lib/strtok_r.c: Likewise.
30281         * lib/userspec.c: Likewise.
30282         * lib/w32spawn.h: Likewise.
30283         * lib/xstrndup.c: Likewise.
30284         * lib/mountlist.c (strstr): Remove decl.
30285         * m4/string_h.m4: New file.
30286         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
30287         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
30288         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
30289         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
30290         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
30291         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
30292         Set REPLACE_STRCASECMP if necessary.
30293         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
30294         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
30295         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
30296         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
30297         HAVE_DECL_STRDUP if necessary.
30298         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
30299         since gl_FUNC_STRNDUP does that now.
30300         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
30301         Check for decl here...
30302         (gl_PREREQ_STRNLEN): ... not here.
30303         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
30304         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
30305         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
30306         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
30307         necessary.
30308         * modules/string: New file.
30309         * modules/memmem (Files): Remove special-purpose include file.
30310         (Depends-on): Add string.
30311         (Include): Include <string.h>, not the removed file.
30312         * modules/mempcpy: Likewise.
30313         * modules/memrchr: Likewise.
30314         * modules/stpcpy: Likewise.
30315         * modules/stpncpy: Likewise.
30316         * modules/strcase: Likewise.
30317         * modules/strchrnul: Likewise.
30318         * modules/strdup: Likewise.
30319         * modules/strndup: Likewise.
30320         * modules/strnlen: Likewise.
30321         * modules/strpbrk: Likewise.
30322         * modules/strsep: Likewise.
30323         * modules/strstr: Likewise.
30324         * modules/strtok_r: Likewise.
30325         * tests/test-dirname.c: Don't include "strdup.h", since
30326         <string.h> now suffices.
30327         * tests/test-memmem.c: Don't include "memmem.h", since
30328         <string.h> now suffices.
30329
30330 2007-01-25  Bruno Haible  <bruno@clisp.org>
30331
30332         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
30333         *resultp is 0.
30334
30335         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
30336         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
30337         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
30338         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
30339
30340         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
30341         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
30342         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
30343         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
30344         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
30345         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
30346
30347 2007-01-24  Bruno Haible  <bruno@clisp.org>
30348
30349         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
30350         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
30351         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
30352         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
30353         gl_FUNC_FTS_CORE.
30354         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
30355         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
30356         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
30357         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
30358         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
30359         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
30360         gl_FUNC_FCHOWNAT.
30361         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
30362         gl_FUNC_STRFTIME.
30363         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
30364         Reported by Ralf Wildenhues.
30365
30366 2007-01-24  Bruno Haible  <bruno@clisp.org>
30367
30368         Drop AC_REQUIRE calls that are redundant with the module dependencies.
30369         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
30370         gl_GETADDRINFO.
30371         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
30372         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
30373         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
30374
30375 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
30376
30377         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
30378         Don't use 'exit'; just return from 'main'.
30379         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
30380
30381         * lib/fnmatch_.h: Readjust white space and comments to match
30382         glibc, to avoid spurious diffs.
30383
30384 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
30385
30386         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
30387         2004-12-01 change by Jakub Jelinek, since this code won't compile
30388         if !LIBC.  Problem reported by Bob Proulx.
30389
30390 2007-01-23  Bruno Haible  <bruno@clisp.org>
30391
30392         * lib/striconveh.c: Include c-strcaseeq.h.
30393         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
30394         * modules/striconveh (Depends-on): Add c-strcaseeq.
30395
30396 2007-01-23  Bruno Haible  <bruno@clisp.org>
30397
30398         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
30399
30400         * modules/c-strcaseeq: New file.
30401         * lib/c-strcaseeq.h: New file.
30402
30403         * modules/streq: New file.
30404         * lib/streq.h: New file.
30405
30406 2007-01-23  Bruno Haible  <bruno@clisp.org>
30407
30408         * modules/striconveha-tests: New file.
30409         * tests/test-striconveha.c: New file.
30410
30411         * lib/striconveha.h: Include <stdbool.h>.
30412         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
30413         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
30414         (mem_iconveha_notranslit): Renamed from mem_iconveha.
30415         (mem_iconveha): New function.
30416         (str_iconveha_notranslit): Renamed from str_iconveha.
30417         (str_iconveha): New function.
30418         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
30419         c-strcase.
30420
30421 2007-01-23  Bruno Haible  <bruno@clisp.org>
30422
30423         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
30424         encodings without forgiving before trying any encoding with handler.
30425         (str_iconveha): Try all encodings without forgiving before trying any
30426         encoding with handler.
30427
30428 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
30429
30430         Import the following changes from libc.
30431
30432         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
30433
30434         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
30435
30436         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
30437
30438         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
30439         normal_bracket label.
30440
30441         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
30442
30443         [BZ #361]
30444         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
30445         to normal_bracket after fetching the next character.
30446
30447 2007-01-22  Bruno Haible  <bruno@clisp.org>
30448
30449         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
30450         argument.
30451         * lib/striconveh.c (iconv_carefully_1): New function.
30452         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
30453         argument.
30454         (str_cd_iconveh): Update.
30455         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
30456         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
30457         * tests/test-striconveh.c (MAGIC): New macro.
30458         (new_offsets): New function.
30459         (main): Test call with and without offsets.
30460
30461 2007-01-22  Bruno Haible  <bruno@clisp.org>
30462
30463         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
30464         * modules/sys_select (Makefile.am): Likewise.
30465         * modules/sys_socket (Makefile.am): Likewise.
30466         * modules/sys_time (Makefile.am): Likewise.
30467
30468 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
30469
30470         * modules/gettimeofday (License): Change from GPL to LGPL, since
30471         gettimeofday is a library function.
30472
30473 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
30474
30475         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
30476
30477 2007-01-21  Bruno Haible  <bruno@clisp.org>
30478
30479         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
30480
30481 2007-01-21  Bruno Haible  <bruno@clisp.org>
30482
30483         * modules/striconveha: New file.
30484         * lib/striconveha.h: New file.
30485         * lib/striconveha.c: New file.
30486         * MODULES.html.sh (Internationalization functions): Add striconveha.
30487         * lib/striconv.c (str_iconv): Optimize the case of an empty input
30488         string.
30489         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
30490
30491 2007-01-21  Bruno Haible  <bruno@clisp.org>
30492
30493         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
30494         * lib/striconveh.c (str_iconveh): Likewise.
30495
30496 2007-01-21  Bruno Haible  <bruno@clisp.org>
30497
30498         * lib/striconveh.h (mem_iconveh): New declaration.
30499         * lib/striconveh.c (mem_iconveh): New function.
30500         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
30501
30502 2007-01-21  Bruno Haible  <bruno@clisp.org>
30503
30504         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
30505
30506         * lib/striconveh.h (mem_cd_iconveh): Change specification.
30507         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
30508         original result buffer.
30509         (str_cd_iconveh): Update.
30510         * tests/test-striconveh.c (main): Update.
30511
30512         * lib/striconv.h (mem_cd_iconv): Change specification.
30513         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
30514         result buffer.
30515         (str_cd_iconv): Update.
30516         * tests/test-striconv.c (main): Update.
30517
30518 2007-01-21  Bruno Haible  <bruno@clisp.org>
30519
30520         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
30521
30522 2007-01-20  Jim Meyering  <jim@meyering.net>
30523
30524         * lib/userspec.c (parse_with_separator): If a user or group string
30525         starts with "+", skip the corresponding name-to-ID look-up, since
30526         such a look-up must fail: user and group names may not include "+".
30527
30528 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
30529
30530         * lib/poll.c: Include sys/time.h and time.h unconditionally,
30531         since we now assume the sys_time module.
30532         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
30533         check for sys/time.h; no longer needed.
30534         * modules/poll (Depends-on): Depend on sys_time.
30535
30536 2007-01-18  Bruno Haible  <bruno@clisp.org>
30537
30538         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
30539         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
30540
30541         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
30542         gettimeofday.
30543
30544         * tests/test-gettimeofday.c: Include <time.h>.
30545         (dummy): Remove variable.
30546
30547         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
30548         gl_HEADER_SYS_TIME_H.
30549         (gl_HEADER_SYS_TIME_H): New macro.
30550
30551         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
30552         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
30553         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
30554         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
30555         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
30556         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
30557         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
30558         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
30559         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
30560         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
30561         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
30562
30563         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
30564         last change; it caused a compilation error when cross-compiling to
30565         Cygwin.
30566
30567 2007-01-18  Jim Meyering  <jim@meyering.net>
30568
30569         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
30570         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
30571         than the race-prone "test -d sys || mkdir sys".
30572         (configure.ac): Use AC_PROG_MKDIR_P.
30573         * modules/sys_select: Likewise.
30574         * modules/sys_socket: Likewise.
30575         * modules/sys_time: Likewise.
30576
30577 2007-01-18  Eric Blake  <ebb9@byu.net>
30578
30579         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
30580         replace gettimeofday.
30581         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
30582         name, to avoid infinite recursion.
30583
30584 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
30585
30586         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
30587         module sys_time.
30588         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
30589         assume timespec.h defines struct timeval.
30590         * lib/settime.c: Likewise.
30591         * lib/utimens.c: Likewise.
30592         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
30593         since we now assume the gettimeofday module.
30594         * lib/tempname.c (__gen_tempname): Likewise.
30595         * lib/gettimeofday.h: Remove.
30596         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
30597         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
30598         Include <time.h>, for 'time()'.
30599         (localtime_buffer_addr): Also use this workaround if
30600         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
30601         to simplify the uses.  All uses changed.
30602         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
30603         that #undef is inside {}, and 'const' follows type name consistently.
30604         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
30605         (gettimeofday): Do not use the maximum possible value for
30606         tv->tv_usec, since that might break usages other than ls.c.
30607         Instead, we'll leave ls.c alone.  This undoes today's patch
30608         by Bruno.  Add a compile-time warning for 1s-clock resolution;
30609         we've never observed the problem but might as well keep the
30610         canary.
30611         * lib/nanosleep.c: Include timespec.h first, for interface check.
30612         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
30613         now assume the sys_time module.
30614         * lib/tempname.c: Likewise.
30615         * lib/timespec.h: Likewise.
30616         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
30617         needed.
30618         * lib/strftime.c: Likewise.
30619         * lib/timespec.h: Likewise.
30620         * lib/posixtm.c: Include posixtm.h first, for interface check.
30621         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
30622         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
30623         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
30624         * lib/sys_time_.h: New file.
30625         * lib/timespec.h (struct timespec): Use long int, not long.
30626         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
30627         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
30628         Remove obsolescent call to AC_HEADER_TIME.
30629         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
30630         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
30631         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
30632         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
30633         Likewise.
30634         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
30635         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
30636         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
30637         into the sys_time module.  Check for gettimeofday just once.
30638         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
30639         for gettimeofday signature to just check the signature.  Merely
30640         compile it, since linking doesn't test signature.  Improve test for
30641         whether gettimeofday.o is actually needed.
30642         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
30643         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
30644         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
30645         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
30646         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
30647         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
30648         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
30649         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
30650         than worrying about sys/time.h.
30651         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
30652         Don't bother worrying about TIME_WITH_SYS_TIME.
30653         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
30654         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
30655         * m4/sys_time_h.m4: New file.
30656         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
30657         Don't include sys/time.h.  Return from main rather than exiting.
30658         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
30659         all uses changed.
30660         * modules/gethrxtime (Depends-on): Add sys_time.
30661         * modules/gettime (Depends-on): Likewise.
30662         * modules/gettimeofday (Depends-on): Likewise.
30663         * modules/nanosleep (Depends-on): Likewise.
30664         * modules/settime (Depends-on): Likewise.
30665         * modules/tempname (Depends-on): Likewise.
30666         * modules/utimens (Depends-on): Likewise.
30667         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
30668         (Include:) Change back to <sys/time.h>.
30669         (Maintainer:) Add self.
30670         * modules/sys_time: New file.
30671         * modules/tempname (Depends-on): Add gettimeofday.
30672         * tests/test-gettimeofday.c: Include <sys/time.h>
30673         rather than gettimeofday.h.
30674
30675 2007-01-17  Bruno Haible  <bruno@clisp.org>
30676
30677         * gnulib-tool (func_get_license): Revert last patch. Instead, let
30678         the license default to GPL.
30679         (func_create_testdir): Don't complain if a module is LGPL and its
30680         tests module depends on GPLed modules.
30681
30682 2007-01-17  Bruno Haible  <bruno@clisp.org>
30683
30684         * lib/gettimeofday.c (gettimeofday): Add code for the case
30685         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
30686         maximum possible value for tv->tv_usec, rather than the minimum one.
30687
30688 2005-10-08  Martin Lambers  <marlam@marlam.de>
30689 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
30690 2007-01-16  Bruno Haible  <bruno@clisp.org>
30691
30692         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
30693         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
30694         gl_FUNC_GETTIMEOFDAY.
30695         (Include): Add gettimeofday.h.
30696         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
30697         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
30698         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
30699         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
30700         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
30701         * lib/gettimeofday.h: New file.
30702         * lib/gettimeofday.c: Include <sys/timeb.h>.
30703         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
30704         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
30705         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
30706         fall back on time().
30707
30708         * tests/test-gettimeofday.c: New file.
30709         * modules/gettimeofday-tests: New file.
30710
30711 2007-01-16  Eric Blake  <ebb9@byu.net>
30712
30713         * modules/fnmatch (Depends-on): Depend on wchar.
30714         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
30715         * m4/fnmatch.m4: Likewise.
30716         * modules/mbchar (Makefile.am): Assume <wchar.h>.
30717         * m4/mbchar.m4: Likewise.
30718         * modules/mbswidth (Depends-on): Depend on wchar.
30719         * lib/mbswidth.c: Assume <wchar.h>.
30720         * m4/mbswidth.m4: Likewise.
30721         * modules/quotearg (Depends-on): Depend on wchar.
30722         * lib/quotearg.c: Assume <wchar.h>.
30723         * m4/quotearg.m4: Likewise.
30724         * modules/regex (Depends-on): Depend on wchar.
30725         * lib/regex_internal.h: Assume <wchar.h>.
30726         * m4/regex.m4: Likewise.
30727         * modules/stdint (Depends-on): Depend on wchar.
30728         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
30729         * m4/stdint.m4: Likewise.
30730         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
30731         * modules/strftime (Depends-on): Depend on wchar.
30732         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
30733         * modules/strtol (Depends-on): Depend on wchar.
30734         * lib/strtol.c: Assume <wchar.h>.
30735         * modules/wcwidth (Depends-on): Depend on wchar.
30736         * lib/wcwidth.h: Assume <wchar.h>.
30737         * m4/wcwidth.m4: Likewise.
30738
30739 2007-01-16  Bruno Haible  <bruno@clisp.org>
30740
30741         * modules/csharpexec-script: New, created from...
30742         * modules/csharpexec: ... this.
30743
30744 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
30745
30746         * modules/javaexec-script: New, created from...
30747         * modules/javaexec: ... this.
30748
30749 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
30750
30751         * modules/poll (Dependencies): Add sys_select.
30752
30753 2007-01-15  Jim Meyering  <jim@meyering.net>
30754
30755         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
30756         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
30757         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
30758         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
30759
30760 2007-01-15  Bruno Haible  <bruno@clisp.org>
30761
30762         * modules/striconveh: New file.
30763         * lib/striconveh.h: New file.
30764         * lib/striconveh.c: New file.
30765         * MODULES.html.sh (Internationalization functions): Add striconveh.
30766
30767         * modules/striconveh-tests: New file.
30768         * tests/test-striconveh.c: New file.
30769
30770 2007-01-15  Bruno Haible  <bruno@clisp.org>
30771
30772         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
30773         not from GNU libiconv or GNU libc.
30774
30775 2007-01-15  Bruno Haible  <bruno@clisp.org>
30776
30777         * doc/gnulib-intro.texi (Copyright): Explain the different license
30778         terms for module descriptions, autoconf macros, tests, documentation.
30779
30780 2007-01-14  Bruno Haible  <bruno@clisp.org>
30781
30782         * modules/striconv-tests: New file.
30783         * tests/test-striconv.c: New file.
30784
30785 2007-01-14  Bruno Haible  <bruno@clisp.org>
30786
30787         * modules/iconv-tests: New file.
30788         * tests/test-iconv.c: New file.
30789
30790 2007-01-14  Bruno Haible  <bruno@clisp.org>
30791
30792         * gnulib-tool (func_get_license): For test modules, use the license of
30793         the main module.
30794
30795 2007-01-14  Bruno Haible  <bruno@clisp.org>
30796
30797         * modules/iconv (Include): Clarify that <iconv.h> can only be included
30798         if iconv is found to exist.
30799
30800 2007-01-14  Bruno Haible  <bruno@clisp.org>
30801
30802         * modules/c-ctype-tests: New file.
30803         * tests/test-c-ctype.c: New file.
30804
30805 2007-01-14  Bruno Haible  <bruno@clisp.org>
30806
30807         * modules/binary-io-tests: New file.
30808         * tests/test-binary-io.sh: New file.
30809         * tests/test-binary-io.c: New file.
30810
30811 2007-01-14  Bruno Haible  <bruno@clisp.org>
30812
30813         * modules/array-oset-tests: New file.
30814         * tests/test-array_oset.c: New file.
30815
30816 2007-01-14  Bruno Haible  <bruno@clisp.org>
30817
30818         * modules/array-list-tests: New file.
30819         * tests/test-array_list.c: New file.
30820
30821 2007-01-14  Bruno Haible  <bruno@clisp.org>
30822
30823         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
30824         and make.
30825         Reported by Simon Josefsson in
30826         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
30827
30828 2007-01-14  Bruno Haible  <bruno@clisp.org>
30829
30830         * modules/allocsa-tests: New file.
30831         * tests/test-allocsa.c: New file.
30832
30833 2007-01-14  Bruno Haible  <bruno@clisp.org>
30834
30835         * modules/fchdir (Depends-on): Add absolute-header.
30836         * modules/unistd (Depends-on): Likewise.
30837
30838 2006-12-30  Bruno Haible  <bruno@clisp.org>
30839
30840         * modules/fchdir: New file.
30841         * modules/unistd (Files): Add lib/unistd_.h.
30842         (Makefile.am): Generate unistd.h from unistd_.h.
30843         * lib/fchdir.c: New file.
30844         * lib/dirent_.h: New file.
30845         * lib/unistd_.h: New file.
30846         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
30847         * m4/fchdir.m4: New file.
30848         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
30849         (gl_HEADER_UNISTD): Invoke it.
30850         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
30851         function.
30852         * lib/backupfile.c (opendir, closedir): Undefine.
30853         * lib/chown.c (open, close): Undefine.
30854         * lib/clean-temp.c (open, close): Undefine.
30855         * lib/copy-file.c (open, close): Undefine.
30856         * lib/execute.c (open, close): Undefine.
30857         * lib/fsusage.c (open, close): Undefine.
30858         * lib/gc-gnulib.c (open, close): Undefine.
30859         * lib/getcwd.c (opendir, closedir): Undefine.
30860         * lib/glob.c (opendir, closedir): Undefine.
30861         * lib/javacomp.c (open, close): Undefine.
30862         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
30863         * lib/openat-proc.c (open, close): Undefine.
30864         * lib/pagealign_alloc.c (open, close): Undefine.
30865         * lib/pipe.c (open, close): Undefine.
30866         * lib/progreloc.c (open, close): Undefine.
30867         * lib/savedir.c (opendir, closedir): Undefine.
30868         * lib/utime.c (open, close): Undefine.
30869         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
30870
30871 2007-01-10  Bruno Haible  <bruno@clisp.org>
30872
30873         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
30874
30875 2007-01-12  Eric Blake  <ebb9@byu.net>
30876
30877         Provide a robust <wchar.h>.  Further simplifications are now
30878         possible in other modules, but not included here.
30879         * modules/wchar: New module.
30880         * m4/wchar.m4: New file.
30881         * lib/wchar_.h: Likewise.
30882         * modules/mbchar (Depends-on): Depend on wchar, as the first use
30883         of the new module.
30884         * MODULES.html.sh (Extended multibyte and wide character utilities):
30885         New section.
30886
30887 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
30888
30889         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
30890         to a reasonable default for memory allocation.
30891         (xreadlink): Don't allocate a huge buffer, to work around a buggy
30892         file system that reports garbage st_size values for symlinks.
30893         Problem reported by Liyang Hu.
30894
30895 2007-01-11  Simon Josefsson  <simon@josefsson.org>
30896
30897         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
30898         Emacs .#* auto-save files).
30899
30900 2007-01-11  Bruno Haible  <bruno@clisp.org>
30901
30902         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
30903         directory.
30904
30905 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
30906
30907         Use @...@ consistently in lib/wctype_.h.
30908         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
30909         on it being set to 1 or 0.
30910         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
30911         go back to AC_SUBSTing it.
30912         * modules/wctype (Makefile.am): Undo previous change.
30913
30914 2007-01-10  Eric Blake  <ebb9@byu.net>
30915
30916         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
30917         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
30918         * modules/wctype (Makefile.am): Likewise.
30919         Reported by Chris McGuire.
30920
30921 2007-01-10  Jim Meyering  <jim@meyering.net>
30922
30923         fts.c: a small readability/maintainability improvement
30924         * lib/fts.c (fts_read): Make this code slightly more readable and
30925         maintainable by hoisting the "sp->fts_cur = p" assignments to
30926         immediately follow the statements that set P.  Derived from
30927         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
30928
30929 2007-01-10  Eric Blake  <ebb9@byu.net>
30930
30931         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
30932         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
30933         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
30934         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
30935         Reported by Chris McGuire.
30936
30937 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30938
30939         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
30940         in sed script.
30941
30942 2007-01-09  Bruno Haible  <bruno@clisp.org>
30943
30944         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
30945         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
30946         variables.
30947         (func_module): Use them.
30948
30949 2007-01-09  Bruno Haible  <bruno@clisp.org>
30950
30951         * modules/unistr/base: New file.
30952         * lib/unistr.h: New file.
30953
30954         * modules/unistr/u8-to-u16: New file.
30955         * lib/unistr/u8-to-u16.c: New file.
30956
30957         * modules/unistr/u8-to-u32: New file.
30958         * lib/unistr/u8-to-u32.c: New file.
30959
30960         * modules/unistr/u16-to-u8: New file.
30961         * lib/unistr/u16-to-u8.c: New file.
30962
30963         * modules/unistr/u16-to-u32: New file.
30964         * lib/unistr/u16-to-u32.c: New file.
30965
30966         * modules/unistr/u32-to-u8: New file.
30967         * lib/unistr/u32-to-u8.c: New file.
30968
30969         * modules/unistr/u32-to-u16: New file.
30970         * lib/unistr/u32-to-u16.c: New file.
30971
30972         * modules/unistr/u8-check: New file.
30973         * modules/unistr/u16-check: New file.
30974         * modules/unistr/u32-check: New file.
30975         * lib/unistr/u8-check.c: New file.
30976         * lib/unistr/u16-check.c: New file.
30977         * lib/unistr/u32-check.c: New file.
30978
30979         * modules/unistr/u8-chr: New file.
30980         * modules/unistr/u16-chr: New file.
30981         * modules/unistr/u32-chr: New file.
30982         * lib/unistr/u8-chr.c: New file.
30983         * lib/unistr/u16-chr.c: New file.
30984         * lib/unistr/u32-chr.c: New file.
30985
30986         * modules/unistr/u8-cmp: New file.
30987         * modules/unistr/u16-cmp: New file.
30988         * modules/unistr/u32-cmp: New file.
30989         * lib/unistr/u8-cmp.c: New file.
30990         * lib/unistr/u16-cmp.c: New file.
30991         * lib/unistr/u32-cmp.c: New file.
30992
30993         * modules/unistr/u8-cpy: New file.
30994         * modules/unistr/u16-cpy: New file.
30995         * modules/unistr/u32-cpy: New file.
30996         * lib/unistr/u8-cpy.c: New file.
30997         * lib/unistr/u16-cpy.c: New file.
30998         * lib/unistr/u32-cpy.c: New file.
30999         * lib/unistr/u-cpy.h: New file.
31000
31001         * modules/unistr/u8-cpy-alloc: New file.
31002         * modules/unistr/u16-cpy-alloc: New file.
31003         * modules/unistr/u32-cpy-alloc: New file.
31004         * lib/unistr/u8-cpy-alloc.c: New file.
31005         * lib/unistr/u16-cpy-alloc.c: New file.
31006         * lib/unistr/u32-cpy-alloc.c: New file.
31007         * lib/unistr/u-cpy-alloc.h: New file.
31008
31009         * modules/unistr/u8-endswith: New file.
31010         * modules/unistr/u16-endswith: New file.
31011         * modules/unistr/u32-endswith: New file.
31012         * lib/unistr/u8-endswith.c: New file.
31013         * lib/unistr/u16-endswith.c: New file.
31014         * lib/unistr/u32-endswith.c: New file.
31015         * lib/unistr/u-endswith.h: New file.
31016
31017         * modules/unistr/u8-mblen: New file.
31018         * modules/unistr/u16-mblen: New file.
31019         * modules/unistr/u32-mblen: New file.
31020         * lib/unistr/u8-mblen.c: New file.
31021         * lib/unistr/u16-mblen.c: New file.
31022         * lib/unistr/u32-mblen.c: New file.
31023
31024         * modules/unistr/u8-mbtouc: New file.
31025         * modules/unistr/u16-mbtouc: New file.
31026         * modules/unistr/u32-mbtouc: New file.
31027         * lib/unistr/u8-mbtouc.c: New file.
31028         * lib/unistr/u16-mbtouc.c: New file.
31029         * lib/unistr/u32-mbtouc.c: New file.
31030
31031         * modules/unistr/u8-mbtouc-safe: New file.
31032         * modules/unistr/u16-mbtouc-safe: New file.
31033         * modules/unistr/u32-mbtouc-safe: New file.
31034         * lib/unistr/u8-mbtouc-safe.c: New file.
31035         * lib/unistr/u16-mbtouc-safe.c: New file.
31036         * lib/unistr/u32-mbtouc-safe.c: New file.
31037
31038         * modules/unistr/u8-move: New file.
31039         * modules/unistr/u16-move: New file.
31040         * modules/unistr/u32-move: New file.
31041         * lib/unistr/u8-move.c: New file.
31042         * lib/unistr/u16-move.c: New file.
31043         * lib/unistr/u32-move.c: New file.
31044         * lib/unistr/u-move.h: New file.
31045
31046         * modules/unistr/u8-next: New file.
31047         * modules/unistr/u16-next: New file.
31048         * modules/unistr/u32-next: New file.
31049         * lib/unistr/u8-next.c: New file.
31050         * lib/unistr/u16-next.c: New file.
31051         * lib/unistr/u32-next.c: New file.
31052
31053         * modules/unistr/u8-prev: New file.
31054         * modules/unistr/u16-prev: New file.
31055         * modules/unistr/u32-prev: New file.
31056         * lib/unistr/u8-prev.c: New file.
31057         * lib/unistr/u16-prev.c: New file.
31058         * lib/unistr/u32-prev.c: New file.
31059
31060         * modules/unistr/u8-set: New file.
31061         * modules/unistr/u16-set: New file.
31062         * modules/unistr/u32-set: New file.
31063         * lib/unistr/u8-set.c: New file.
31064         * lib/unistr/u16-set.c: New file.
31065         * lib/unistr/u32-set.c: New file.
31066         * lib/unistr/u-set.h: New file.
31067
31068         * modules/unistr/u8-startswith: New file.
31069         * modules/unistr/u16-startswith: New file.
31070         * modules/unistr/u32-startswith: New file.
31071         * lib/unistr/u8-startswith.c: New file.
31072         * lib/unistr/u16-startswith.c: New file.
31073         * lib/unistr/u32-startswith.c: New file.
31074         * lib/unistr/u-startswith.h: New file.
31075
31076         * modules/unistr/u8-stpcpy: New file.
31077         * modules/unistr/u16-stpcpy: New file.
31078         * modules/unistr/u32-stpcpy: New file.
31079         * lib/unistr/u8-stpcpy.c: New file.
31080         * lib/unistr/u16-stpcpy.c: New file.
31081         * lib/unistr/u32-stpcpy.c: New file.
31082         * lib/unistr/u-stpcpy.h: New file.
31083
31084         * modules/unistr/u8-stpncpy: New file.
31085         * modules/unistr/u16-stpncpy: New file.
31086         * modules/unistr/u32-stpncpy: New file.
31087         * lib/unistr/u8-stpncpy.c: New file.
31088         * lib/unistr/u16-stpncpy.c: New file.
31089         * lib/unistr/u32-stpncpy.c: New file.
31090         * lib/unistr/u-stpncpy.h: New file.
31091
31092         * modules/unistr/u8-strcat: New file.
31093         * modules/unistr/u16-strcat: New file.
31094         * modules/unistr/u32-strcat: New file.
31095         * lib/unistr/u8-strcat.c: New file.
31096         * lib/unistr/u16-strcat.c: New file.
31097         * lib/unistr/u32-strcat.c: New file.
31098         * lib/unistr/u-strcat.h: New file.
31099
31100         * modules/unistr/u8-strchr: New file.
31101         * modules/unistr/u16-strchr: New file.
31102         * modules/unistr/u32-strchr: New file.
31103         * lib/unistr/u8-strchr.c: New file.
31104         * lib/unistr/u16-strchr.c: New file.
31105         * lib/unistr/u32-strchr.c: New file.
31106
31107         * modules/unistr/u8-strcmp: New file.
31108         * modules/unistr/u16-strcmp: New file.
31109         * modules/unistr/u32-strcmp: New file.
31110         * lib/unistr/u8-strcmp.c: New file.
31111         * lib/unistr/u16-strcmp.c: New file.
31112         * lib/unistr/u32-strcmp.c: New file.
31113
31114         * modules/unistr/u8-strcpy: New file.
31115         * modules/unistr/u16-strcpy: New file.
31116         * modules/unistr/u32-strcpy: New file.
31117         * lib/unistr/u8-strcpy.c: New file.
31118         * lib/unistr/u16-strcpy.c: New file.
31119         * lib/unistr/u32-strcpy.c: New file.
31120         * lib/unistr/u-strcpy.h: New file.
31121
31122         * modules/unistr/u8-strcspn: New file.
31123         * modules/unistr/u16-strcspn: New file.
31124         * modules/unistr/u32-strcspn: New file.
31125         * lib/unistr/u8-strcspn.c: New file.
31126         * lib/unistr/u16-strcspn.c: New file.
31127         * lib/unistr/u32-strcspn.c: New file.
31128         * lib/unistr/u-strcspn.h: New file.
31129
31130         * modules/unistr/u8-strdup: New file.
31131         * modules/unistr/u16-strdup: New file.
31132         * modules/unistr/u32-strdup: New file.
31133         * lib/unistr/u8-strdup.c: New file.
31134         * lib/unistr/u16-strdup.c: New file.
31135         * lib/unistr/u32-strdup.c: New file.
31136         * lib/unistr/u-strdup.h: New file.
31137
31138         * modules/unistr/u8-strlen: New file.
31139         * modules/unistr/u16-strlen: New file.
31140         * modules/unistr/u32-strlen: New file.
31141         * lib/unistr/u8-strlen.c: New file.
31142         * lib/unistr/u16-strlen.c: New file.
31143         * lib/unistr/u32-strlen.c: New file.
31144         * lib/unistr/u-strlen.h: New file.
31145
31146         * modules/unistr/u8-strmblen: New file.
31147         * modules/unistr/u16-strmblen: New file.
31148         * modules/unistr/u32-strmblen: New file.
31149         * lib/unistr/u8-strmblen.c: New file.
31150         * lib/unistr/u16-strmblen.c: New file.
31151         * lib/unistr/u32-strmblen.c: New file.
31152
31153         * modules/unistr/u8-strmbtouc: New file.
31154         * modules/unistr/u16-strmbtouc: New file.
31155         * modules/unistr/u32-strmbtouc: New file.
31156         * lib/unistr/u8-strmbtouc.c: New file.
31157         * lib/unistr/u16-strmbtouc.c: New file.
31158         * lib/unistr/u32-strmbtouc.c: New file.
31159
31160         * modules/unistr/u8-strncat: New file.
31161         * modules/unistr/u16-strncat: New file.
31162         * modules/unistr/u32-strncat: New file.
31163         * lib/unistr/u8-strncat.c: New file.
31164         * lib/unistr/u16-strncat.c: New file.
31165         * lib/unistr/u32-strncat.c: New file.
31166         * lib/unistr/u-strncat.h: New file.
31167
31168         * modules/unistr/u8-strncmp: New file.
31169         * modules/unistr/u16-strncmp: New file.
31170         * modules/unistr/u32-strncmp: New file.
31171         * lib/unistr/u8-strncmp.c: New file.
31172         * lib/unistr/u16-strncmp.c: New file.
31173         * lib/unistr/u32-strncmp.c: New file.
31174
31175         * modules/unistr/u8-strncpy: New file.
31176         * modules/unistr/u16-strncpy: New file.
31177         * modules/unistr/u32-strncpy: New file.
31178         * lib/unistr/u8-strncpy.c: New file.
31179         * lib/unistr/u16-strncpy.c: New file.
31180         * lib/unistr/u32-strncpy.c: New file.
31181         * lib/unistr/u-strncpy.h: New file.
31182
31183         * modules/unistr/u8-strnlen: New file.
31184         * modules/unistr/u16-strnlen: New file.
31185         * modules/unistr/u32-strnlen: New file.
31186         * lib/unistr/u8-strnlen.c: New file.
31187         * lib/unistr/u16-strnlen.c: New file.
31188         * lib/unistr/u32-strnlen.c: New file.
31189         * lib/unistr/u-strnlen.h: New file.
31190
31191         * modules/unistr/u8-strpbrk: New file.
31192         * modules/unistr/u16-strpbrk: New file.
31193         * modules/unistr/u32-strpbrk: New file.
31194         * lib/unistr/u8-strpbrk.c: New file.
31195         * lib/unistr/u16-strpbrk.c: New file.
31196         * lib/unistr/u32-strpbrk.c: New file.
31197         * lib/unistr/u-strpbrk.h: New file.
31198
31199         * modules/unistr/u8-strrchr: New file.
31200         * modules/unistr/u16-strrchr: New file.
31201         * modules/unistr/u32-strrchr: New file.
31202         * lib/unistr/u8-strrchr.c: New file.
31203         * lib/unistr/u16-strrchr.c: New file.
31204         * lib/unistr/u32-strrchr.c: New file.
31205
31206         * modules/unistr/u8-strspn: New file.
31207         * modules/unistr/u16-strspn: New file.
31208         * modules/unistr/u32-strspn: New file.
31209         * lib/unistr/u8-strspn.c: New file.
31210         * lib/unistr/u16-strspn.c: New file.
31211         * lib/unistr/u32-strspn.c: New file.
31212         * lib/unistr/u-strspn.h: New file.
31213
31214         * modules/unistr/u8-strstr: New file.
31215         * modules/unistr/u16-strstr: New file.
31216         * modules/unistr/u32-strstr: New file.
31217         * lib/unistr/u8-strstr.c: New file.
31218         * lib/unistr/u16-strstr.c: New file.
31219         * lib/unistr/u32-strstr.c: New file.
31220         * lib/unistr/u-strstr.h: New file.
31221
31222         * modules/unistr/u8-strtok: New file.
31223         * modules/unistr/u16-strtok: New file.
31224         * modules/unistr/u32-strtok: New file.
31225         * lib/unistr/u8-strtok.c: New file.
31226         * lib/unistr/u16-strtok.c: New file.
31227         * lib/unistr/u32-strtok.c: New file.
31228         * lib/unistr/u-strtok.h: New file.
31229
31230         * modules/unistr/u8-uctomb: New file.
31231         * modules/unistr/u16-uctomb: New file.
31232         * modules/unistr/u32-uctomb: New file.
31233         * lib/unistr/u8-uctomb.c: New file.
31234         * lib/unistr/u16-uctomb.c: New file.
31235         * lib/unistr/u32-uctomb.c: New file.
31236
31237         * MODULES.html.sh (Unicode string functions): Add the new modules.
31238
31239 2007-01-08  Bruno Haible  <bruno@clisp.org>
31240
31241         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
31242         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
31243         subdirectories.
31244
31245 2007-01-08  Karl Berry  <karl@gnu.org>
31246
31247         * doc/error.texi: mention that main() fns must set program_name
31248         when progname is used.
31249
31250 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
31251
31252         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
31253         WCTYPE_H is empty, for the benefit of builds from non-distclean
31254         directories.  Problem reported by Eric Blake in
31255         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
31256
31257 2007-01-08  Bruno Haible  <bruno@clisp.org>
31258
31259         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
31260         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
31261         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
31262         PROVIDE_CANONICALIZE_FILENAME_MODE.
31263         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
31264
31265 2007-01-08  Bruno Haible  <bruno@clisp.org>
31266
31267         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
31268         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
31269         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
31270         * lib/fts.c: Likewise.
31271         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
31272
31273 2006-12-25  Bruno Haible  <bruno@clisp.org>
31274
31275         * modules/utf8-ucs4-safe: New file.
31276         * lib/utf8-ucs4-safe.h: New file.
31277         * lib/unistr/utf8-ucs4-safe.c: New file.
31278
31279         * modules/utf16-ucs4-safe: New file.
31280         * lib/utf16-ucs4-safe.h: New file.
31281         * lib/unistr/utf16-ucs4-safe.c: New file.
31282
31283         * MODULES.html.sh (Unicode string functions): Add the new modules.
31284
31285 2007-01-08  Bruno Haible  <bruno@clisp.org>
31286
31287         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
31288         (Depends-on): Add unitypes.
31289         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
31290         (u8_mbtouc_aux): Move out to separate file.
31291         (u8_mbtouc): Use ucs4_t, uint8_t types.
31292         * lib/unistr/utf8-ucs4.c: New file.
31293
31294         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
31295         (Depends-on): Add unitypes.
31296         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
31297         (u16_mbtouc_aux): Move out to separate file.
31298         (u16_mbtouc): Use ucs4_t, uint16_t types.
31299         * lib/unistr/utf16-ucs4.c: New file.
31300
31301         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
31302         (Depends-on): Add unitypes.
31303         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
31304         (u8_uctomb_aux): Move out to separate file.
31305         (u8_uctomb): Use ucs4_t, uint8_t types.
31306         * lib/unistr/ucs4-utf8.c: New file.
31307
31308         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
31309         (Depends-on): Add unitypes.
31310         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
31311         (u16_uctomb_aux): Move out to separate file.
31312         (u16_uctomb): Use ucs4_t, uint16_t types.
31313         * lib/unistr/ucs4-utf16.c: New file.
31314
31315 2006-12-25  Bruno Haible  <bruno@clisp.org>
31316
31317         * modules/unitypes: New file.
31318         * lib/unitypes.h: New file.
31319         * MODULES.html.sh (func_all_modules): New section "Unicode string
31320         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
31321         this section. Add unitypes.
31322
31323 2007-01-08  Bruno Haible  <bruno@clisp.org>
31324
31325         Avoid variable names that conflict with those from libtool.
31326         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
31327         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
31328         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
31329         library_names_spec to acl_library_names_spec, hardcode_* to
31330         acl_hardcode_*.
31331         Reported by Ralf Wildenhues.
31332
31333 2007-01-08  Bruno Haible  <bruno@clisp.org>
31334
31335         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
31336         definition.
31337         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
31338         definition.
31339         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
31340         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
31341         definition.
31342         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
31343         definition.
31344         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
31345         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
31346         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
31347         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
31348         definition.
31349         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
31350         definition.
31351         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
31352         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
31353         GC_USE_<algorithm>.
31354         * lib/gc-libgcrypt.c: Likewise.
31355         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
31356         * modules/gc-arctwo (configure.ac): Likewise.
31357         * modules/gc-des (configure.ac): Likewise.
31358         * modules/gc-hmac-md5 (configure.ac): Likewise.
31359         * modules/gc-hmac-sha1 (configure.ac): Likewise.
31360         * modules/gc-md2 (configure.ac): Likewise.
31361         * modules/gc-md4 (configure.ac): Likewise.
31362         * modules/gc-md5 (configure.ac): Likewise.
31363         * modules/gc-random (configure.ac): Likewise.
31364         * modules/gc-rijndael (configure.ac): Likewise.
31365         * modules/gc-sha1 (configure.ac): Likewise.
31366
31367 2007-01-08  Bruno Haible  <bruno@clisp.org>
31368
31369         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
31370         macro definition.
31371         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
31372         definition.
31373         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
31374         definition.
31375         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
31376         * modules/fcntl-safer (configure.ac): Likewise.
31377         * modules/fopen-safer (configure.ac): Likewise.
31378         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
31379         GNULIB_FWRITEERROR macro definition.
31380
31381 2007-01-08  Bruno Haible  <bruno@clisp.org>
31382
31383         * m4/gnulib-common.m4: New file.
31384         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
31385         (func_get_filelist): Add m4/gnulib-common.m4.
31386
31387 2007-01-08  Bruno Haible  <bruno@clisp.org>
31388
31389         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
31390         command.
31391
31392 2007-01-08  Jim Meyering  <jim@meyering.net>
31393
31394         Use a more robust test for a "can't happen" condition.
31395         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
31396         narrowed the st_size value.  Presuming the "can't happen" condition
31397         is true, that narrowing could conceivably convert an invalid st_size
31398         value into a valid one.  Instead, use a change based on Matthew
31399         Woehlke's original patch.
31400
31401         Slight readability improvement: use an assert-like macro
31402         in place of literal "abort ()" uses.
31403         * lib/fts.c (fts_assert): Define.
31404         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
31405         Use this macro instead of a bare 'abort'.
31406
31407 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
31408
31409         Don't worry about using IRIX 5.3's wctype.h broken definitions;
31410         simply work around them.
31411         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
31412         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
31413         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
31414         declaring.
31415         Don't bother to define as macros, since the standard doesn't require it.
31416         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
31417         longer worry about IRIX 5.3.
31418         (HAVE_WCTYPE_CTMP_BUG): Remove.
31419
31420 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
31421
31422         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
31423         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
31424         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
31425         Problems reported by Georg Schwarz for IRIX 5.3.
31426
31427         * gnulib-tool (autoconf_minversion): Take the maximum version number
31428         found, not the minimum.  Problem reported by James Youngman.
31429
31430 2007-01-03  Karl Berry  <karl@gnu.org>
31431
31432         * doc/error.texi: new file, explaining interaction with progname.
31433         * doc/gnulib.texi: include it.  Update copyright.
31434
31435 2007-01-03  Simon Josefsson  <simon@josefsson.org>
31436
31437         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
31438         AC_CANONICAL_HOST, to improve autobuild outputs.
31439
31440 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
31441             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
31442
31443         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
31444         sockets, server sockets, and other file descriptors.  Count errors
31445         to compute the return value.  Reorder the code a bit to be easier
31446         to follow.  Don't set event bits that were not requested (except
31447         POLLERR and POLLHUP).
31448
31449 2007-01-01  Bruno Haible  <bruno@clisp.org>
31450
31451         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
31452
31453 2007-01-03  Jim Meyering  <jim@meyering.net>
31454
31455         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
31456
31457 2007-01-02  Bruno Haible  <bruno@clisp.org>
31458
31459         * modules/settime (Include): Require timespec.h.
31460         * modules/nanosleep (Include): Likewise.
31461
31462 2007-01-01  Bruno Haible  <bruno@clisp.org>
31463
31464         * gnulib-tool (func_emit_copyright_notice): Bump year.
31465         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
31466
31467 2007-01-01  Bruno Haible  <bruno@clisp.org>
31468
31469         Improve support for OpenBSD.
31470         * build-aux/config.rpath (libname_spec): Export.
31471         (library_names_spec): New variable. Export.
31472         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
31473         library_names_spec from the config.rpath output. Locate shared library
31474         through the name pattern in library_names_spec.
31475
31476 2007-01-01  Eric Blake  <ebb9@byu.net>
31477
31478         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
31479
31480 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
31481
31482         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
31483         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
31484         assume the C locale, and avoid an "eval" that could cause trouble.
31485         Problem with SORT reported by Bob Proulx.
31486
31487         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
31488         Define.  Trivial patch from Henning Nielsen Lund, originally
31489         sent to bug-grep@gnu.org today.
31490
31491 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
31492
31493         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
31494         struct stat.  Problem reported by Henning Nielsen Lund.
31495         * lib/acl.c: Include acl.h first, to check interface.  Don't
31496         bother to include sys/types.h and sys/stat.h again.
31497
31498 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
31499
31500         Import the following change from libc; problem reported by
31501         Sven Verdoolaege.
31502
31503         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
31504
31505         [BZ #1373]
31506         * lib/argp.h: Remove __NTH for __argp_usage inline function.
31507
31508 2006-12-28  Jim Meyering  <jim@meyering.net>
31509
31510         * build-aux/announce-gen: Do not assume that the package
31511         builds any of tar.gz, tar.bz2, and .xdelta files.
31512         Suggestion from Simon Josefsson.
31513
31514 2006-12-28  Simon Josefsson  <simon@josefsson.org>
31515
31516         * modules/announce-gen: New file.
31517
31518 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
31519
31520         * lib/mbchar.h: Just include <wctype.h>; the wctype module
31521         handles its gotchas now.
31522         * lib/mbswidth.c: Likewise.
31523         * lib/wcwidth.h: Likewise.
31524         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
31525         and iswcntrl; the wctype module does this stuff now.
31526         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
31527         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
31528         * modules/mbchar (Depends-on): Add wctype.
31529         * modules/mbswidth (Depends-on): Likewise.
31530         * modules/wcwidth (Depends-on): Likewise.
31531
31532 2006-12-27  Eric Blake  <ebb9@byu.net>
31533
31534         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
31535         module uses more than what <wctype.h> is required to provide.
31536
31537 2006-12-26  Eric Blake  <ebb9@byu.net>
31538
31539         * gnulib-tool (sed_extract_prog): Avoid space-tab.
31540
31541 2006-12-26  Eric Blake  <ebb9@byu.net>
31542
31543         * modules/absolute-header: New module.
31544         * modules/fcntl (Depends-on): Depend on it.
31545         * modules/inttypes (Depends-on): Likewise.
31546         * modules/stdint (Depends-on): Likewise.
31547         * modules/sys_stat (Depends-on): Likewise.
31548         * modules/wctype (Depends-on): Likewise.
31549         * MODULES.html.sh (Support for building libraries and
31550         executables): Document it.
31551
31552 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
31553
31554         * gnulib-tool (SED): Remove, undoing previous change.
31555         The problem was that it broke coreutils on Solaris, because
31556         "sed --posix" leaked into a makefile.
31557         (sed): New alias, if 'alias' and GNU sed.
31558
31559 2006-12-24  Jim Meyering  <jim@meyering.net>
31560
31561         Work around an fchownat bug in glibc-2.4:
31562         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
31563         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
31564         in spite of the -P option.
31565         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
31566         New macros.
31567         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
31568         * modules/openat (Files): Add lib/fchownat.c.
31569         * lib/openat.c (fchownat): Don't define here.  Move to...
31570         * lib/fchownat.c: ...this new file.
31571
31572 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
31573
31574         Fix bug reported by Bruno Haible in
31575         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
31576         where quotearg.c didn't compile on Mac OS X 10.2 because it
31577         lacks <wchar.h> and wint_t.
31578         * lib/wctype_.h (__wctype_wint_t): New type.
31579         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
31580         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
31581         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
31582         Arg is now of type __wctype_wint_t, not wint_t.
31583         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
31584         substitute HAVE_WINT_T.
31585         * modules/wctype (Files): Add m4/wint_t.m4.
31586         (wctype.h): Substitute HAVE_WINT_T.
31587
31588 2006-12-23  Bruno Haible  <bruno@clisp.org>
31589
31590         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
31591
31592 2006-12-23  Bruno Haible  <bruno@clisp.org>
31593
31594         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
31595         S_ISLNK.
31596         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
31597         mingw.
31598
31599 2006-12-22  Bruno Haible  <bruno@clisp.org>
31600
31601         * lib/copy-file.c: Include acl.h.
31602         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
31603         Close the file descriptors only after being done with copy_acl.
31604         * modules/copy-file (Depends-on): Add acl.
31605
31606 2006-12-22  Bruno Haible  <bruno@clisp.org>
31607
31608         * gnulib-tool (SED): New variable.
31609         Use $SED instead of sed everywhere.
31610
31611 2006-12-22  Bruno Haible  <bruno@clisp.org>
31612
31613         * modules/no-c++: New file.
31614         * m4/no-c++.m4: New file.
31615         * MODULES.html.sh (Support for building libraries and executables):
31616         Add no-c++.
31617
31618 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
31619
31620         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
31621         Include <limits.h>, and use its INT_MAX to rewrite the
31622         j loop so that it does not overflow 'int'.  Problem reported by
31623         Ralf Wildenhues in
31624         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
31625         Play it safe by shifting left by 1 rather than multiplying by 2,
31626         as GCC is less likely to optimize this away when the value
31627         is signed (when it assumes overflow leads to undefined behavior).
31628         Also, don't assume time_t uses two's complement.
31629
31630 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
31631
31632         * MODULES.html.sh: New module wctype.
31633         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
31634         * lib/fnmatch.c: Don't bother to include <wchar.h> before
31635         <wctype.h>, since the new wctype module should fix this.
31636         * lib/quotearg.c: Include <wctype.h> unconditionally, since
31637         the wctype module should arrange for it.
31638         * lib/regex_internal.h: Likewise.
31639         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
31640         since the wctype module should handle this now.
31641         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
31642         * modules/fnmatch (Depends-on): Add wctype.
31643         * modules/quotearg (Depends-on): Likewise.
31644         * modules/regex (Depends-on): Likewise.
31645
31646 2006-12-19  Bruno Haible  <bruno@clisp.org>
31647
31648         * lib/strdup.h [C++]: Wrap definitions in extern "C".
31649         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
31650
31651 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31652
31653         * modules/savewd (Depends-on): Fix dependency on fcntl.
31654
31655 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
31656
31657         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
31658         conforms to C99, rather than relying on the user's environment
31659         setting of STDINT_H.
31660
31661 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
31662         and Eric Blake  <ebb9@byu.net>
31663
31664         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
31665         This is more consistent with the other defines here.
31666         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
31667         Port to z/OS.  Problem reported by Paul Gilmartin.
31668         Change local vars to use gl_ prefix rather than ac_.
31669         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
31670         with other defines.
31671         * modules/double-slash-root: New module.
31672         * modules/dirname (Files): Remove m4/double-slash-root.m4.
31673         (Depends-on): Add double-slash-root.
31674         * MODULES.html.sh (File system functions): Mention new module.
31675
31676 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
31677
31678         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
31679         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
31680         This is for the benefit of gzip, which doesn't do i18n.
31681
31682 2006-12-12  Jim Meyering  <jim@meyering.net>
31683
31684         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
31685         Reported by Andreas Schwab <schwab@suse.de>.
31686
31687 2006-12-12  Bruno Haible  <bruno@clisp.org>
31688
31689         Merge these changes.
31690         2006-09-05  Bruno Haible  <bruno@clisp.org>
31691         * lib/iconvme.c (iconv_string): No need to save and restore errno when
31692         iconv_alloc succeeded.
31693         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
31694         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
31695         test for " && dest " at the end - dest is always != NULL there. Call
31696         iconv with 4xNULL arguments initially, to reset the state. Call iconv
31697         with 2xNULL arguments, also to flush the state storage. Handle the
31698         IRIX iconv behaviour. Realloc the final result, to throw away unused
31699         memory.
31700
31701 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
31702
31703         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
31704         and fchmodat unconditionally, since glibc 2.4 has them.
31705         Problem reported by Arkadiusz Miskiewicz.
31706
31707 2006-12-10  Bruno Haible  <bruno@clisp.org>
31708
31709         * gnulib-tool (func_import): Show the include files only for those
31710         modules that are copied and specified.
31711         Reported by Karl Berry.
31712
31713 2006-12-08  Jim Meyering  <jim@meyering.net>
31714
31715         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
31716         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
31717
31718         * build-aux/announce-gen: Add two new options, both optional:
31719         --bootstrap-tools=TOOL_LIST
31720               a comma-separated list of tools, e.g.,
31721               autoconf,automake,bison,gnulib
31722         --gnulib-snapshot-date=DATE
31723               if gnulib is in the bootstrap tool list,
31724               then report this as the snapshot date.
31725               If not specified, use the current date/time.
31726               If you specify a date here, be sure it's UTC.
31727
31728 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31729
31730         * tests/test-argp-2.sh: Fix test to match actual output.
31731         (func_compare): Fix sed script to be portable.
31732
31733 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
31734
31735         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
31736         workaround for this case.  It is not autoconfigured now; offhand
31737         it's hard to see how to autoconfigure it.
31738
31739 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
31740
31741         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
31742         a directory that is about to be chowned.  Such a directory's
31743         initial file permissions should permit the owner only and this
31744         should not be changed until after the chown, since the group and
31745         other bits would be incorrect if they granted permission before
31746         the chown.
31747
31748         Fix porting problem for iswctype reported by Georg Schwarz in:
31749         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
31750         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
31751         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
31752         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
31753         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
31754
31755 2006-12-03  Jim Meyering  <jim@meyering.net>
31756
31757         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
31758         p->fts_statp may not yet be defined.
31759         (fts_read): Instead, set it in the caller, once p->fts_statp is
31760         sure to be defined, and corresponds to a top-level directory.
31761         This bug made du -x fail.  Here's the coreutils test case:
31762         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
31763         Reported by Mike Frysinger.
31764
31765 2006-12-01  Jim Meyering  <jim@meyering.net>
31766
31767         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
31768         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
31769         Reported by Simon Josefsson.
31770
31771 2006-11-30  Jim Meyering  <jim@meyering.net>
31772
31773         * m4/warning.m4: Use the all-permissive copyright notice
31774         recommended by RMS (rather than LGPL).
31775         * m4/vararrays.m4: Likewise.
31776         * m4/flexmember.m4: Likewise.
31777
31778 2006-11-29  Bruno Haible  <bruno@clisp.org>
31779
31780         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
31781         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
31782         using +=.
31783         Reported by Simon Josefsson <simon@josefsson.org>.
31784
31785 2006-11-28  James Youngman <jay@gnu.org>
31786
31787         * README: Advise users that they might find the bug-gnulib@gnu.org
31788         and autotools-announce@gnu.org mailing lists useful.
31789
31790 2006-11-28  Bruno Haible  <bruno@clisp.org>
31791
31792         * m4/ptrdiff_max.m4: Remove file.
31793
31794 2006-11-21  Bruno Haible  <bruno@clisp.org>
31795
31796         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
31797         _AC_COMPUTE_INT.
31798         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
31799         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
31800         _AC_COMPUTE_INT.
31801         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
31802         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
31803         _AC_COMPUTE_INT.
31804         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
31805
31806 2006-11-28  Jim Meyering  <jim@meyering.net>
31807
31808         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
31809         warning from "gcc -Wshadow" about shadowing the builtin.
31810
31811 2006-11-27  Bruno Haible  <bruno@clisp.org>
31812
31813         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
31814         _AC_COMPUTE_INT.
31815         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
31816
31817 2006-11-27  Bruno Haible  <bruno@clisp.org>
31818             Paul Eggert  <eggert@cs.ucla.edu>
31819
31820         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
31821
31822 2006-11-26  Bruno Haible  <bruno@clisp.org>
31823
31824         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
31825         noinst_LTLIBRARIES.
31826
31827 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
31828             Bruno Haible  <bruno@clisp.org>
31829
31830         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
31831         if compiling with "gcc -ansi".
31832
31833 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
31834
31835         Fix some incompatibilities with gcc -ansi -pedantic.
31836         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
31837         if compiling pedantically with GCC, unless it's C99 or later.
31838         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
31839         it mishandles gcc -ansi -pedantic as well.
31840         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
31841         if gcc -pedantic.
31842         * lib/regexec.c (check_node_accept_bytes): Don't use auto
31843         initializers for struct if -pedantic, unless it's C99 or later.
31844
31845 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
31846
31847         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
31848         Don't close an fd more than once. Identical atimes indicate
31849         success, not failure.
31850
31851 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
31852
31853         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
31854
31855 2006-11-23  Jim Meyering  <jim@meyering.net>
31856
31857         * build-aux/announce-gen: New file.  From coreutils.
31858
31859 2006-11-22  Jim Meyering  <jim@meyering.net>
31860
31861         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
31862         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
31863         (fts_read): Use a temporary to narrow the overused st_size member
31864         before using it in a switch statement.  Reported by Matthew Woehlke.
31865
31866         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
31867         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
31868
31869 2006-11-20  Bruno Haible  <bruno@clisp.org>
31870
31871         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
31872         changequote instead of pairs of brackets.
31873         Reported by Andreas Schwab <schwab@suse.de>.
31874
31875 2006-11-21  Jim Meyering  <jim@meyering.net>
31876
31877         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
31878         so as to remain compatible with older compilers.
31879         Patch from Michael Deutschmann.
31880
31881 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
31882
31883         * MODULES.html.sh (File system functions): Add openat.
31884
31885         * lib/openat.h (rpl_fstatat): New macro, if
31886         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
31887         (fstatat): Define to rpl_fstatat under the same conditions,
31888         unless COMPILING_FSTATAT.
31889         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
31890         seems to have the bug.
31891         * lib/fstatat.c: New file.
31892         * modules/openat (Files): Add it.
31893
31894 2006-11-20  Bruno Haible  <bruno@clisp.org>
31895
31896         * Makefile: New file.
31897
31898 2006-11-20  Jim Meyering  <jim@meyering.net>
31899
31900         The beginnings of syntax-related checks for gnulib.
31901         * lib/Makefile: New file.
31902         * lib/t-idcache: New script.  Ensure that the two halves of
31903         idcache.c stay in sync.
31904
31905         * lib/idcache.c: Adjust comments in user- and group- portions to
31906         be more accurate, and to be consistent with one another.
31907
31908 2006-11-20  Jim Meyering  <jim@meyering.net>
31909
31910         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
31911         continue using the flexible array member (thus, this module performs
31912         half as many malloc calls), with the addition that...
31913         (getgroup, getuser): Consistently record a non-match via an empty
31914         "name" string, and map an empty string match to a NULL return value.
31915         * modules/idcache (Depends-on): Re-add flexmember.
31916
31917         * lib/idcache.c (getuser): Remove all uses of the register keyword.
31918         (getuidbyname, getgroup, getgidbyname): Likewise.
31919
31920         Use cleaner syntax: NULL rather than 0.
31921         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
31922
31923 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
31924
31925         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
31926         It mishandled the case where the group was missing.
31927         Problem reported by Greg Schafer.
31928         * modules/idcache: Likewise.
31929
31930 2006-11-18  Jim Meyering  <jim@meyering.net>
31931
31932         * check-module (%exempt_header): Add exception for some
31933         conditionally-included headers.
31934
31935         * modules/i-ring (Depends-on): Add verify.
31936         (License): Change to LGPL.
31937
31938 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
31939
31940         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
31941         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
31942         and inttostr.h.  Use snprintf rather than uinttostr, so that
31943         LGPLed code doesn't depend on GPLed.
31944
31945 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
31946
31947         * modules/inline (License): Change from GPL to LGPL.
31948
31949 2006-11-17  Jim Meyering  <jim@meyering.net>
31950
31951         * modules/d-type (License): Switch to LGPL.
31952
31953 2006-11-15  Bruno Haible  <bruno@clisp.org>
31954
31955         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
31956
31957 2006-11-15  Eric Blake  <ebb9@byu.net>
31958
31959         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
31960         the module dependency.
31961
31962 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31963             Bruno Haible  <bruno@clisp.org>
31964
31965         * gnulib-tool (func_create_testdir): Add license consistency check.
31966
31967 2006-11-15  Eric Blake  <ebb9@byu.net>
31968
31969         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
31970         random "(cached)" in configure output.
31971
31972 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31973
31974         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
31975         test for conforming inttypes.h is both announced and cached.
31976
31977         * MODULES.html.sh (seen_modules, seen_files): New variables.
31978         (func_module): Rewrite to use a few less gnulib-tool and sed
31979         invocations.  Avoid a couple of quadratic algorithms for ...
31980         (missed_modules, missed_files): ... these, with ...
31981         (func_append, func_tmpdir): ... these new functions, from
31982         gnulib-tool.  Analogously, install traps for cleanup.
31983
31984         * tests/test-gc.c (main): Remove unused variables.
31985         * tests/test-read-file.c: Include stdlib.h, for 'free'.
31986
31987 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
31988
31989         * modules/inttostr (License): Change to LGPL.
31990
31991 2006-11-14  Eric Blake  <ebb9@byu.net>
31992
31993         * modules/tempname (License): Change to LGPL.
31994
31995 2006-11-14  Eric Blake  <ebb9@byu.net>
31996
31997         * doc/functions.texi (Function Portability): *printf functions on
31998         Cygwin now understand all POSIX size specifiers.
31999
32000 2006-11-14  Bruno Haible  <bruno@clisp.org>
32001
32002         * modules/c-ctype (License): Change to LGPL.
32003
32004 2006-11-12  Bruno Haible  <bruno@clisp.org>
32005
32006         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
32007         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
32008         for GNOME libraries, for which the include files are installed in
32009         subdirectories of $prefix/include.
32010
32011 2006-11-12  Bruno Haible  <bruno@clisp.org>
32012
32013         * m4/lib-link.m4: Require at least autoconf-2.54.
32014         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
32015         name to underscores for the --with option.
32016
32017 2006-11-13  Bruno Haible  <bruno@clisp.org>
32018
32019         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
32020         the tests directory.
32021         Reported by Ralf Wildenhues.
32022
32023 2006-11-13  Bruno Haible  <bruno@clisp.org>
32024
32025         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
32026         (func_emit_initmacro_end): Undo the override here.
32027         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
32028         Works around the famous automake error in coreutils.
32029
32030 2006-11-13  Eric Blake  <ebb9@byu.net>
32031
32032         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
32033         element, not its node.
32034
32035 2006-11-12  Bruno Haible  <bruno@clisp.org>
32036
32037         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
32038         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
32039
32040 2006-11-12  Bruno Haible  <bruno@clisp.org>
32041
32042         * gnulib-tool: New option --local-symlink.
32043         (func_usage): Document it.
32044         (lsymbolic): New variable.
32045         (func_import, func_create_testdir): If --symlink was not specified,
32046         test whether --local-symlink was specified and the file comes from
32047         the local_gnulib_dir.
32048
32049 2006-11-12  Bruno Haible  <bruno@clisp.org>
32050
32051         * gnulib-tool (func_ln): New function.
32052         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
32053
32054 2006-11-12  Bruno Haible  <bruno@clisp.org>
32055
32056         Finish support for source files in subdirectories.
32057         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
32058         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
32059         AUTOMAKE_OPTIONS.
32060         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
32061
32062 2006-11-12  Bruno Haible  <bruno@clisp.org>
32063
32064         * gnulib-tool (func_get_automake_snippet): Synthesize also an
32065         EXTRA_lib_SOURCES augmentation.
32066         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
32067
32068 2006-11-12  Jim Meyering  <jim@meyering.net>
32069
32070         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
32071         file descriptors.  This also averts a failure on systems with
32072         native openat support when a traversed directory lacks "x" access.
32073         * lib/fts_.h: Include "i-ring.h"
32074         (struct FTS) [fts_fd_ring]: New member.
32075         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
32076         (FCHDIR): Add parentheses.
32077         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
32078         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
32079         When descending, rather than simply closing the previous
32080         fts_cwd_fd value, push that file descriptor onto the ring.
32081         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
32082         (fts_open): Initialize the new fd_ring member.
32083         (fts_close): Clear the ring.
32084         (fts_safe_changedir): When possible, use our new fd_ring to skip
32085         the diropen and fstat and dev/ino comparison that would normally
32086         accompany a virtual `chdir ("..")'.
32087
32088         * modules/fts (Depends-on): Add i-ring.
32089         * modules/i-ring: New module.
32090         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
32091         * m4/i-ring.m4: New file.
32092
32093 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32094
32095         * gnulib-tool (func_create_testdir): Fix replacement of
32096         `build-aux' in configure.ac.  Run autotools in gltests
32097         subdirectory.
32098         (func_create_testdir, func_create_megatestdir, test): There is
32099         no need for '--force' in most autotool invocations in a new
32100         tree.  Actually fail the whole test if any of the tools, or the
32101         configure or make stages fail.
32102
32103         Sync from Automake.
32104         * build-aux/gnupload: Revert last change.  Add pointer to upload
32105         instructions of the GNU Maintenance Instructions.
32106         Suggestion by Karl Berry.
32107
32108 2006-11-10  Jim Meyering  <jim@meyering.net>
32109
32110         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
32111
32112 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
32113
32114         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
32115         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
32116         (bind_textdomain_codeset) [! ENABLE_NLS]:
32117         Evaluate all the arguments.  That way, callers get compatible behavior
32118         if the arguments have side effects.  Also, it avoids some GCC
32119         diagnostics in some cases; Joel E. Denny reported problems when Bison
32120         was configured with --enable-gcc-warnigs.
32121
32122 2006-11-10  Jim Meyering  <jim@meyering.net>
32123
32124         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
32125         relevant options in CFLAGS (like -O, -fno-inline) are taken into
32126         account.
32127
32128 2006-11-10  Jim Meyering  <jim@meyering.net>
32129
32130         * modules/inline: New file/module.
32131         * modules/xalloc (Files): Remove m4/inline.m4.
32132         (Depends-on): Add inline, instead.
32133         * modules/oset: Likewise.
32134         * modules/list: Likewise.
32135
32136 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
32137
32138         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
32139         Problem reported by Matthew Woehlke.
32140
32141 2006-11-09  Bruno Haible  <bruno@clisp.org>
32142
32143         * lib/tempname.c (gen_tempname): Remove variant that invokes
32144         __gen_tempname.
32145         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
32146         __gen_tempname.
32147
32148 2006-11-08  Bruno Haible  <bruno@clisp.org>
32149
32150         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
32151         to 'yes' instead of 'cross-compiling'.
32152
32153 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
32154
32155         * lib/quotearg.h (quotearg_free): New decl.
32156         * lib/quotearg.c (quotearg_free): New function.
32157         (slot0, nslots, slotvec0, slotvec):
32158         Now file-scope so that quotearg_free can get at them.
32159
32160 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32161
32162         Sync from Automake.
32163         * build-aux/gnupload: Add missing 'gnu' to example URL.
32164         Report by Karl Berry.
32165
32166 2006-11-08  Bruno Haible  <bruno@clisp.org>
32167
32168         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
32169         Suggested by Paul Eggert.
32170
32171 2006-11-08  Jim Meyering  <jim@meyering.net>
32172
32173         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
32174         It's already included if !_LIBC.
32175         (fts_safe_changedir): Add a comment.
32176
32177 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
32178
32179         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
32180         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
32181         Matthew Woehlke.
32182
32183         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
32184         definitions up, to avoid colliding with change below.
32185         (static_inline) [HAVE_INLINE]: New macro.
32186         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
32187         Provide extern decls when !HAVE_INLINE.  Do not define unless
32188         static_inline is defined, either by us or by xmalloc.c.  Use
32189         static_inline rather than static inline.
32190         (XCALLOC): Optimize sizeof(T) = 1 case.
32191         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
32192
32193 2006-11-07  Bruno Haible  <bruno@clisp.org>
32194
32195         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
32196         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
32197         AC_C_INLINE.
32198         * modules/xalloc (Files): Add m4/inline.m4.
32199
32200 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32201
32202         * README: Fix typo.
32203         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
32204         (Miscellanous Notes): ...from this.
32205
32206 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
32207
32208         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
32209         Mention that offsetof should be used instead of sizeof.
32210         From Bruno Haible.
32211
32212 2006-11-07  Bruno Haible  <bruno@clisp.org>
32213
32214         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
32215
32216 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
32217
32218         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
32219         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
32220         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
32221         (gl_tree_add_before, gl_tree_add_after):
32222         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
32223         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
32224         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
32225         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
32226         (gl_linked_add_after, gl_linked_add_at): Likewise.
32227         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
32228         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
32229         (gl_tree_add_before, gl_tree_add_after): Likewise.
32230         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
32231         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
32232         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
32233
32234 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32235
32236         * lib/gl_oset.h: Use C comment style, not C++ comment style.
32237
32238 2006-11-06  Bruno Haible  <bruno@clisp.org>
32239
32240         * m4/inline.m4: New file.
32241         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
32242         * modules/list (Files): Add m4/inline.m4.
32243         * modules/oset (Files): Likewise.
32244
32245 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
32246
32247         * lib/idcache.c: Include <stddef.h>, for offsetof.
32248         (struct userid.name): Change from char * to a flexible array member.
32249         All uses changed.
32250         * modules/idcache (Depends-on): Add flexmember.
32251
32252         * MODULES.html.sh (Core language properties): New module flexmember.
32253         * modules/flexmember, m4/flexmember.m4: New files.
32254
32255         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
32256         inline functions that are identical with the old xnmalloc_inline,
32257         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
32258         that we can avoid some unnecessary integer multiplications and
32259         divisions in the common case where the element size is known at
32260         compile time.
32261         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
32262         needed.
32263         (xnboundedmalloc): Remove.
32264         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
32265         arguments, for consistency with rest of this header.
32266         (xcharalloc): Rewrite using XNMALLOC.
32267         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
32268         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
32269         versions have been moved to lib/xalloc.h and renamed to be the
32270         non-*_inline versions.
32271         (xmalloc, xrealloc): Implement without reference to the xnmalloc
32272         and xnrealloc functions, since those functions are now inline and
32273         now call us.
32274         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
32275         renaming described above.
32276         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
32277         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
32278         captures the dependency in AC_C_INLINE.
32279
32280         New module canonicalize-lgpl, proposed by Charles Wilson in
32281         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
32282         with a few small changes afterwards.
32283         * MODULES.html.sh (File system functions): New module
32284         canonicalize-lgpl.
32285         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
32286         and canonicalize_file_name.
32287         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
32288         * modules/canonicalize-lgpl: New files.
32289
32290 2006-11-05  Bruno Haible  <bruno@clisp.org>
32291
32292         * gnulib-tool (func_import, func_create_testdir): Create directories
32293         also for files in subdirectories of lib/.
32294
32295 2006-11-05  Bruno Haible  <bruno@clisp.org>
32296
32297         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
32298         ANSI C compliant.
32299
32300 2006-11-03  Bruno Haible  <bruno@clisp.org>
32301
32302         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
32303         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
32304         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
32305         (xnboundedmalloc): New inline function.
32306         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
32307         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
32308         xmalloc.
32309         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
32310         xmalloc.
32311         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
32312         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
32313         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
32314         xmalloc.
32315         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
32316         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
32317         xmalloc.
32318         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
32319         gl_tree_add_after): Use XMALLOC instead of xmalloc.
32320         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
32321         xmalloc.
32322         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
32323         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
32324         gl_tree_add_after): Use XMALLOC instead of xmalloc.
32325         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
32326         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
32327         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
32328         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
32329
32330 2006-11-03  Bruno Haible  <bruno@clisp.org>
32331
32332         * lib/c-ctype.h [C++]: Define functions without name mangling.
32333         * lib/fwriteerror.h [C++]: Likewise.
32334         * lib/gcd.h [C++]: Likewise.
32335         * lib/linebreak.h [C++]: Likewise.
32336
32337 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
32338
32339         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
32340         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
32341         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
32342         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
32343         Check for functions and headers just once.
32344         Check for declaration of canonicalize_file_name.
32345         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
32346
32347 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
32348
32349         * gnulib-tool (func_import): Fix typo in actioncmd.
32350
32351 2006-11-02  Bruno Haible  <bruno@clisp.org>
32352
32353         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
32354         newline sequence in the Makefile.am snippet as a space, like "make"
32355         does.
32356         Reported by Roger Persson <perrog@gmail.com>.
32357
32358 2006-11-01  Bruno Haible  <bruno@clisp.org>
32359
32360         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
32361         already declared in <string.h>.
32362         * lib/strcase.h (strncasecmp): Don't declare it if yes.
32363
32364 2006-11-01  Bruno Haible  <bruno@clisp.org>
32365
32366         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
32367         * lib/strcase.h: Include <string.h>.
32368         (strcasecmp): Define to rpl_strcasecmp here.
32369
32370 2006-11-01  Bruno Haible  <bruno@clisp.org>
32371
32372         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
32373
32374 2006-11-01  Eric Blake  <ebb9@byu.net>
32375
32376         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
32377
32378         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
32379
32380 2006-10-29  Bruno Haible  <bruno@clisp.org>
32381
32382         Make it compile in C++ mode.
32383         * lib/full-write.c (full_rw): Add a cast.
32384
32385 2006-11-01  Bruno Haible  <bruno@clisp.org>
32386
32387         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
32388         be POSIX compliant.
32389         Reported by Roger Persson <perrog@gmail.com>.
32390
32391 2006-11-01  Eric Blake  <ebb9@byu.net>
32392
32393         * lib/getopt_.h: Fix comments.
32394
32395 2006-10-31  Eric Blake  <ebb9@byu.net>
32396
32397         * modules/tmpdir (Depends-on): Add sys_stat.
32398         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
32399         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
32400         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
32401         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
32402         tempname.
32403
32404 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
32405
32406         Avoid some C++ diagnostics reported by Bruno Haible.
32407         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
32408         xmalloc.
32409         (quotearg_alloc): Use xcharalloc rather than xmalloc.
32410         (struct slotvec): Move to top level.
32411         (quotearg_n_options): Rewrite to avoid xmalloc.
32412         * lib/xalloc.h (xcharalloc): New function.
32413         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
32414         [defined __cplusplus]: Add function template that provides result
32415         type propagation.  This part of the change is from Bruno Haible.
32416
32417 2006-10-29  Bruno Haible  <bruno@clisp.org>
32418
32419         Make it compile in C++ mode.
32420         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
32421         * lib/strnlen1.c (strnlen1): Cast memchr result.
32422         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
32423         * lib/clean-temp.c (string_equals, string_hash): Add casts.
32424         (create_temp_dir): Rename local variable 'template'.
32425         (compile_csharp_using_sscli): Add cast.
32426         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
32427         * lib/findprog.c (find_in_path): Likewise.
32428         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
32429         * lib/wait-process.c (register_slave_subprocess): Likewise.
32430
32431 2006-10-22  Bruno Haible  <bruno@clisp.org>
32432
32433         * modules/tsearch: New file.
32434         * lib/tsearch.h: New file.
32435         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
32436         * m4/tsearch.m4: New file.
32437         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
32438
32439 2006-10-29  Eric Blake  <ebb9@byu.net>
32440
32441         * lib/arcfour.c: Assume config.h.
32442         * lib/arctwo.c: Likewise.
32443         * lib/base64.c: Likewise.
32444         * lib/check-version.c: Likewise.
32445         * lib/crc.c: Likewise.
32446         * lib/des.c: Likewise.
32447         * lib/gc-gnulib.c: Likewise.
32448         * lib/gc-libgcrypt.c: Likewise.
32449         * lib/gc-pbkdf2-sha1.c: Likewise.
32450         * lib/getaddrinfo.c: Likewise.
32451         * lib/getdelim.c: Likewise.
32452         * lib/getline.c: Likewise.
32453         * lib/hmac-md5.c: Likewise.
32454         * lib/hmac-sha1.c: Likewise.
32455         * lib/iconvme.c: Likewise.
32456         * lib/md2.c: Likewise.
32457         * lib/md4.c: Likewise.
32458         * lib/memxor.c: Likewise.
32459         * lib/read-file.c: Likewise.
32460         * lib/readline.c: Likewise.
32461         * lib/rijndael-alg-fst.c: Likewise.
32462         * lib/rijndael-api-fst.c: Likewise.
32463         * lib/xgetdomainname.c: Likewise.
32464
32465 2006-10-28  Eric Blake  <ebb9@byu.net>
32466
32467         * lib/xstrndup.c: Assume config.h.
32468
32469 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
32470
32471         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
32472         stat-macros.h is now for our own macros, whereas stat_h is for
32473         macros in the <sys/stat.h> name space.
32474         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
32475         (STAT_MACROS_H): Remove.
32476         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
32477         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
32478         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
32479         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
32480         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
32481         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
32482         Move these macros to ...
32483         * lib/stat_.h: here.  Don't include stat-macros.h.
32484         * lib/canonicalize.c: Don't include stat-macros.h.
32485         * lib/chown.c: Likewise.
32486         * lib/euidaccess.c: Likewise.
32487         * lib/file-type.c: Likewise.
32488         * lib/filemode.c: Likewise.
32489         * lib/glob.c: Likewise.
32490         * lib/isapipe.c: Likewise.
32491         * lib/lchown.c: Likewise.
32492         * lib/lstat.c: Likewise.
32493         * lib/mkdir-p.c: Likewise.
32494         * lib/rmdir.c: Likewise.
32495         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
32496         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
32497         unless mkdir isn't declared, to speed up 'configure'.
32498         Always create sys/stat.h, since it's unlikely any real sys/stat.h
32499         would define all the S_* symbols.
32500         * modules/canonicalize (Depends-on):
32501         Depend on sys_stat, not stat-macros.
32502         * modules/chown: Likewise.
32503         * modules/euidaccess: Likewise.
32504         * modules/filemode: Likewise.
32505         * modules/file-type: Likewise.
32506         * modules/glob: Likewise.
32507         * modules/isapipe: Likewise.
32508         * modules/lchown: Likewise.
32509         * modules/lstat: Likewise.
32510         * modules/mkancesdirs: Likewise.
32511         * modules/rmdir: Likewise.
32512         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
32513         * modules/modechange: Likewise.
32514         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
32515         (configure.ac): Remove gl_STAT_MACROS.
32516         * modules/sys_stat (Depends-on): Remove stat-macros.
32517
32518 2006-10-27  Bruno Haible  <bruno@clisp.org>
32519
32520         * m4/signed.m4: Remove file.
32521         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
32522         invocation.
32523         * modules/vasnprintf (Files): Remove m4/signed.m4.
32524
32525 2006-10-27  Bruno Haible  <bruno@clisp.org>
32526
32527         Update to GNU gettext 0.16.
32528         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
32529         m4/inttypes-h.m4, m4/signed.m4.
32530         * m4/gettext.m4: Update to GNU gettext 0.16.
32531         * m4/intl.m4: New file, from GNU gettext.
32532         * m4/intldir.m4: New file, from GNU gettext.
32533         * config/srclist.txt: Update
32534
32535 2006-10-27  Eric Blake  <ebb9@byu.net>
32536
32537         * MODULES.html.sh: Document tempname.
32538         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
32539         dependencies.
32540         (Files): Move lib/tempname.c...
32541         * modules/tempname: ...to this new module.
32542         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
32543         (gl_PREREQ_TEMPNAME): Move...
32544         * m4/tempname.m4: ...to this new file.
32545         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
32546         * modules/sys_stat (Depends-on): Add stat-macros.
32547         * lib/stat_.h (includes): Pick up stat macros.
32548         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
32549         if stat macros are broken.
32550         * lib/tempname.c (includes): No need to include "stat-macros.h".
32551         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
32552         (direxists, __path_search) [!_LIBC]: Don't compile these in
32553         gnulib; the tmpdir module covers that.
32554         * lib/tempname.h: New file.
32555
32556 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
32557
32558         * COPYING: Explain how gnulib-tool converts licence headers.
32559         Almost all wording by Eric Blake.
32560
32561 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
32562
32563         * lib/mbchar.h (is_basic_table): Make read-only.
32564         * lib/mbchar.c (is_basic_table): Likewise.
32565         Reported by John Darrington.
32566
32567 2006-10-25  Bruno Haible  <bruno@clisp.org>
32568
32569         * lib/progname.h (set_program_name): Undefine before defining.
32570
32571 2006-10-25  Bruno Haible  <bruno@clisp.org>
32572
32573         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
32574         false for non-gcc C++ compilers.
32575         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
32576
32577 2006-10-24  Bruno Haible  <bruno@clisp.org>
32578
32579         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
32580         iconv implementations like Irix iconv.
32581
32582 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
32583
32584         * modules/vararrays: New file.
32585         * m4/vararrays.m4: New file, taken from diffutils.
32586         * MODULES.html.sh: New module vararrays.
32587
32588 2006-10-24  Karl Berry  <karl@gnu.org>
32589
32590         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
32591         Don't call GNU Unix.
32592
32593 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32594
32595         * users.txt: Add Libtool.
32596
32597         Sync from Libtool:
32598
32599         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
32600
32601         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
32602         to gnulib's policy of including config.h unconditionally.
32603
32604 2006-10-24  Bruno Haible  <bruno@clisp.org>
32605
32606         * modules/wcwidth (Files): Add m4/wint_t.m4.
32607         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
32608         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
32609
32610 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
32611
32612         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
32613         to pacify GCC with some -W flags enabled.  Problem reported by
32614         Bruno Haible.
32615
32616 2006-10-24  Jim Meyering  <jim@meyering.net>
32617
32618         * MODULES.html.sh: Remove uinttostr.  It's not a module.
32619         Reported by Karl Berry.
32620
32621 2006-10-23  Bruno Haible  <bruno@clisp.org>
32622
32623         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
32624
32625 2006-10-24  Bruno Haible  <bruno@clisp.org>
32626
32627         * lib/gl_list.h: Use C comment style, not C++ comment style.
32628
32629 2006-10-23  Eric Blake  <ebb9@byu.net>
32630
32631         * lib/getaddrinfo.c (includes): Add missing include.
32632
32633 2006-10-23  Bruno Haible  <bruno@clisp.org>
32634             Paul Eggert  <eggert@cs.ucla.edu>
32635
32636         Ability to rename obstack_free.
32637         * lib/obstack.h (__obstack_free): New macro. Declare instead of
32638         obstack_free.
32639         (obstack_free): Invoke the __obstack_free macro.
32640         * lib/obstack.c (obstack_free): Use __obstack_free macro.
32641
32642 2006-10-23  Bruno Haible  <bruno@clisp.org>
32643             Paul Eggert  <eggert@cs.ucla.edu>
32644
32645         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
32646         __argc, __argv from the declaration. (They are defined as macros on
32647         mingw.)
32648
32649 2006-10-22  Bruno Haible  <bruno@clisp.org>
32650
32651         * doc/gnulib-intro.texi: New file.
32652         * doc/gnulib.texi: Include it.
32653
32654 2006-10-21  Bruno Haible  <bruno@clisp.org>
32655
32656         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
32657         "Introduction", "Miscellanous Notes", "Particular Modules".
32658
32659 2006-10-21  Bruno Haible  <bruno@clisp.org>
32660
32661         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
32662         Change mostlyclean-local rule to avoid sh syntax error from bash
32663         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
32664
32665 2006-10-23  Jim Meyering  <jim@meyering.net>
32666
32667         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
32668         in place of snprintf.
32669
32670         * modules/inttostr (Files): Add lib/uinttostr.c.
32671         * lib/uinttostr.c (inttostr): New file/function.
32672         * lib/inttostr.h (uinttostr): Declare.
32673         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
32674         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
32675         Add uinttostr.
32676         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
32677
32678 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
32679
32680         * lib/canonicalize.c (ELOOP): Define if not already defined.
32681         Problem reported by Bruno Haible in
32682         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
32683
32684 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
32685
32686         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
32687         Problem reported by Perry Smith and Ville Laurikari.
32688
32689         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
32690         uses.
32691
32692 2006-10-19  Bruno Haible  <bruno@clisp.org>
32693
32694         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
32695         for mingw.
32696
32697 2006-10-19  Bruno Haible  <bruno@clisp.org>
32698
32699         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
32700         Needed for mingw.
32701
32702 2006-10-19  Bruno Haible  <bruno@clisp.org>
32703
32704         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
32705
32706 2006-10-19  Bruno Haible  <bruno@clisp.org>
32707
32708         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
32709         it.
32710
32711 2006-10-19  Bruno Haible  <bruno@clisp.org>
32712
32713         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
32714         invocation.
32715
32716 2006-10-19  Bruno Haible  <bruno@clisp.org>
32717
32718         * gnulib-tool (func_create_testdir): Don't include ftruncate and
32719         mountlist by default.
32720
32721 2006-10-16  Bruno Haible  <bruno@clisp.org>
32722
32723         * lib/c-strstr.c: Include c-strstr.h.
32724
32725 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
32726
32727         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
32728         in a slash.
32729
32730 2006-10-18  Bruno Haible  <bruno@clisp.org>
32731
32732         * lib/lock.h [C++]: Wrap definitions in extern "C".
32733
32734 2006-10-18  Bruno Haible  <bruno@clisp.org>
32735
32736         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
32737         gl_LIBOBJS list.
32738
32739 2006-10-18  Bruno Haible  <bruno@clisp.org>
32740
32741         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
32742
32743 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
32744
32745         * lib/xstrtol.h: Include gettext.h.
32746         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
32747         Problem reported by Eric Blake.
32748         * modules/xstrtol (Depends-on): Add gettext-h.
32749
32750 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
32751
32752         * lib/strftime.c (advance): New macro.
32753         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
32754         incomplete type, so you can't add 0 to it.  Problem and patch
32755         reported by Eelco Dolstra for dietlibc.
32756
32757 2006-10-18  Jim Meyering  <jim@meyering.net>
32758
32759         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
32760         type for a local, and rename it: s/up/user_proc/.
32761
32762 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
32763
32764         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
32765         READ_UTMP_USER_PROCESS.
32766         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
32767
32768 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
32769
32770         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
32771         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
32772
32773 2006-10-17  Eric Blake  <ebb9@byu.net>
32774
32775         * lib/sigprocmask.c (sigprocmask): Fix typo.
32776
32777         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
32778
32779         * modules/clean-temp (Makefile.am): Don't add to make output...
32780         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
32781         config.h.
32782
32783 2006-10-17  Bruno Haible  <bruno@clisp.org>
32784
32785         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
32786         differently if DEFAULT_TEXT_DOMAIN is set.
32787
32788 2006-10-16  Bruno Haible  <bruno@clisp.org>
32789
32790         * lib/clean-temp.c: Include fwriteerror.h.
32791
32792 2006-10-16  Bruno Haible  <bruno@clisp.org>
32793
32794         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
32795
32796 2006-10-16  Bruno Haible  <bruno@clisp.org>
32797
32798         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
32799         * lib/sigprocmask.h: Include <sys/types.h>.
32800         (sigset_t): Use the system's definition if present.
32801
32802 2006-10-17  Eric Blake  <ebb9@byu.net>
32803
32804         * lib/xvasprintf.c (includes): Assume config.h.
32805         * lib/xasprintf.c (includes): Likewise.
32806
32807 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
32808
32809         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
32810         at least as wide as intmax_t.
32811
32812 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
32813
32814         (Imported from Automake.)
32815         * build-aux/gnupload: Update to version 1.1 of directive file.
32816
32817 2006-10-16  Eric Blake  <ebb9@byu.net>
32818
32819         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
32820         match Automake 1.10a.
32821
32822 2006-10-14  Bruno Haible  <bruno@clisp.org>
32823
32824         * modules/sigprocmask: New file.
32825         * lib/sigprocmask.h: New file.
32826         * lib/sigprocmask.c: New file.
32827         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
32828         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
32829         request sigprocmask.o.
32830         (gl_PREREQ_SIGPROCMASK): New macro.
32831         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
32832         (Depends-on): Add sigprocmask.
32833         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
32834         gt_SIGNALBLOCKING. Test for 'raise' only once.
32835         * lib/fatal-signal.c: Include sigprocmask.h.
32836         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
32837         unblock_fatal_signals): Define always.
32838         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
32839         sigprocmask.
32840
32841 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
32842
32843         Sync from Automake.
32844         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
32845         which incorrectly sets the mode of an existing destination
32846         directory.  In some cases the unpatched install-sh could do the
32847         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
32848         system.  We hope this is rare in practice, but it's clearly worth
32849         fixing.  Problem reported by Alex Unleashed in
32850         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
32851         Also, don't bother to check for -m bugs unless we're using -m;
32852         suggested by Stepan Kasal.
32853
32854 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32855
32856         Sync from Automake.
32857         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
32858         `-c' flag, so they appear at the same position as in %FASTDEP%
32859         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
32860         which ignores unknown options only after the first non-option.
32861         Bug report against M4 by Nelson H. F. Beebe.
32862
32863 2006-10-13  Jim Meyering  <jim@meyering.net>
32864
32865         Fix a bug in yesterday's change.
32866         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
32867         p->fts_statp->st_dev would be used uninitialized.
32868         Ensures that we always call fts_stat on the very first entry.
32869         Miklos Szeredi reported that find -xdev stopped working.
32870
32871 2006-10-12  Bruno Haible  <bruno@clisp.org>
32872
32873         * gnulib-tool (func_get_automake_snippet): Append an automatically
32874         computed EXTRA_DIST augmentation.
32875         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
32876         * modules/alloca-opt (Makefile.am): Likewise.
32877         * modules/allocsa (Makefile.am): Likewise.
32878         * modules/arcfour (Makefile.am): Likewise.
32879         * modules/arctwo (Makefile.am): Likewise.
32880         * modules/argmatch (Makefile.am): Likewise.
32881         * modules/argz (Makefile.am): Likewise.
32882         * modules/atexit (Makefile.am): Likewise.
32883         * modules/backupfile (Makefile.am): Likewise.
32884         * modules/byteswap (Makefile.am): Likewise.
32885         * modules/c-strtod (Makefile.am): Likewise.
32886         * modules/c-strtold (Makefile.am): Likewise.
32887         * modules/calloc (Makefile.am): Likewise.
32888         * modules/canon-host (Makefile.am): Likewise.
32889         * modules/canonicalize (Makefile.am): Likewise.
32890         * modules/chdir-long (Makefile.am): Likewise.
32891         * modules/chdir-safer (Makefile.am): Likewise.
32892         * modules/check-version (Makefile.am): Likewise.
32893         * modules/chown (Makefile.am): Likewise.
32894         * modules/cloexec (Makefile.am): Likewise.
32895         * modules/close-stream (Makefile.am): Likewise.
32896         * modules/closeout (Makefile.am): Likewise.
32897         * modules/crc (Makefile.am): Likewise.
32898         * modules/csharpexec (Makefile.am): Likewise.
32899         * modules/cycle-check (Makefile.am): Likewise.
32900         * modules/des (Makefile.am): Likewise.
32901         * modules/dev-ino (Makefile.am): Likewise.
32902         * modules/dirfd (Makefile.am): Likewise.
32903         * modules/dirname (Makefile.am): Likewise.
32904         * modules/dup2 (Makefile.am): Likewise.
32905         * modules/eealloc (Makefile.am): Likewise.
32906         * modules/error (Makefile.am): Likewise.
32907         * modules/euidaccess (Makefile.am): Likewise.
32908         * modules/exclude (Makefile.am): Likewise.
32909         * modules/exitfail (Makefile.am): Likewise.
32910         * modules/fcntl-safer (Makefile.am): Likewise.
32911         * modules/fcntl (Makefile.am): Likewise.
32912         * modules/file-type (Makefile.am): Likewise.
32913         * modules/fileblocks (Makefile.am): Likewise.
32914         * modules/filemode (Makefile.am): Likewise.
32915         * modules/filenamecat (Makefile.am): Likewise.
32916         * modules/fnmatch (Makefile.am): Likewise.
32917         * modules/fopen-safer (Makefile.am): Likewise.
32918         * modules/fpending (Makefile.am): Likewise.
32919         * modules/fprintftime (Makefile.am): Likewise.
32920         * modules/free (Makefile.am): Likewise.
32921         * modules/fsusage (Makefile.am): Likewise.
32922         * modules/ftruncate (Makefile.am): Likewise.
32923         * modules/fts (Makefile.am): Likewise.
32924         * modules/gc-arcfour (Makefile.am): Likewise.
32925         * modules/gc-des (Makefile.am): Likewise.
32926         * modules/gc-hmac-md5 (Makefile.am): Likewise.
32927         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
32928         * modules/gc-md4 (Makefile.am): Likewise.
32929         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
32930         * modules/gc-sha1 (Makefile.am): Likewise.
32931         * modules/gc (Makefile.am): Likewise.
32932         * modules/getaddrinfo (Makefile.am): Likewise.
32933         * modules/getcwd (Makefile.am): Likewise.
32934         * modules/getdelim (Makefile.am): Likewise.
32935         * modules/getdomainname (Makefile.am): Likewise.
32936         * modules/getgroups (Makefile.am): Likewise.
32937         * modules/gethostname (Makefile.am): Likewise.
32938         * modules/gethrxtime (Makefile.am): Likewise.
32939         * modules/getline (Makefile.am): Likewise.
32940         * modules/getloadavg (Makefile.am): Likewise.
32941         * modules/getlogin_r (Makefile.am): Likewise.
32942         * modules/getndelim2 (Makefile.am): Likewise.
32943         * modules/getopt (Makefile.am): Likewise.
32944         * modules/getpagesize (Makefile.am): Likewise.
32945         * modules/getpass-gnu (Makefile.am): Likewise.
32946         * modules/getpass (Makefile.am): Likewise.
32947         * modules/getsubopt (Makefile.am): Likewise.
32948         * modules/gettime (Makefile.am): Likewise.
32949         * modules/gettimeofday (Makefile.am): Likewise.
32950         * modules/getugroups (Makefile.am): Likewise.
32951         * modules/getusershell (Makefile.am): Likewise.
32952         * modules/glob (Makefile.am): Likewise.
32953         * modules/group-member (Makefile.am): Likewise.
32954         * modules/hard-locale (Makefile.am): Likewise.
32955         * modules/hash (Makefile.am): Likewise.
32956         * modules/hmac-md5 (Makefile.am): Likewise.
32957         * modules/hmac-sha1 (Makefile.am): Likewise.
32958         * modules/human (Makefile.am): Likewise.
32959         * modules/idcache (Makefile.am): Likewise.
32960         * modules/imaxabs (Makefile.am): Likewise.
32961         * modules/imaxdiv (Makefile.am): Likewise.
32962         * modules/inet_ntop (Makefile.am): Likewise.
32963         * modules/inet_pton (Makefile.am): Likewise.
32964         * modules/intprops (Makefile.am): Likewise.
32965         * modules/inttostr (Makefile.am): Likewise.
32966         * modules/inttypes (Makefile.am): Likewise.
32967         * modules/isapipe (Makefile.am): Likewise.
32968         * modules/javaversion (Makefile.am): Likewise.
32969         * modules/lchmod (Makefile.am): Likewise.
32970         * modules/lchown (Makefile.am): Likewise.
32971         * modules/localcharset (Makefile.am): Likewise.
32972         * modules/long-options (Makefile.am): Likewise.
32973         * modules/lstat (Makefile.am): Likewise.
32974         * modules/malloc (Makefile.am): Likewise.
32975         * modules/mathl (Makefile.am): Likewise.
32976         * modules/mbchar (Makefile.am): Likewise.
32977         * modules/md2 (Makefile.am): Likewise.
32978         * modules/md4 (Makefile.am): Likewise.
32979         * modules/md5 (Makefile.am): Likewise.
32980         * modules/memcasecmp (Makefile.am): Likewise.
32981         * modules/memchr (Makefile.am): Likewise.
32982         * modules/memcmp (Makefile.am): Likewise.
32983         * modules/memcoll (Makefile.am): Likewise.
32984         * modules/memcpy (Makefile.am): Likewise.
32985         * modules/memmem (Makefile.am): Likewise.
32986         * modules/memmove (Makefile.am): Likewise.
32987         * modules/mempcpy (Makefile.am): Likewise.
32988         * modules/memrchr (Makefile.am): Likewise.
32989         * modules/memset (Makefile.am): Likewise.
32990         * modules/memxor (Makefile.am): Likewise.
32991         * modules/mkancesdirs (Makefile.am): Likewise.
32992         * modules/mkdir-p (Makefile.am): Likewise.
32993         * modules/mkdir (Makefile.am): Likewise.
32994         * modules/mkdtemp (Makefile.am): Likewise.
32995         * modules/mkstemp (Makefile.am): Likewise.
32996         * modules/mktime (Makefile.am): Likewise.
32997         * modules/modechange (Makefile.am): Likewise.
32998         * modules/mountlist (Makefile.am): Likewise.
32999         * modules/nanosleep (Makefile.am): Likewise.
33000         * modules/obstack (Makefile.am): Likewise.
33001         * modules/openat (Makefile.am): Likewise.
33002         * modules/pagealign_alloc (Makefile.am): Likewise.
33003         * modules/pathmax (Makefile.am): Likewise.
33004         * modules/physmem (Makefile.am): Likewise.
33005         * modules/poll (Makefile.am): Likewise.
33006         * modules/posixtm (Makefile.am): Likewise.
33007         * modules/posixver (Makefile.am): Likewise.
33008         * modules/putenv (Makefile.am): Likewise.
33009         * modules/quote (Makefile.am): Likewise.
33010         * modules/quotearg (Makefile.am): Likewise.
33011         * modules/raise (Makefile.am): Likewise.
33012         * modules/read-file (Makefile.am): Likewise.
33013         * modules/readline (Makefile.am): Likewise.
33014         * modules/readlink (Makefile.am): Likewise.
33015         * modules/readtokens (Makefile.am): Likewise.
33016         * modules/readutmp (Makefile.am): Likewise.
33017         * modules/realloc (Makefile.am): Likewise.
33018         * modules/regex (Makefile.am): Likewise.
33019         * modules/rename-dest-slash (Makefile.am): Likewise.
33020         * modules/rename (Makefile.am): Likewise.
33021         * modules/rijndael (Makefile.am): Likewise.
33022         * modules/rmdir (Makefile.am): Likewise.
33023         * modules/rpmatch (Makefile.am): Likewise.
33024         * modules/safe-read (Makefile.am): Likewise.
33025         * modules/safe-write (Makefile.am): Likewise.
33026         * modules/same-inode (Makefile.am): Likewise.
33027         * modules/same (Makefile.am): Likewise.
33028         * modules/save-cwd (Makefile.am): Likewise.
33029         * modules/savedir (Makefile.am): Likewise.
33030         * modules/setenv (Makefile.am): Likewise.
33031         * modules/settime (Makefile.am): Likewise.
33032         * modules/sha1 (Makefile.am): Likewise.
33033         * modules/sig2str (Makefile.am): Likewise.
33034         * modules/snprintf (Makefile.am): Likewise.
33035         * modules/stat-macros (Makefile.am): Likewise.
33036         * modules/stat-time (Makefile.am): Likewise.
33037         * modules/stdbool (Makefile.am): Likewise.
33038         * modules/stdint (Makefile.am): Likewise.
33039         * modules/stdlib-safer (Makefile.am): Likewise.
33040         * modules/stpcpy (Makefile.am): Likewise.
33041         * modules/stpncpy (Makefile.am): Likewise.
33042         * modules/strcase (Makefile.am): Likewise.
33043         * modules/strcasestr (Makefile.am): Likewise.
33044         * modules/strchrnul (Makefile.am): Likewise.
33045         * modules/strcspn (Makefile.am): Likewise.
33046         * modules/strdup (Makefile.am): Likewise.
33047         * modules/strerror (Makefile.am): Likewise.
33048         * modules/strftime (Makefile.am): Likewise.
33049         * modules/strndup (Makefile.am): Likewise.
33050         * modules/strnlen (Makefile.am): Likewise.
33051         * modules/strpbrk (Makefile.am): Likewise.
33052         * modules/strsep (Makefile.am): Likewise.
33053         * modules/strstr (Makefile.am): Likewise.
33054         * modules/strtod (Makefile.am): Likewise.
33055         * modules/strtoimax (Makefile.am): Likewise.
33056         * modules/strtok_r (Makefile.am): Likewise.
33057         * modules/strtol (Makefile.am): Likewise.
33058         * modules/strtoll (Makefile.am): Likewise.
33059         * modules/strtoul (Makefile.am): Likewise.
33060         * modules/strtoull (Makefile.am): Likewise.
33061         * modules/strtoumax (Makefile.am): Likewise.
33062         * modules/strverscmp (Makefile.am): Likewise.
33063         * modules/sys_socket (Makefile.am): Likewise.
33064         * modules/sys_stat (Makefile.am): Likewise.
33065         * modules/sysexits (Makefile.am): Likewise.
33066         * modules/time_r (Makefile.am): Likewise.
33067         * modules/timegm (Makefile.am): Likewise.
33068         * modules/timespec (Makefile.am): Likewise.
33069         * modules/tmpfile-safer (Makefile.am): Likewise.
33070         * modules/trim (Makefile.am): Likewise.
33071         * modules/unistd-safer (Makefile.am): Likewise.
33072         * modules/unlinkdir (Makefile.am): Likewise.
33073         * modules/unlocked-io (Makefile.am): Likewise.
33074         * modules/userspec (Makefile.am): Likewise.
33075         * modules/utime (Makefile.am): Likewise.
33076         * modules/utimecmp (Makefile.am): Likewise.
33077         * modules/utimens (Makefile.am): Likewise.
33078         * modules/vasnprintf (Makefile.am): Likewise.
33079         * modules/vasprintf (Makefile.am): Likewise.
33080         * modules/vsnprintf (Makefile.am): Likewise.
33081         * modules/xalloc (Makefile.am): Likewise.
33082         * modules/xgetcwd (Makefile.am): Likewise.
33083         * modules/xnanosleep (Makefile.am): Likewise.
33084         * modules/xreadlink (Makefile.am): Likewise.
33085         * modules/xstrtod (Makefile.am): Likewise.
33086         * modules/xstrtol (Makefile.am): Likewise.
33087         * modules/xstrtold (Makefile.am): Likewise.
33088         * modules/yesno (Makefile.am): Likewise.
33089         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
33090
33091 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
33092
33093         * modules/error (Makefile.am): Distribute files through
33094         EXTRA_DIST, not lib_SOURCES.
33095
33096 2006-10-12  Eric Blake  <ebb9@byu.net>
33097
33098         * modules/error (Makefile.am): Distribute files in /lib.
33099         * modules/obstack (Makefile.am): Likewise.
33100
33101 2006-10-12  Bruno Haible  <bruno@clisp.org>
33102
33103         * modules/acl (Makefile.am): Distribute all files in lib/ through
33104         EXTRA_DIST.
33105         * modules/arcfour (Makefile.am): Likewise.
33106         * modules/arctwo (Makefile.am): Likewise.
33107         * modules/argmatch (Makefile.am): Likewise.
33108         * modules/argz (Makefile.am): Likewise.
33109         * modules/atexit (Makefile.am): Likewise.
33110         * modules/backupfile (Makefile.am): Likewise.
33111         * modules/c-strtod (Makefile.am): Likewise.
33112         * modules/c-strtold (Makefile.am): Likewise.
33113         * modules/calloc (Makefile.am): Likewise.
33114         * modules/canon-host (Makefile.am): Likewise.
33115         * modules/canonicalize (Makefile.am): Likewise.
33116         * modules/chdir-long (Makefile.am): Likewise.
33117         * modules/chdir-safer (Makefile.am): Likewise.
33118         * modules/check-version (Makefile.am): Likewise.
33119         * modules/chown (Makefile.am): Likewise.
33120         * modules/cloexec (Makefile.am): Likewise.
33121         * modules/close-stream (Makefile.am): Likewise.
33122         * modules/closeout (Makefile.am): Likewise.
33123         * modules/crc (Makefile.am): Likewise.
33124         * modules/cycle-check (Makefile.am): Likewise.
33125         * modules/des (Makefile.am): Likewise.
33126         * modules/dirfd (Makefile.am): Likewise.
33127         * modules/dirname (Makefile.am): Likewise.
33128         * modules/dup2 (Makefile.am): Likewise.
33129         * modules/euidaccess (Makefile.am): Likewise.
33130         * modules/exclude (Makefile.am): Likewise.
33131         * modules/exitfail (Makefile.am): Likewise.
33132         * modules/fcntl-safer (Makefile.am): Likewise.
33133         * modules/file-type (Makefile.am): Likewise.
33134         * modules/fileblocks (Makefile.am): Likewise.
33135         * modules/filemode (Makefile.am): Likewise.
33136         * modules/filenamecat (Makefile.am): Likewise.
33137         * modules/fnmatch (Makefile.am): Likewise.
33138         * modules/fopen-safer (Makefile.am): Likewise.
33139         * modules/fpending (Makefile.am): Likewise.
33140         * modules/fprintftime (Makefile.am): Likewise.
33141         * modules/free (Makefile.am): Likewise.
33142         * modules/fsusage (Makefile.am): Likewise.
33143         * modules/ftruncate (Makefile.am): Likewise.
33144         * modules/fts (Makefile.am): Likewise.
33145         * modules/gc (Makefile.am): Likewise.
33146         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
33147         * modules/getaddrinfo (Makefile.am): Likewise.
33148         * modules/getcwd (Makefile.am): Likewise.
33149         * modules/getdelim (Makefile.am): Likewise.
33150         * modules/getdomainname (Makefile.am): Likewise.
33151         * modules/getgroups (Makefile.am): Likewise.
33152         * modules/gethostname (Makefile.am): Likewise.
33153         * modules/gethrxtime (Makefile.am): Likewise.
33154         * modules/getline (Makefile.am): Likewise.
33155         * modules/getloadavg (Makefile.am): Likewise.
33156         * modules/getlogin_r (Makefile.am): Likewise.
33157         * modules/getopt (Makefile.am): Likewise.
33158         * modules/getpass (Makefile.am): Likewise.
33159         * modules/getpass-gnu (Makefile.am): Likewise.
33160         * modules/getsubopt (Makefile.am): Likewise.
33161         * modules/gettime (Makefile.am): Likewise.
33162         * modules/gettimeofday (Makefile.am): Likewise.
33163         * modules/getugroups (Makefile.am): Likewise.
33164         * modules/getusershell (Makefile.am): Likewise.
33165         * modules/glob (Makefile.am): Likewise.
33166         * modules/group-member (Makefile.am): Likewise.
33167         * modules/hard-locale (Makefile.am): Likewise.
33168         * modules/hash (Makefile.am): Likewise.
33169         * modules/hmac-md5 (Makefile.am): Likewise.
33170         * modules/hmac-sha1 (Makefile.am): Likewise.
33171         * modules/human (Makefile.am): Likewise.
33172         * modules/idcache (Makefile.am): Likewise.
33173         * modules/imaxabs (Makefile.am): Likewise.
33174         * modules/imaxdiv (Makefile.am): Likewise.
33175         * modules/inet_ntop (Makefile.am): Likewise.
33176         * modules/inet_pton (Makefile.am): Likewise.
33177         * modules/inttostr (Makefile.am): Likewise.
33178         * modules/isapipe (Makefile.am): Likewise.
33179         * modules/lchown (Makefile.am): Likewise.
33180         * modules/long-options (Makefile.am): Likewise.
33181         * modules/lstat (Makefile.am): Likewise.
33182         * modules/malloc (Makefile.am): Likewise.
33183         * modules/mathl (Makefile.am): Likewise.
33184         * modules/mbchar (Makefile.am): Likewise.
33185         * modules/md2 (Makefile.am): Likewise.
33186         * modules/md4 (Makefile.am): Likewise.
33187         * modules/md5 (Makefile.am): Likewise.
33188         * modules/memcasecmp (Makefile.am): Likewise.
33189         * modules/memchr (Makefile.am): Likewise.
33190         * modules/memcmp (Makefile.am): Likewise.
33191         * modules/memcoll (Makefile.am): Likewise.
33192         * modules/memcpy (Makefile.am): Likewise.
33193         * modules/memmem (Makefile.am): Likewise.
33194         * modules/memmove (Makefile.am): Likewise.
33195         * modules/mempcpy (Makefile.am): Likewise.
33196         * modules/memrchr (Makefile.am): Likewise.
33197         * modules/memset (Makefile.am): Likewise.
33198         * modules/memxor (Makefile.am): Likewise.
33199         * modules/mkancesdirs (Makefile.am): Likewise.
33200         * modules/mkdir (Makefile.am): Likewise.
33201         * modules/mkdir-p (Makefile.am): Likewise.
33202         * modules/mkdtemp (Makefile.am): Likewise.
33203         * modules/mkstemp (Makefile.am): Likewise.
33204         * modules/mktime (Makefile.am): Likewise.
33205         * modules/modechange (Makefile.am): Likewise.
33206         * modules/mountlist (Makefile.am): Likewise.
33207         * modules/nanosleep (Makefile.am): Likewise.
33208         * modules/openat (Makefile.am): Likewise.
33209         * modules/pagealign_alloc (Makefile.am): Likewise.
33210         * modules/physmem (Makefile.am): Likewise.
33211         * modules/poll (Makefile.am): Likewise.
33212         * modules/posixtm (Makefile.am): Likewise.
33213         * modules/posixver (Makefile.am): Likewise.
33214         * modules/putenv (Makefile.am): Likewise.
33215         * modules/quote (Makefile.am): Likewise.
33216         * modules/quotearg (Makefile.am): Likewise.
33217         * modules/raise (Makefile.am): Likewise.
33218         * modules/read-file (Makefile.am): Likewise.
33219         * modules/readline (Makefile.am): Likewise.
33220         * modules/readlink (Makefile.am): Likewise.
33221         * modules/readtokens (Makefile.am): Likewise.
33222         * modules/readutmp (Makefile.am): Likewise.
33223         * modules/realloc (Makefile.am): Likewise.
33224         * modules/regex (Makefile.am): Likewise.
33225         * modules/rename (Makefile.am): Likewise.
33226         * modules/rename-dest-slash (Makefile.am): Likewise.
33227         * modules/rijndael (Makefile.am): Likewise.
33228         * modules/rmdir (Makefile.am): Likewise.
33229         * modules/rpmatch (Makefile.am): Likewise.
33230         * modules/safe-read (Makefile.am): Likewise.
33231         * modules/safe-write (Makefile.am): Likewise.
33232         * modules/same (Makefile.am): Likewise.
33233         * modules/save-cwd (Makefile.am): Likewise.
33234         * modules/savedir (Makefile.am): Likewise.
33235         * modules/setenv (Makefile.am): Likewise.
33236         * modules/settime (Makefile.am): Likewise.
33237         * modules/sha1 (Makefile.am): Likewise.
33238         * modules/sig2str (Makefile.am): Likewise.
33239         * modules/snprintf (Makefile.am): Likewise.
33240         * modules/stdlib-safer (Makefile.am): Likewise.
33241         * modules/stpcpy (Makefile.am): Likewise.
33242         * modules/stpncpy (Makefile.am): Likewise.
33243         * modules/strcase (Makefile.am): Likewise.
33244         * modules/strcasestr (Makefile.am): Likewise.
33245         * modules/strchrnul (Makefile.am): Likewise.
33246         * modules/strcspn (Makefile.am): Likewise.
33247         * modules/strdup (Makefile.am): Likewise.
33248         * modules/strerror (Makefile.am): Likewise.
33249         * modules/strftime (Makefile.am): Likewise.
33250         * modules/strndup (Makefile.am): Likewise.
33251         * modules/strnlen (Makefile.am): Likewise.
33252         * modules/strpbrk (Makefile.am): Likewise.
33253         * modules/strsep (Makefile.am): Likewise.
33254         * modules/strstr (Makefile.am): Likewise.
33255         * modules/strtod (Makefile.am): Likewise.
33256         * modules/strtoimax (Makefile.am): Likewise.
33257         * modules/strtok_r (Makefile.am): Likewise.
33258         * modules/strtol (Makefile.am): Likewise.
33259         * modules/strtoll (Makefile.am): Likewise.
33260         * modules/strtoul (Makefile.am): Likewise.
33261         * modules/strtoull (Makefile.am): Likewise.
33262         * modules/strtoumax (Makefile.am): Likewise.
33263         * modules/strverscmp (Makefile.am): Likewise.
33264         * modules/time_r (Makefile.am): Likewise.
33265         * modules/timegm (Makefile.am): Likewise.
33266         * modules/tmpfile-safer (Makefile.am): Likewise.
33267         * modules/unistd-safer (Makefile.am): Likewise.
33268         * modules/unlinkdir (Makefile.am): Likewise.
33269         * modules/userspec (Makefile.am): Likewise.
33270         * modules/utime (Makefile.am): Likewise.
33271         * modules/utimecmp (Makefile.am): Likewise.
33272         * modules/utimens (Makefile.am): Likewise.
33273         * modules/vasnprintf (Makefile.am): Likewise.
33274         * modules/vasprintf (Makefile.am): Likewise.
33275         * modules/vsnprintf (Makefile.am): Likewise.
33276         * modules/xalloc (Makefile.am): Likewise.
33277         * modules/xgetcwd (Makefile.am): Likewise.
33278         * modules/xnanosleep (Makefile.am): Likewise.
33279         * modules/xreadlink (Makefile.am): Likewise.
33280         * modules/xstrtod (Makefile.am): Likewise.
33281         * modules/xstrtol (Makefile.am): Likewise.
33282         * modules/xstrtold (Makefile.am): Likewise.
33283         * modules/yesno (Makefile.am): Likewise.
33284
33285 2006-10-12  Jim Meyering  <jim@meyering.net>
33286
33287         * m4/getloadavg.m4: Revert the change below.
33288
33289         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
33290         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
33291         fail with a symlink, which is what coreutils' ./bootstrap now
33292         creates by default.
33293
33294 2006-10-12  Bruno Haible  <bruno@clisp.org>
33295
33296         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
33297         mingw.
33298         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
33299         MSVC and mingw explicitly.
33300
33301 2006-10-11  Simon Josefsson  <jas@extundo.com>
33302             Bruno Haible  <bruno@clisp.org>
33303
33304         Add support for multiple gnulib-tool invocations in the scope of a
33305         single configure.ac file.
33306         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
33307         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
33308         with the same contents as the _LIBADD variable.
33309         (func_emit_initmacro_start, func_emit_initmacro_end,
33310         func_emit_initmacro_done): New functions.
33311         (func_import, func_create_testdir): Invoke them. Allow the identifiers
33312         gl_LIBOBJS and gl_LTLIBOBJS.
33313
33314 2006-10-11  Bruno Haible  <bruno@clisp.org>
33315
33316         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
33317         (func_create_testdir): Don't create po/Makefile.am, don't invoke
33318         autoreconf. Instead, invoke autopoint explicitly but move back the
33319         *.m4 files from gnulib.
33320
33321 2006-10-11  Bruno Haible  <bruno@clisp.org>
33322
33323         * gnulib-tool (func_usage): Make module names after --create-testdir
33324         optional.
33325         (func_create_testdir): If no module was specified, use nearly all
33326         modules.
33327
33328 2006-10-12  Jim Meyering  <jim@meyering.net>
33329
33330         Big performance improvement for fts-based tools that use FTS_NOSTAT.
33331         Avoid spurious inode-mismatch problems on non-POSIX file systems.
33332         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
33333         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
33334         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
33335         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
33336         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
33337         (fts_set_stat_required): New function.
33338         (fts_open): Defer the calls to fts_stat, if possible or requested.
33339         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
33340         into fts_stat itself.
33341         (fts_read): Perform any required (deferred) fts_stat call.
33342         (fts_build): Likewise, for the directory we're about to open and read.
33343         In the readdir loop, carefully decide whether each entry will require
33344         an eventual call to fts_stat, using dirent.d_type info if available.
33345         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
33346         a command line argument into this function.  Update all callers.
33347         Map a return value of FTS_DOT to FTS_D for a command line argument.
33348         * modules/fts (Depends-on): Add d-type.  Alphabetize.
33349         Thanks to Miklos Szeredi for his tenacity and for the initial
33350         bug report about "find" failing on a FUSE-based file system.
33351
33352         * lib/fts.c (fts_open): Use consistent indentation.
33353
33354 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
33355
33356         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
33357         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
33358         reported by Jim Meyering.  All uses of cache variables renamed
33359         to match Autoconf's.
33360         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
33361         the other one.
33362
33363         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
33364         Fix misspelling in diagnostic.
33365
33366 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
33367
33368         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
33369         defined.  Problem reported by Matthew Woehlke.
33370
33371         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
33372         Add support for Tandem NonStop R series.
33373         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
33374         Use new macro.
33375
33376         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
33377         (has_trailing_slash): Omit size arg; all callers changed.
33378         Omit 'inline', since it doesn't help performance and we'd
33379         need to configure it.
33380         Don't count //, ///, etc. as having a trailing slash.
33381         As a side effect, this removes a C99ism reported by Matthew Woehlke.
33382         (rpl_rename_dest_slash): On failure, use rename's errno rather
33383         than (in some cases) an incorrect or junk errno.
33384         Simplify code by removing need to compute length; this does
33385         cause it to make two passes instead of one over the file name,
33386         but it's worth it.
33387
33388         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
33389         change, since Autoconf's version may no longer be appropriate now
33390         that we are using CVS Autoconf's version.  Add support for Tandem.
33391
33392 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
33393             Bruno Haible  <bruno@clisp.org>
33394
33395         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
33396         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
33397         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
33398         gl_AC_TYPE_LONG_LONG.
33399
33400         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
33401         instead of HAVE_LONG_LONG.
33402         * lib/printf-args.c (printf_fetchargs): Likewise.
33403         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
33404         * lib/vasnprintf.c (VASNPRINTF): Likewise.
33405         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
33406         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
33407         gl_AC_TYPE_LONG_LONG.
33408
33409 2006-10-11  Bruno Haible  <bruno@clisp.org>
33410
33411         * m4/longlong.m4: Add comments.
33412         * m4/ulonglong.m4: Likewise.
33413
33414 2006-10-10  Bruno Haible  <bruno@clisp.org>
33415
33416         Make it possible to #define stpcpy, strdup to aliases.
33417         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
33418         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
33419
33420 2006-10-10  Bruno Haible  <bruno@clisp.org>
33421
33422         Make it possible to #define gcd to an alias.
33423         * lib/gcd.c: Include config.h.
33424
33425 2006-10-10  Bruno Haible  <bruno@clisp.org>
33426
33427         Make it possible to #define c_isascii to an alias.
33428         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
33429         defined. Undefine the macros before defining them, to avoid gcc
33430         warnings.
33431         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
33432         define NO_C_CTYPE_MACROS early.
33433
33434 2006-10-10  Bruno Haible  <bruno@clisp.org>
33435
33436         Make it possible to #define set_program_name to an alias.
33437         * lib/progname.c: Don't undefine set_program_name; instead, undefine
33438         ENABLE_RELOCATABLE early.
33439
33440 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
33441
33442         Port to Tandem NSK OSS, which has 64-bit signed int but at most
33443         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
33444         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
33445         More generally, don't assume that 64-bit signed int is available
33446         if unsigned int is, and vice versa.
33447         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
33448         unsigned symbols, not on their signed counterparts.
33449         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
33450         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
33451         (UINT64_C, UINTMAX_C):
33452         Likewise.
33453         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
33454         unsigned counterparts.
33455         (Have_long_long, Unsigned): New macros.
33456         (Int): Renamed from INT.
33457         (strtoimax): Use the new macros.
33458         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
33459         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
33460         * modules/inttypes (inttypes.h): Substitute
33461         HAVE_UNSIGNED_LONG_LONG_INT.
33462         * modules/stdint (stdint.h): Likewise.
33463         (Files): Add m4/ulonglong.m4.
33464
33465 2006-10-10  Bruno Haible  <bruno@clisp.org>
33466
33467         Fix a gcc -Wshadow warning.
33468         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
33469         to 'bucket'.
33470         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
33471         gl_linked_indexof_from_to): Likewise.
33472         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
33473         Likewise.
33474         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
33475         Likewise.
33476         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
33477         Reported by Eric Blake.
33478
33479 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
33480
33481         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
33482         for NetBSD.  Problem reported by Bruno Haible.
33483
33484 2006-10-09  Jim Meyering  <jim@meyering.net>
33485
33486         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
33487         Patch from Bruno Haible.
33488
33489 2006-10-09  Jim Meyering  <jim@meyering.net>
33490
33491         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
33492         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
33493         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
33494
33495 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
33496
33497         Don't include <config.h> twice; this doesn't work in some cases,
33498         e.g., when config.h has "#define intmax_t long long int" and
33499         we include <config.h>, <inttypes.h>, <config.h> in that order.
33500         Problem reported by Matthew Woehlke in:
33501         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
33502         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
33503         * lib/fts-cycle.c: Don't include config.h.
33504         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
33505         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
33506         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
33507         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
33508         inttypes.h.
33509         * lib/xstrtoumax.c: Likewise.
33510         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
33511         __strtol and the like, so that this module is more like its siblings.
33512         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
33513         Remove; no longer needed now that we assume gnulib inttypes.h.
33514
33515 2006-10-08  Bruno Haible  <bruno@clisp.org>
33516
33517         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
33518         option.
33519
33520 2006-10-07  Jim Meyering  <jim@meyering.net>
33521
33522         * modules/inttypes (inttypes.h): Revert what seems to have been
33523         an inadvertent part of today's change: use "|", not "/" in the
33524         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
33525
33526 2006-10-07  Bruno Haible  <bruno@clisp.org>
33527
33528         * modules/sublist: New file.
33529
33530 2006-10-07  Bruno Haible  <bruno@clisp.org>
33531
33532         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
33533         * modules/argz (argz.h): Likewise.
33534         * modules/arpa_inet (arpa/inet.h): Likewise.
33535         * modules/byteswap (byteswap.h): Likewise.
33536         * modules/configmake (configmake.h): Likewise.
33537         * modules/fcntl (fcntl.h): Likewise.
33538         * modules/fnmatch (fnmatch.h): Likewise.
33539         * modules/getopt (getopt.h): Likewise.
33540         * modules/glob (glob.h): Likewise.
33541         * modules/inttypes (inttypes.h): Likewise.
33542         * modules/netinet_in (netinet/in.h): Likewise.
33543         * modules/poll (poll.h): Likewise.
33544         * modules/stdbool (stdbool.h): Likewise.
33545         * modules/stdint (stdint.h): Likewise.
33546         * modules/sys_select (sys/select.h): Likewise.
33547         * modules/sys_socket (sys/socket.h): Likewise.
33548         * modules/sys_stat (sys/stat.h): Likewise.
33549         * modules/sysexits (sysexits.h): Likewise.
33550         * modules/unistd (unistd.h): Likewise.
33551         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
33552         Add a "DO NOT EDIT" comment to the generated file.
33553         (func_import): Likewise for gnulib-comp.m4.
33554
33555 2006-10-07  Bruno Haible  <bruno@clisp.org>
33556
33557         * lib/gl_sublist.h: New file.
33558         * lib/gl_sublist.c: New file.
33559
33560 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
33561
33562         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
33563         name (relative to the original working directory) and the file
33564         name component (relative to the temporary working directory).  All
33565         callers changed.
33566         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
33567         * lib/mkdir-p.c (make_dir_parents): Likewise.
33568         * lib/mkdir-p.h (make_dir_parents): Likewise.
33569
33570 2006-10-06  Eric Blake  <ebb9@byu.net>
33571
33572         Define several macros for use by the clean-temp module.
33573         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
33574         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
33575         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
33576
33577         * lib/clean-temp.h (close_stream_temp): New declaration.
33578         * lib/clean-temp.c (includes): Pull in headers according to what
33579         other modules are in use.
33580         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
33581
33582 2006-10-06  Bruno Haible  <bruno@clisp.org>
33583
33584         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
33585         instead of fopen, fwriteerror.
33586
33587 2006-10-06  Bruno Haible  <bruno@clisp.org>
33588
33589         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
33590         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
33591         int.
33592         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
33593         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
33594         Return an error indicator.
33595         Suggested by Eric Blake.
33596
33597 2006-10-06  Bruno Haible  <bruno@clisp.org>
33598
33599         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
33600         Reported by Eric Blake.
33601
33602 2006-10-06  Bruno Haible  <bruno@clisp.org>
33603
33604         * modules/closeout (Description): Mention stderr too.
33605
33606 2006-10-06  Bruno Haible  <bruno@clisp.org>
33607         and Paul Eggert  <eggert@cs.ucla.edu>
33608
33609         * lib/closeout.c (close_stdout): Also close stderr.
33610         * lib/closeout.h: Update comment.
33611
33612 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
33613
33614         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
33615         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
33616         * lib/dirchownmod.c: Include lchown.h.
33617         * lib/lchown.c: Don't include files that lchown.h now includes.
33618         Don't declare chown, since lchown.h now does that.
33619         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
33620         (lchown): Define to rpl_chown if lchown is declared but
33621         does not exist.  Declare using a prototype if lchown is not
33622         declared.  Add a copyright notice.
33623         * lib/mkstemp.h: Include <unistd.h>.
33624         * lib/openat.c: Include lchown.h.
33625
33626         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
33627         we now test for that separately.
33628         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
33629         rather than O_NOFOLLOW, when testing whether it's possible to
33630         avoid a race condition reliably.
33631         * lib/savewd.c (savewd_chdir): Likewise.
33632
33633         Remove macros that are no longer needed now that stdint.h is
33634         reliable.
33635         * lib/fsusage.c (UINTMAX_MAX): Remove.
33636         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
33637         * lib/utimecmp.c (SIZE_MAX): Remove.
33638
33639         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
33640
33641         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
33642         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
33643         O_NOATIME works.
33644
33645 2006-10-05  Bruno Haible  <bruno@clisp.org>
33646
33647         * lib/gl_list.h (gl_sortedlist_search_from_to,
33648         gl_sortedlist_indexof_from_to): New declarations.
33649         (gl_list_implementation): New fields sortedlist_search_from_to,
33650         sortedlist_indexof_from_to.
33651         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
33652         inline functions.
33653         * lib/gl_list.c (gl_sortedlist_search_from_to,
33654         gl_sortedlist_indexof_from_to): New functions.
33655         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
33656         function.
33657         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
33658         (gl_array_sortedlist_search_from_to): New function.
33659         (gl_array_list_implementation): Update.
33660         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
33661         function.
33662         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
33663         (gl_carray_sortedlist_search_from_to): New function.
33664         (gl_carray_list_implementation): Update.
33665         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
33666         gl_linked_sortedlist_indexof_from_to): New functions.
33667         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
33668         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
33669         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
33670         gl_tree_sortedlist_indexof_from_to): New functions.
33671         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
33672         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
33673         Update.
33674         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
33675         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
33676         Update.
33677
33678 2006-10-05  Bruno Haible  <bruno@clisp.org>
33679
33680         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
33681         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
33682         (struct gl_list_implementation): Add fields search_from_to,
33683         indexof_from_to. Remove fields search, indexof.
33684         (gl_list_search): Use the search_from_to method.
33685         (gl_list_search_from, gl_list_search_from_to): New functions.
33686         (gl_list_indexof): Use the indexof_from_to method.
33687         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
33688         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
33689         (gl_list_search_from, gl_list_search_from_to): New functions.
33690         (gl_list_indexof): Use the indexof_from_to method.
33691         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
33692         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
33693         gl_array_indexof. Add start_index, end_index arguments.
33694         (gl_array_search_from_to): Renamed from gl_array_search. Add
33695         start_index, end_index arguments.
33696         (gl_array_remove, gl_array_list_implementation): Update.
33697         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
33698         gl_carray_indexof. Add start_index, end_index arguments.
33699         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
33700         start_index, end_index arguments.
33701         (gl_carray_remove, gl_carray_list_implementation): Update.
33702         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
33703         gl_linked_search. Add start_index, end_index arguments.
33704         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
33705         start_index, end_index arguments.
33706         (gl_linked_remove): Update.
33707         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
33708         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
33709         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
33710         field to 'size_t'.
33711         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
33712         gl_tree_search. Add start_index, end_index arguments.
33713         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
33714         start_index, end_index arguments.
33715         (gl_tree_remove): Update.
33716         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
33717         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
33718         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
33719         function.
33720         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
33721         gl_tree_search. Add start_index, end_index arguments.
33722         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
33723         start_index, end_index arguments.
33724         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
33725         Update.
33726         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
33727
33728 2006-10-05  Bruno Haible  <bruno@clisp.org>
33729
33730         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
33731
33732         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
33733         fwriteerror_temp): New declarations.
33734         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
33735         (descriptors): New variable.
33736         (cleanup): First, close the descriptors.
33737         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
33738         fclose_temp, fwriteerror_temp): New functions.
33739
33740 2006-10-04  Jim Meyering  <jim@meyering.net>
33741
33742         * lib/fts.c (fts_open): Tiny comment change.
33743
33744 2006-10-04  Bruno Haible  <bruno@clisp.org>
33745
33746         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
33747         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
33748         gl_LOCK_BODY.
33749         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
33750         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
33751         gl_LOCK_EARLY_BODY.
33752         (gl_LOCK): Require gl_LOCK_BODY.
33753
33754 2006-10-04  Bruno Haible  <bruno@clisp.org>
33755
33756         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
33757         (gl_oset_search_atleast): New declaration.
33758         (struct gl_oset_implementation): Add field 'search_atleast'.
33759         (gl_oset_search_atleast): New inline function.
33760         * lib/gl_oset.c (gl_oset_search_atleast): New function.
33761         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
33762         (gl_array_oset_implementation): Update.
33763         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
33764         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
33765         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
33766
33767 2006-10-04  Bruno Haible  <bruno@clisp.org>
33768
33769         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
33770
33771 2006-10-03  Bruno Haible  <bruno@clisp.org>
33772
33773         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
33774         from gl_avltreehash_list_implementation.
33775
33776 2006-10-03  Bruno Haible  <bruno@clisp.org>
33777
33778         * lib/gl_oset.c (gl_oset_add): Fix return type.
33779
33780 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
33781
33782         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
33783
33784 2006-10-02  Eric Blake  <ebb9@byu.net>
33785
33786         * modules/strnlen (Depends-on): Add extensions.
33787
33788 2006-10-02  Eric Blake  <ebb9@byu.net>
33789
33790         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
33791         definition in 2.60+.
33792
33793 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
33794
33795         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
33796         checks.
33797
33798 2006-10-02  Bruno Haible  <bruno@clisp.org>
33799
33800         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
33801         to the AUTOMAKE_OPTIONS.
33802         Reported by Jim Meyering.
33803
33804 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
33805
33806         Work around bug in Solaris 10 /proc file system:
33807         /proc/self/fd/NNN/.. isn't the parent directory of
33808         the directory whose file descriptor is NNN.  This needs to
33809         be worked around at run time, not compile time, since a
33810         program might be built on Solaris 8, where things work, and
33811         run on Solaris 10.
33812         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
33813         to use the following interface instead:
33814         (OPENAT_BUFFER_SIZE): New macro.
33815         (openat_proc_name): New function.
33816         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
33817         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
33818         Likewise.
33819         * lib/openat-proc.c: New file.
33820         * modules/openat (Files): Add lib/openat-proc.c.
33821         (Depends-on): Add same-inode, stdbool.
33822         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
33823
33824 2006-09-29  Bruno Haible  <bruno@clisp.org>
33825
33826         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
33827         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
33828         argument. Set stdout_closed before testing for ferror, not after.
33829         (fwriteerror, fwriteerror_no_ebadf): New functions.
33830
33831 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33832
33833         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
33834
33835 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
33836
33837         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
33838         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
33839
33840 2006-09-28  Jim Meyering  <jim@meyering.net>
33841
33842         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
33843         Include <unistd.h>.
33844
33845 2006-09-28  Bruno Haible  <bruno@clisp.org>
33846
33847         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
33848         * modules/linkedhash-list (Depends-on): Likewise.
33849         * modules/rbtreehash-list (Depends-on): Likewise.
33850
33851 2006-09-28  Bruno Haible  <bruno@clisp.org>
33852
33853         * lib/strndup.h: Simplify the redefinition of strndup.
33854         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
33855         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
33856
33857 2006-09-28  Bruno Haible  <bruno@clisp.org>
33858
33859         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
33860         * lib/gl_linkedhash_list.c: Likewise.
33861         * lib/gl_rbtreehash_list.c: Likewise.
33862
33863 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
33864
33865         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
33866         getaddrinfo.
33867
33868         * lib/__fpending.h: Don't include <stdio_ext.h> unless
33869         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
33870         it causes <stdio_ext.h> to cause a compile-time error.
33871         Problem reported by Nelson H. F. Beebe.
33872         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
33873         of HAVE_DECL___PENDING.
33874
33875         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
33876         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
33877         declaration.
33878
33879 2006-09-27  Jim Meyering  <jim@meyering.net>
33880
33881         This file could end up with a definition for a function
33882         named __strndup, rather than rpl_strndup on a system with
33883         incomplete weak_alias support.
33884         * lib/strndup.c (strndup): Rename from __strndup.
33885         Remove #defines that used to map __strndup to strndup.
33886         Don't use K&R prototypes.
33887         Remove LIBC-related code, since this file is not sync'd with glibc.
33888         * lib/strndup.h: Revamp, accordingly.
33889         * m4/strndup.m4: Modernize.
33890
33891 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
33892
33893         * modules/savewd (Depends-on): Add 'raise'.
33894         * lib/savewd.c: Include <signal.h>, for 'raise'.
33895
33896 2006-09-26  Jim Meyering  <jim@meyering.net>
33897
33898         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
33899         when we detect Darwin 8.7.0's acl_get_file bug.
33900         Rearrange to perform the new (below) run-test while $LIBS
33901         contains any acl-related library.  Set USE_ACL at the end.
33902         (gl_ACL_GET_FILE): New function.
33903
33904 2006-09-26  Eric Blake  <ebb9@byu.net>
33905
33906         * lib/verror.c: Include <config.h> unconditionally.
33907
33908 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
33909
33910         * modules/clock-time (Maintainer): Add self.
33911         * modules/getlogin_r (Depends-on): Add extensions.
33912
33913 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33914
33915         * modules/clock-time: New module.
33916         * modules/nanosleep (Depends-on): Add clock-time.
33917         * modules/gethrxtime (Depends-on): Likewise.
33918         * modules/gettime (Depends-on): Likewise.
33919         * modules/settime (Depends-on): Likewise.
33920
33921         * modules/fts-lgpl: Depend on openat.
33922         * modules/mkancesdirs: Depend on savewd.
33923         * modules/mkdir-p: Likewise.
33924
33925 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33926
33927         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
33928
33929         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
33930         `gl_have_arbitrary_file_name_length_limit' to
33931         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
33932         actually works between configure runs.
33933
33934 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33935             Bruno Haible  <bruno@clisp.org>
33936
33937         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
33938
33939 2006-09-25  Jim Meyering  <jim@meyering.net>
33940
33941         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
33942         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
33943
33944 2006-09-25  Eric Blake  <ebb9@byu.net>
33945
33946         * gnulib-tool (func_import, func_create_testdir): Fix typos in
33947         exec's in 2006-09-18 patch when shuffling fds.
33948
33949 2006-09-25  Bruno Haible  <bruno@clisp.org>
33950
33951         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
33952         Reported by Jim Meyering.
33953
33954 2006-09-24  Jim Meyering  <jim@meyering.net>
33955
33956         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
33957         compare a pointer against a literal "0".  That caused failures with
33958         at least HP-UX's hpcc.
33959
33960 2006-09-22  Simon Josefsson  <jas@extundo.com>
33961
33962         * modules/gc-sha1:
33963         * modules/gc-md4:
33964         * modules/gc-hmac-sha1:
33965         * modules/gc-hmac-md5:
33966         * modules/gc-des:
33967         * modules/gc-arcfour: Distribute more files.
33968
33969 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33970
33971         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
33972         (gl_linked_iterator_from_to): Initialize struct completely.
33973         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
33974         (gl_tree_iterator_from_to): Likewise
33975         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
33976         * lib/gl_array_list.c [lint] (gl_array_iterator)
33977         (gl_array_iterator_from_to): Likewise.
33978         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
33979         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
33980         (gl_carray_iterator_from_to): Likewise.
33981
33982         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
33983         * lib/md4.c (md4_process_block): Remove unused variable.
33984         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
33985         parentheses for clarity.
33986
33987 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33988
33989         * modules/bison-i18n (Depends-on): Add gettext.
33990
33991 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33992
33993         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
33994         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
33995         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
33996         also add missing comma that caused broken test.
33997         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
33998         stdlib.h, for `abort'.
33999         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
34000         variables.
34001         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
34002         include unistd.h if present, for `rmdir'.
34003         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
34004         variables.
34005         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
34006         in the process include standard headers for prototypes.
34007         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
34008         gets declared on GNU/Linux.
34009         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
34010         unistd.h, for `rmdir'.
34011         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
34012
34013         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
34014         always true.
34015         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
34016
34017         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
34018
34019 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34020
34021         * gnulib-tool (func_version): Create output all at once.  This
34022         may help avoid triggering unnecessary SIGPIPEs, and at any
34023         rate it doesn't hurt.
34024
34025 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34026             Bruno Haible  <bruno@clisp.org>
34027
34028         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
34029         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
34030         * m4/signed.m4 (bh_C_SIGNED): Likewise.
34031
34032         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
34033         (gl_FUNC_VASPRINTF): Invoke it.
34034
34035 2006-09-22  Bruno Haible  <bruno@clisp.org>
34036
34037         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
34038         getloadavg.c as first argument.
34039
34040 2006-09-22  Bruno Haible  <bruno@clisp.org>
34041
34042         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
34043         at the beginning of the gl_INIT macro.
34044         * modules/getloadavg (configure.ac): Pass $gl_source_base to
34045         gl_GETLOADAVG.
34046
34047 2006-09-22  Bruno Haible  <bruno@clisp.org>
34048
34049         * gnulib-tool (func_create_megatestdir): Don't include the config-h
34050         module.
34051         Suggested by Ralf Wildenhues.
34052
34053 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
34054
34055         Import this patch from libc:
34056
34057         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
34058
34059         * lib/regex_internal.c (re_string_reconstruct): Handle
34060         offset < pstr->valid_raw_len && pstr->offsets_needed case.
34061         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
34062         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
34063         re_string_context_at.
34064
34065         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
34066         now requires it.
34067         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
34068         gl_REGEX now does it for us.
34069         (gl_REGEX): Add test taken from
34070         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
34071
34072         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
34073         Check that large offsets work.  Modernize Autoconf usages.
34074         Prefer "yes" to mean a good thing rather than a bad.
34075         Don't put "#define mkstemp" in config.h, as this might interfere
34076         with standard system headers that "#define mkstemp mkstemp64".
34077
34078         * modules/mkstemp (Depends-on): Add extensions, so that
34079         mkstemp is visible on some platforms.
34080         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
34081         (Include): Change to "mkstemp.h" from <stdlib.h>.
34082         (Files): Add mkstemp.h.
34083
34084         * lib/mkstemp.h: New file, since some standard headers
34085         #define mkstemp.
34086         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
34087         Include "mkstemp.h".
34088         Make the _LIBC code resemble glibc original more,
34089         e.g., use K&R style.
34090         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
34091         (mkstemp): Remove, since mkstemp.h does this for us.
34092         * lib/stdlib--.h: Include mkstemp.h.
34093
34094         Import this patch from libc:
34095
34096         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
34097
34098         * lib/tempname.c (__gen_tempname): Change attempts_min
34099         into a macro.  Use preprocessor to decide how to initialize
34100         attempts [Coverity CID 67].
34101
34102 2006-09-20  Bruno Haible  <bruno@clisp.org>
34103
34104         * lib/mkdtemp.c: Import from libc.
34105         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
34106                 * sysdeps/posix/tempname.c (__gen_tempname): Change
34107                 attempts_min into a macro.  Use preprocessor to decide how to
34108                 initialize attempts [Coverity CID 67].
34109         2001-11-27  Paul Eggert  <eggert@twinsun.com>
34110                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
34111                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
34112
34113 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34114
34115         * gnulib-tool (func_exit): New function, to allow to pass the
34116         exit status portably through the trap.  Use everywhere.
34117         (--help, --version): Signal a write error.
34118         (trap): catch SIGPIPE, for write errors.
34119         Exit at the end of the trap, with the correct exit status.
34120
34121 2006-09-19  Karl Berry  <karl@gnu.org>
34122
34123         * doc/gnulib.texi: note about the license texinfo files.
34124
34125 2006-09-19  Eric Blake  <ebb9@byu.net>
34126
34127         * gnulib-tool: Avoid space-tab.
34128
34129 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
34130
34131         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
34132         that prevented coreutils 6.1 from building.  Problem reported
34133         by Petter Reinholdtsen.
34134
34135 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
34136
34137         * gnulib-tool (avoidlist): Fix typo that broke options like
34138         --avoid=lock that are used by coreutils bootstrap.
34139
34140 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
34141
34142         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
34143         more systematically.
34144
34145 2006-09-18  Jim Meyering  <jim@meyering.net>
34146
34147         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
34148
34149 2006-09-18  Bruno Haible  <bruno@clisp.org>
34150
34151         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
34152
34153 2006-09-18  Bruno Haible  <bruno@clisp.org>
34154
34155         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
34156         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
34157         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
34158         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
34159         * m4/gettext.m4: Require autoconf >= 2.52.
34160         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
34161         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
34162         of gl_cv_header_inttypes_h.
34163
34164 2006-09-18  Bruno Haible  <bruno@clisp.org>
34165
34166         * lib/javaversion.c: Include configmake.h.
34167
34168 2006-09-18  Bruno Haible  <bruno@clisp.org>
34169
34170         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
34171         avoid that the while loops be executed in a subshell.
34172
34173 2006-09-18  Bruno Haible  <bruno@clisp.org>
34174
34175         * MODULES.html.sh (func_module): Break long lines.
34176         Suggested by Bruce Korb <bkorb@gnu.org>.
34177
34178 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34179
34180         Speed up by a factor of 1.12.
34181         * gnulib-tool (nl): New variable.
34182         (func_import): Rewrite include directive extraction to only read each
34183         directive once.
34184
34185 2006-09-17  Bruno Haible  <bruno@clisp.org>
34186
34187         * modules/javaversion (Makefile.am): Remove DEFS setting.
34188         (Depends-on): Add configmake, for PKGDATADIR definition.
34189
34190 2006-09-17  Bruno Haible  <bruno@clisp.org>
34191
34192         * gnulib-tool (func_create_testdir): Rewrite all files at once.
34193
34194 2006-09-17  Bruno Haible  <bruno@clisp.org>
34195
34196         * gnulib-tool (func_append): New function, stolen from libtool.m4.
34197         (func_modules_transitive_closure, func_modules_add_dummy,
34198         func_modules_to_filelist, func_import, func_create_testdir,
34199         func_create_megatestdir, ...): Use it wherever possible.
34200         Suggested by Ralf Wildenhues.
34201
34202 2006-09-16  Karl Berry  <karl@gnu.org>
34203
34204         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
34205         to avoid sectioning errors.
34206         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
34207         [ifinfo]: blank line after @center-ed titles.
34208         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
34209         Spell FSF address consistently with others.
34210         (These changes approved by rms.)
34211
34212 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34213
34214         Speed up by a factor of 1.61.
34215         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
34216         already checked module names again.
34217
34218 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34219
34220         Speed up by a factor of 1.13.
34221         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
34222         for new_files, and the input to func_add_or_update.
34223
34224 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34225
34226         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
34227         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
34228
34229 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
34230
34231         * modules/mkancesdirs (Depends-on): Add fcntl.
34232         * modules/savewd: New file.
34233         * MODULES.html.sh (File system functions): Add savewd.
34234
34235         * modules/configmake (Makefile.am): Add support for the
34236         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
34237
34238 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
34239
34240         * m4/savewd.m4: New file.
34241
34242 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
34243
34244         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
34245         (dirchownmod): New arg FD.  All callers changed.
34246         Use FD rather than opening the directory ourself, as opening is
34247         now the caller's responsibility.
34248         * lib/dirchownmod.h: Likewise.
34249         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
34250         hosts that require <sys/types.h> before <sys/stat.h>.  Include
34251         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
34252         (test_dir): Remove.
34253         (mkancesdirs): Return length of prefix of FILE that has already
34254         been made, or -2 if there is a child doing the work.  Redo
34255         algorithm so that it is O(N) rather than O(N**2).  Optimize away
34256         ".", and treat ".." specially since it might stray back into
34257         already-created areas.  Use a subprocess if necessary.  New arg
34258         WD; all users changed.  MAKE_DIR function should now return 1
34259         if it creates a directory that is not readable.  Return -2 if
34260         a child process is spun off.
34261         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
34262         Adjust signature to match code.
34263         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
34264         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
34265         all users changed.
34266         * lib/savewd.c, lib/savewd.h: New files.
34267
34268 2006-09-15  Jim Meyering  <jim@meyering.net>
34269
34270         * modules/rename-dest-slash: New module.
34271         * MODULES.html.sh (posix_compat): Add it here.
34272
34273         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
34274
34275 2006-09-15  Jim Meyering  <jim@meyering.net>
34276
34277         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
34278         file.
34279
34280         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
34281
34282 2006-09-15  Jim Meyering  <jim@meyering.net>
34283
34284         * lib/rename-dest-slash.c (has_trailing_slash): Use
34285         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
34286         (rpl_rename_dest_slash): Perform the cheaper trailing slash
34287         test before testing whether SRC is a directory.
34288         Suggestions from Bruno Haible.
34289
34290         Avoid a warning about an unused variable.
34291         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
34292         into the #ifdef block where it's used.
34293
34294         * lib/rename-dest-slash.c: New file.
34295
34296 2006-09-14  Bruno Haible  <bruno@clisp.org>
34297
34298         * lib/allocsa.c: Include <config.h> unconditionally.
34299         * lib/asnprintf.c: Likewise.
34300         * lib/asprintf.c: Likewise.
34301         * lib/c-strcasecmp.c: Likewise.
34302         * lib/c-strcasestr.c: Likewise.
34303         * lib/c-strncasecmp.c: Likewise.
34304         * lib/c-strstr.c: Likewise.
34305         * lib/classpath.c: Likewise.
34306         * lib/clean-temp.c: Likewise.
34307         * lib/concatpath.c: Likewise.
34308         * lib/copy-file.c: Likewise.
34309         * lib/csharpcomp.c: Likewise.
34310         * lib/csharpexec.c: Likewise.
34311         * lib/execute.c: Likewise.
34312         * lib/fatal-signal.c: Likewise.
34313         * lib/findprog.c: Likewise.
34314         * lib/fwriteerror.c: Likewise.
34315         * lib/gl_array_list.c: Likewise.
34316         * lib/gl_array_oset.c: Likewise.
34317         * lib/gl_avltree_list.c: Likewise.
34318         * lib/gl_avltree_oset.c: Likewise.
34319         * lib/gl_avltreehash_list.c: Likewise.
34320         * lib/gl_carray_list.c: Likewise.
34321         * lib/gl_linked_list.c: Likewise.
34322         * lib/gl_linkedhash_list.c: Likewise.
34323         * lib/gl_list.c: Likewise.
34324         * lib/gl_oset.c: Likewise.
34325         * lib/gl_rbtree_list.c: Likewise.
34326         * lib/gl_rbtree_oset.c: Likewise.
34327         * lib/gl_rbtreehash_list.c: Likewise.
34328         * lib/imaxabs.c: Likewise.
34329         * lib/imaxdiv.c: Likewise.
34330         * lib/javacomp.c: Likewise.
34331         * lib/javaexec.c: Likewise.
34332         * lib/javaversion.c: Likewise.
34333         * lib/linebreak.c: Likewise.
34334         * lib/localcharset.c: Likewise.
34335         * lib/lock.c: Likewise.
34336         * lib/mbchar.c: Likewise.
34337         * lib/mbswidth.c: Likewise.
34338         * lib/mkdtemp.c: Likewise.
34339         * lib/pipe.c: Likewise.
34340         * lib/printf-args.c: Likewise.
34341         * lib/printf-parse.c: Likewise.
34342         * lib/progname.c: Likewise.
34343         * lib/progreloc.c: Likewise.
34344         * lib/readlink.c: Likewise.
34345         * lib/sh-quote.c: Likewise.
34346         * lib/stpcpy.c: Likewise.
34347         * lib/stpncpy.c: Likewise.
34348         * lib/strcasecmp.c: Likewise.
34349         * lib/strcasestr.c: Likewise.
34350         * lib/strcspn.c: Likewise.
34351         * lib/striconv.c: Likewise.
34352         * lib/strncasecmp.c: Likewise.
34353         * lib/strnlen1.c: Likewise.
34354         * lib/strstr.c: Likewise.
34355         * lib/strtok_r.c: Likewise.
34356         * lib/tls.c: Likewise.
34357         * lib/tmpdir.c: Likewise.
34358         * lib/unicodeio.c: Likewise.
34359         * lib/unsetenv.c: Likewise.
34360         * lib/vasnprintf.c: Likewise.
34361         * lib/vasprintf.c: Likewise.
34362         * lib/wait-process.c: Likewise.
34363         * lib/xallocsa.c: Likewise.
34364         * lib/xsetenv.c: Likewise.
34365         * lib/xstriconv.c: Likewise.
34366
34367 2006-09-13  Simon Josefsson  <jas@extundo.com>
34368
34369         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
34370         that internally, suggested by Ralf Wildenhues
34371         <Ralf.Wildenhues@gmx.de>.
34372
34373 2006-09-13  Simon Josefsson  <jas@extundo.com>
34374
34375         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
34376         @LIBOBJS@.
34377         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34378
34379 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
34380
34381         * lib/_fpending.c: Include <config.h> unconditionally, since we no
34382         longer worry about uses that don't define HAVE_CONFIG_H.
34383         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
34384         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
34385         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
34386         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
34387         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
34388         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
34389         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
34390         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
34391         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
34392         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
34393         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
34394         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
34395         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
34396         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
34397         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
34398         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
34399         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
34400         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
34401         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
34402         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
34403         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
34404         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
34405         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
34406         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
34407         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
34408         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
34409         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
34410         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
34411         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
34412         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
34413         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
34414         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
34415         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
34416         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
34417         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
34418         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
34419         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
34420         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
34421         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
34422         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
34423         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
34424         Likewise.
34425
34426 2006-09-13  Eric Blake  <ebb9@byu.net>
34427
34428         * lib/getopt.c: Fix typo in last commit.
34429
34430 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
34431
34432         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
34433         dgettext.
34434
34435 2006-09-12  Jim Meyering  <jim@meyering.net>
34436
34437         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
34438         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
34439         Reported by Nelson H. F. Beebe.
34440
34441 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
34442
34443         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
34444         program_invocation_name and program_invocation_short_name are
34445         initialized.
34446         * lib/argp-namefrob.h: Move declarations of program_invocation_name
34447         and program_invocation_short_name to argp.h, so they are visible
34448         to user programs.
34449         * lib/argp.h: Likewise
34450
34451 2006-09-10  Bruno Haible  <bruno@clisp.org>
34452
34453         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
34454         m4/inttypes_h.m4, m4/uintmax_t.m4.
34455
34456 2006-09-10  Bruno Haible  <bruno@clisp.org>
34457
34458         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
34459         gl_AC_TYPE_UINTMAX_T.
34460
34461 2006-09-10  Bruno Haible  <bruno@clisp.org>
34462
34463         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
34464
34465 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
34466
34467         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
34468         convention.  Text proposed by Bruno Haible.
34469         (struct argp_option): Document the use of N_() wrappers.
34470
34471         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
34472         '\v', and translate the two parts separately, instead of feeding
34473         the whole string to gettext.  This allows to exclude
34474         '\v' from the strings visible to the translator by writing doc
34475         strings as N_("..") "\v" N_("..").
34476
34477 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
34478
34479         * config/srclist.txt: Undo latest change; the bug was fixed.
34480
34481 2006-09-09  Bruno Haible  <bruno@clisp.org>
34482
34483         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
34484         assignments if building a library without libtool.
34485         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
34486         in func_emit_lib_Makefile_am.
34487         (func_import): When building a static library libfoo.a, arrange to
34488         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
34489         (func_create_testdir): Likewise.
34490         * modules/gc (configure.ac, Makefile.am): If building statically,
34491         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
34492         * modules/iconvme (configure.ac, Makefile.am): Likewise.
34493         * modules/striconv (configure.ac, Makefile.am): Likewise.
34494         Based on a suggestion by Ralf Wildenhues.
34495
34496 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
34497
34498         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
34499         Check for unistd.h too, since Autoconf doesn't assume POSIX.
34500         Also:
34501
34502         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
34503         Add year_2050_test to catch glibc bug 2821
34504         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
34505
34506         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
34507         Prefer #ifdef to #if.
34508
34509         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
34510         Return from 'main' instead of calling 'exit'.
34511
34512 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
34513
34514         * lib/mktime.c (guess_time_tm): Fix bug where mktime
34515         returned the maximum time_t value rather than (time_t) -1.
34516         Problem originally reported by William Bardwell
34517         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
34518
34519         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
34520         Moved to here ...
34521         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
34522         ... from here.
34523
34524 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
34525
34526         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
34527         2821 is fixed.
34528
34529 2006-09-08  Jim Meyering  <jim@meyering.net>
34530
34531         Don't make generated files read-only.  That would bother too many
34532         people.  However, do retain the ability to work when targets are
34533         read-only: remove the destination and temporary files before writing
34534         them (when generated via sed or echo), or by using the -f option for
34535         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
34536         * modules/alloca-opt, modules/argz, modules/arpa_inet:
34537         * modules/byteswap, modules/configmake, modules/fcntl:
34538         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
34539         * modules/localcharset, modules/netinet_in, modules/poll:
34540         * modules/stdbool, modules/stdint, modules/sys_select:
34541         * modules/sys_socket, modules/sys_stat, modules/sysexits:
34542
34543 2006-09-08  Jim Meyering  <jim@meyering.net>
34544
34545         Avoid new build failure on FreeBSD 6.0.
34546         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
34547         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
34548         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
34549
34550 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34551
34552         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
34553
34554 2006-09-07  Jim Meyering  <jim@meyering.net>
34555
34556         Fix global typo in last change: use chmod u-w, not chmod u-x.
34557         Spotted by Paul Eggert and Bruce Korb.
34558         * modules/alloca-opt, modules/argz, modules/arpa_inet:
34559         * modules/byteswap, modules/configmake, modules/fcntl:
34560         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
34561         * modules/localcharset, modules/netinet_in, modules/poll:
34562         * modules/stdbool, modules/stdint, modules/sys_select:
34563         * modules/sys_socket, modules/sys_stat, modules/sysexits:
34564
34565 2006-09-06  Jim Meyering  <jim@meyering.net>
34566
34567         Make generated files be read-only.
34568         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
34569         Ensure that each generated file is now read-only.
34570         * modules/argz: Likewise.
34571         * modules/arpa_inet: Likewise.
34572         * modules/byteswap: Likewise.
34573         * modules/configmake: Likewise.
34574         * modules/fcntl: Likewise.
34575         * modules/fnmatch: Likewise.
34576         * modules/getopt: Likewise.
34577         * modules/glob: Likewise.
34578         * modules/inttypes: Likewise.
34579         * modules/netinet_in: Likewise.
34580         * modules/poll: Likewise.
34581         * modules/stdbool: Likewise.
34582         * modules/stdint: Likewise.
34583         * modules/sys_select: Likewise.
34584         * modules/sys_socket: Likewise.
34585         * modules/sys_stat: Likewise.
34586         * modules/sysexits: Likewise.
34587         * modules/localcharset: Same as above, but continue using temporary
34588         file named "t-$@" (why different?) rather than the "$@-t" used
34589         everywhere else.
34590
34591         * modules/sysexits (Makefile.am): Replace literal occurrences
34592         of "sysexit.h" more readable, and more consistent, "$@".
34593
34594 2006-09-06  Bruno Haible  <bruno@clisp.org>
34595
34596         * modules/striconv: New file.
34597         * modules/xstriconv: New file.
34598         * MODULES.html.sh (Internationalization functions): Add striconv,
34599         xstriconv.
34600
34601 2006-09-06  Bruno Haible  <bruno@clisp.org>
34602
34603         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
34604         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
34605         not using libtool correctly.
34606
34607 2006-09-06  Bruno Haible  <bruno@clisp.org>
34608
34609         * lib/striconv.h: New file.
34610         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
34611         iconvstring.c.
34612         * lib/xstriconv.h: New file.
34613         * lib/xstriconv.c: New file.
34614
34615 2006-09-06  Bruno Haible  <bruno@clisp.org>
34616
34617         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
34618         lib_..._LDFLAGS.
34619
34620 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34621
34622         * lib/argz_.h: Sync from Libtool.
34623
34624         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
34625                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
34626
34627         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
34628
34629 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
34630
34631         * modules/trim: New file.
34632
34633 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
34634
34635         * lib/trim.h: New file.
34636         * lib/trim.c: New file.
34637
34638 2006-09-05  Bruno Haible  <bruno@clisp.org>
34639
34640         * MODULES.html.sh (String handling): Add trim.
34641
34642 2006-09-04  Karl Berry  <karl@gnu.org>
34643
34644         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
34645         until next release.
34646
34647 2006-09-03  Bruno Haible  <bruno@clisp.org>
34648
34649         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
34650         correctly.
34651
34652 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
34653
34654         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
34655         not gl_GETLOADAVG.  Omit unneeded semicolons.
34656         Problems reported by Ralf Wildenhues in
34657         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
34658         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
34659         at the end, which is the usual gnulib style.
34660
34661         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
34662         of doing all the work ourselves.
34663         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
34664         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
34665
34666 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
34667
34668         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
34669         Problem reported by Ralf Wildenhues in
34670         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
34671
34672         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
34673         HAVE_STRUCT_STATFS_F_FSTYPENAME.
34674
34675 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
34676
34677         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
34678         yesterday's patch by changing test -n to test -z.
34679
34680 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
34681
34682         * modules/getloadavg (Files): Add m4/getloadavg.m4.
34683         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
34684         the former is now obsolescent.
34685
34686         * modules/chdir-long (Depends-on): Add fcntl.
34687
34688 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
34689
34690         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
34691         obsolescent, and programs should use gnulib instead.
34692         * m4/getloadavg.m4: New file, with contents taken from Autoconf
34693         but with prefixes changed.
34694
34695 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
34696
34697         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
34698         or stdbool.h, because they might not exist while configuring.
34699
34700         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
34701         Don't include unistd.h or limits.h; not needed, since chdir-long.h
34702         does that for us.
34703         (O_DIRECTORY): Remove.
34704
34705 2006-08-31  Eric Blake  <ebb9@byu.net>
34706
34707         * gnulib-tool: Don't let emacs change spaces to TAB.
34708
34709 2006-08-31  Bruno Haible  <bruno@clisp.org>
34710
34711         * gnulib-tool: When calling func_import more than once, do it in a
34712         subshell.
34713         Reported by Eric Blake <ebb9@byu.net>.
34714
34715 2006-08-31  Bruno Haible  <bruno@clisp.org>
34716
34717         * gnulib-tool (nl): Remove variable.
34718         (sed_transform_lib_file): Use more robust test for config-h module.
34719         (func_import): Fix typo in 2006-08-25 patch.
34720
34721 2006-08-31  Bruno Haible  <bruno@clisp.org>
34722
34723         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
34724         specified, augment Makefile.am variables instead of assigning them.
34725
34726 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
34727
34728         Work around a bug in both the Linux and SunOS 64-bit kernels:
34729         nanosleep mishandles sleeps for longer than 2**31 seconds.
34730         Problem reported by Frank v Waveren in
34731         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
34732         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
34733         Check for nanosleep bug.
34734         (LIB_NANOSLEEP): Append clock_gettime library if needed.
34735
34736 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
34737
34738         Work around a bug in both the Linux and SunOS 64-bit kernels:
34739         nanosleep mishandles sleeps for longer than 2**31 seconds.
34740         Problem reported by Frank v Waveren in
34741         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
34742         * lib/nanosleep.c (BILLION): New constant.
34743         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
34744         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
34745         implementation.
34746
34747 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
34748
34749         * modules/nanosleep (Depends-on): Add gettime.
34750
34751 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
34752         and Simon Josefsson  <jas@extundo.com>
34753         and Oskar Liljeblad  <oskar@osk.mine.nu>
34754
34755         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
34756         * gnulib-tool (func_import): New license type 'unmodifiable license
34757         text'.
34758         * modules/fdl: Use it.  Longer description.
34759         * module/gpl, module/lgpl: New files.
34760
34761 2006-08-30  Jim Meyering  <jim@meyering.net>
34762
34763         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
34764         shadowing the parameter.
34765
34766 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34767
34768         Sync from Libtool:
34769
34770         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34771
34772         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
34773         sharing with gnulib.  Report by Eric Blake.
34774
34775 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
34776
34777         * modules/isapipe: New file.
34778         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
34779
34780 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
34781
34782         * modules/configmake (Makefile.am): Add a comment, and omit
34783         the CONFIGMAKE_ prefix from generated macro names.  Suggested
34784         by Bruno Haible.
34785
34786 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
34787
34788         * m4/isapipe.m4: New file.
34789
34790 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
34791
34792         * lib/isapipe.c, lib/isapipe.h: New files.
34793
34794 2006-08-29  Jim Meyering  <jim@meyering.net>
34795
34796         * modules/configmake (Makefile.am): Make configmake.h depend on
34797         Makefile.  Otherwise, a stale configmake.h could hang around.
34798
34799 2006-08-29  Eric Blake  <ebb9@byu.net>
34800
34801         * lib/error.c (error_at_line, print_errno_message): Match libc, after
34802         resolution of upstream bug 3044.
34803
34804 2006-08-29  Bruno Haible  <bruno@clisp.org>
34805
34806         * modules/localcharset (Depends-on): Add configmake.
34807         (Makefile.am): Remove setting of LIBDIR through DEFS.
34808
34809 2006-08-29  Bruno Haible  <bruno@clisp.org>
34810
34811         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
34812         defined.
34813
34814 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
34815
34816         * modules/fcntl: New file.
34817         * modules/chdir-safer (Depends-on): Add fcntl.
34818         * modules/fts: Likewise.
34819         * modules/mkdir-p: Likewise.
34820
34821         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
34822         This undoes the most recent change, since we're now addressing the
34823         problem in a different way.
34824
34825         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
34826         into output, since the output might be called Makefile.am even
34827         if $makefile_name is something different.
34828         (func_import): Use $makefile_am rather than
34829         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
34830         empty.
34831
34832         * modules/inttypes (Files): Add m4/inttypes-h.m4.
34833
34834 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
34835
34836         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
34837         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
34838         recent change to stdint.m4, since we're now addressing the problem in a
34839         different way.
34840
34841 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
34842
34843         * m4/fcntl_h.m4: New file.
34844
34845 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
34846
34847         * lib/fcntl_.h: New file.
34848         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
34849         the fcntl module.
34850         * lib/dirchownmod.c: Likewise.
34851         * lib/fts.c: Likewise.
34852
34853         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
34854         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
34855         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
34856         just before including <inttypes.h>, to avoid circular inclusion.
34857
34858 2006-08-28  Jim Meyering  <jim@meyering.net>
34859
34860         * doc/visibility.texi: Actually read and correct the grammar of the
34861         sentence affected by yesterday's change.
34862
34863 2006-08-28  Eric Blake  <ebb9@byu.net>
34864
34865         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
34866         needs wrapper.
34867
34868 2006-08-28  Eric Blake  <ebb9@byu.net>
34869
34870         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
34871
34872 2006-08-28  Eric Blake  <ebb9@byu.net>
34873
34874         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
34875
34876 2006-08-28  Bruno Haible  <bruno@clisp.org>
34877
34878         * modules/c-strstr: New file, from GNU gettext.
34879         * MODULES.html.sh (String handling): Add c-strstr.
34880
34881 2006-08-28  Bruno Haible  <bruno@clisp.org>
34882
34883         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
34884         macros.
34885         Reported by Eric Blake.
34886
34887 2006-08-28  Bruno Haible  <bruno@clisp.org>
34888
34889         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
34890         (VASNPRINTF): Return a string of length > INT_MAX without failing.
34891         * lib/vasprintf.c: Include errno.h, limits.h.
34892         (EOVERFLOW): New fallback definition.
34893         (vasprintf): Test here whether the string length is > INT_MAX.
34894         * lib/vsnprintf.c: Include errno.h, limits.h.
34895         (EOVERFLOW): New fallback definition.
34896         (vsnprintf): Fix bug when generated string was too long for the buffer.
34897         Test here whether the string length is > INT_MAX.
34898
34899 2006-08-28  Bruno Haible  <bruno@clisp.org>
34900
34901         * lib/inttypes_.h (SCNX*): Remove definitions.
34902         Reported by Eric Blake.
34903
34904 2006-08-28  Bruno Haible  <bruno@clisp.org>
34905
34906         * lib/c-strstr.h: New file, from GNU gettext.
34907         * lib/c-strstr.c: New file, from GNU gettext.
34908
34909 2006-08-28  Bruno Haible  <bruno@clisp.org>
34910
34911         * gnulib-tool: Reorder some statements.
34912
34913 2006-08-28  Bruno Haible  <bruno@clisp.org>
34914
34915         * gnulib-tool: New option --makefile-name.
34916         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
34917         $makefile_name.
34918         (func_import): Write $makefile_name to the cache file, and read it from
34919         there unless explicitly specified. Use $makefile_name as file name
34920         instead of Makefile.am. Adjust the recommendations accordingly.
34921
34922 2006-08-28  Bruno Haible  <bruno@clisp.org>
34923
34924         * gnulib-tool (func_verify_module): Check against misapplying patch.
34925
34926 2006-08-28  Bruno Haible  <bruno@clisp.org>
34927
34928         * gnulib-tool (func_relativize, func_relconcat): New functions.
34929         Give an error if --local-dir is given with --update.
34930         Remove trailing slashes from $local_gnulib_dir.
34931         (func_import): Store the relativized $local_gnulib_dir in
34932         gnulib-cache.m4, and read it from there if not specified explicitly.
34933
34934 2006-08-28  Bruno Haible  <bruno@clisp.org>
34935
34936         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
34937         is the current directory. Respect also $local_gnulib_dir.
34938
34939 2006-08-28  Bruno Haible  <bruno@clisp.org>
34940             Simon Josefsson  <jas@extundo.com>
34941
34942         BeOS portability.
34943         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
34944
34945 2006-08-27  Jim Meyering  <jim@meyering.net>
34946
34947         * doc/visibility.texi: Remove duplicate word: "pointer".
34948
34949 2006-08-26  Bruno Haible  <bruno@clisp.org>
34950
34951         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
34952         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
34953         (Makefile.am): Create inttypes.h from inttypes_.h.
34954         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
34955
34956         * modules/imaxabs: New file.
34957
34958         * modules/imaxdiv: New file.
34959
34960 2006-08-26  Bruno Haible  <bruno@clisp.org>
34961
34962         * m4/inttypes.m4: New file.
34963         * m4/_inttypes_h.m4: Remove file.
34964         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
34965         PRI_MACROS_BROKEN.
34966         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
34967
34968         * m4/imaxabs.m4: New file.
34969
34970         * m4/imaxdiv.m4: New file.
34971
34972 2006-08-26  Bruno Haible  <bruno@clisp.org>
34973
34974         * lib/inttypes_.h: New file.
34975         * lib/inttypes.h: Remove file.
34976         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
34977
34978         * lib/imaxabs.c: New file.
34979
34980         * lib/imaxdiv.c: New file.
34981
34982 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
34983
34984         New config-h module, so that "make" output needn't be cluttered
34985         by -DHAVE_CONFIG_H.
34986         * MODULES.html.sh (Support for building libraries and executables):
34987         Add config-h.
34988         * modules/config-h: New file.
34989         * gnulib-tool (nl, sed_transform_lib_file): New vars.
34990         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
34991         the config-h module is used.
34992
34993         New configmake module, so that "make" output needn't be cluttered
34994         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
34995         * MODULES.html.sh (Support for building libraries and executables):
34996         Add configmake.
34997         * modules/configmake: New file.
34998
34999 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
35000
35001         * m4/config-h.m4: New file.
35002
35003 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
35004
35005         * config/srclist.txt: Add elisp-comp.
35006
35007 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
35008
35009         * MODULES.html.sh (Support for building libraries and executables):
35010         Add elisp-comp.
35011         * build-aux/elisp-comp: New file.
35012         * modules/elisp-comp: New file.
35013
35014 2006-08-24  Bruno Haible  <bruno@clisp.org>
35015
35016         * gnulib-tool (func_create_testdir): Use non-default values of
35017         sourcebase and m4base.
35018
35019 2006-08-24  Bruno Haible  <bruno@clisp.org>
35020
35021         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
35022         HTML structure.
35023
35024 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
35025
35026         * modules/openat (Depends-on): Add lchown.
35027
35028 2006-08-23  Bruno Haible  <bruno@clisp.org>
35029
35030         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
35031         of gl_LOCK_EARLY instead of gl_LOCK.
35032
35033 2006-08-23  Bruno Haible  <bruno@clisp.org>
35034
35035         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
35036         on OSF/1 to no.
35037         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
35038
35039 2006-08-23  Bruno Haible  <bruno@clisp.org>
35040
35041         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
35042         as unusable.
35043
35044         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
35045         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
35046         (gl_LOCK): New macro.
35047
35048 2006-08-22  Simon Josefsson  <jas@extundo.com>
35049
35050         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
35051         to md5 module.
35052
35053 2006-08-22  Simon Josefsson  <jas@extundo.com>
35054
35055         * MODULES.html.sh: Add "Support for maintaining and release
35056         projects".
35057
35058         * build-aux/gnupload: New file, from coreutils.
35059
35060 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
35061
35062         Avoid the need for AC_LIBSOURCES in m4 macros.
35063         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
35064         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
35065         * modules/check-version (EXTRA_DIST): Add check-version.h.
35066         * modules/crc (EXTRA_DIST): Add crc.h.
35067         * modules/des (EXTRA_DIST): Add des.h.
35068         * modules/gc (EXTRA_DIST): Add gc.h.
35069         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
35070         * modules/getline (EXTRA_DIST): Add getline.h.
35071         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
35072         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
35073         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
35074         * modules/md2 (EXTRA_DIST): Add md2.h.
35075         * modules/md4 (EXTRA_DIST): Add md4.h.
35076         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
35077         * modules/read-file (EXTRA_DIST): Add read-file.h.
35078         * modules/readline (EXTRA_DIST): Add readline.h.
35079         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
35080         rijndael-api-fst.h.
35081
35082 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
35083
35084         * m4/rijndael.m4 (gl_ARCFOUR):
35085         * m4/arctwo.m4 (gl_ARCTWO):
35086         * m4/check-version.m4 (gl_CHECK_VERSION):
35087         * m4/crc.m4 (gl_CRC):
35088         * m4/des.m4 (gl_DES):
35089         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
35090         * m4/gc.m4 (gl_GC):
35091         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
35092         * m4/getline.m4 (gl_FUNC_GETLINE):
35093         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
35094         * m4/hmac-md5.m4 (gl_HMAC_MD5):
35095         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
35096         * m4/md2.m4 (gl_MD2):
35097         * m4/md4.m4 (gl_MD4):
35098         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
35099         * m4/read-file.m4 (gl_FUNC_READ_FILE):
35100         * m4/readline.m4 (gl_FUNC_READLINE):
35101         * m4/rijndael.m4 (gl_RIJNDAEL):
35102         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
35103         to get the necessary .h files and whatnot.
35104
35105 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
35106
35107         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
35108         gnulib rather than the other way around.
35109         * config/srclistvars.sh (COREUTILS): Remove.
35110
35111 2006-08-22  Jim Meyering  <jim@meyering.net>
35112
35113         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
35114
35115         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
35116
35117 2006-08-22  Eric Blake  <ebb9@byu.net>
35118
35119         * modules/regexprops-generic: New file.
35120         * MODULES.html.sh (Support for building documentation): List it.
35121
35122 2006-08-22  Eric Blake  <ebb9@byu.net>
35123
35124         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
35125         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
35126         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
35127         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
35128
35129 2006-08-22  Bruno Haible  <bruno@clisp.org>
35130
35131         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
35132         and lib_LTLIBRARIES like the other lib_* variables.
35133
35134 2006-08-22  Bruno Haible  <bruno@clisp.org>
35135
35136         * build-aux/x-to-1.in: New file, from GNU gettext.
35137
35138 2006-08-22  Bruno Haible  <bruno@clisp.org>
35139
35140         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
35141         <utmpx.h> exists.
35142
35143 2006-08-22  Bruno Haible  <bruno@clisp.org>
35144
35145         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
35146         <utmpx.h> exists.
35147
35148 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
35149
35150         BeOS portability.
35151         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
35152         exist.
35153         Problem reported by Bruno Haible.
35154
35155 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
35156
35157         Avoid the need for AC_LIBSOURCES in m4 macros.
35158         * modules/acl (EXTRA_DIST): Add acl.h.
35159         * modules/argmatch (Files): Add m4/argmatch.m4.
35160         (configure.ac): Add gl_ARGMATCH.
35161         (EXTRA_DIST): Renamed from lib_SOURCES, for
35162         consistency with the other modules.  Remove argmatch.c.
35163         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
35164         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
35165         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
35166         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
35167         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
35168         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
35169         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
35170         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
35171         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
35172         * modules/closeout (EXTRA_DIST): Add closeout.h.
35173         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
35174         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
35175         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
35176         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
35177         dirname.h; remove basename.c and stripslash.c.
35178         * modules/exclude (EXTRA_DIST): Add exclude.h.
35179         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
35180         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
35181         * modules/file-type (EXTRA_DIST): Add file-type.h.
35182         * modules/filemode (EXTRA_DIST): Add filemode.h.
35183         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
35184         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
35185         * modules/fpending (EXTRA_DIST): Add __fpending.h.
35186         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
35187         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
35188         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
35189         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
35190         * modules/getdate (EXTRA_DIST): Add getdate.c.
35191         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
35192         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
35193         * modules/getpass (EXTRA_DIST): Add getpass.h.
35194         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
35195         * modules/group-member (EXTRA_DIST): Add group-member.h.
35196         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
35197         * modules/hash (EXTRA_DIST): Add hash.h.
35198         * modules/human (EXTRA_DIST): Add human.h.
35199         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
35200         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
35201         * modules/lchown (EXTRA_DIST): Add lchown.h.
35202         * modules/long-options (EXTRA_DIST): Add long-options.h.
35203         * modules/lstat (EXTRA_DIST): Add lstat.h.
35204         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
35205         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
35206         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
35207         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
35208         * modules/memxor (EXTRA_DIST): Add memxor.h.
35209         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
35210         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
35211         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
35212         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
35213         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
35214         * modules/physmem (EXTRA_DIST): Add physmem.h.
35215         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
35216         * modules/posixver (EXTRA_DIST): Add posixver.h.
35217         * modules/quote (EXTRA_DIST): Add quote.h.
35218         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
35219         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
35220         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
35221         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
35222         regex_internal.h regexec.c.
35223         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
35224         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
35225         * modules/same (EXTRA_DIST): Add same.h.
35226         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
35227         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
35228         * modules/savedir (EXTRA_DIST): Add savedir.h.
35229         * modules/sha1 (EXTRA_DIST): Add sha1.h.
35230         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
35231         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
35232         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
35233         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
35234         * modules/strdup (EXTRA_DIST): Add strdup.h.
35235         * modules/strftime (EXTRA_DIST): Add strftime.h.
35236         * modules/strndup (EXTRA_DIST): Add strndup.h.
35237         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
35238         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
35239         * modules/time_r (EXTRA_DIST): Add time_r.h.
35240         * modules/timespec (EXTRA_DIST): Add timespec.h.
35241         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
35242         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
35243         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
35244         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
35245         * modules/userspec (EXTRA_DIST): Add userspec.h.
35246         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
35247         * modules/utimens (EXTRA_DIST): Add utimens.h.
35248         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
35249         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
35250         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
35251         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
35252         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
35253         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
35254         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
35255         * modules/yesno (EXTRA_DIST): Add yesno.h.
35256
35257 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
35258
35259         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
35260
35261         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
35262         * m4/dev-ino.m4, same-inode.m4: Remove.
35263
35264         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
35265         * m4/acl.m4 (AC_FUNC_ACL):
35266         * m4/backupfile.m4 (gl_BACKUPFILE):
35267         * m4/c-strtod.m4 (gl_C99_STRTOLD):
35268         * m4/canon-host.m4 (gl_CANON_HOST):
35269         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
35270         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
35271         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
35272         * m4/cloexec.m4 (gl_CLOEXEC):
35273         * m4/close-stream.m4 (gl_CLOSE_STREAM):
35274         * m4/closeout.m4 (gl_CLOSEOUT):
35275         * m4/dirfd.m4 (gl_FUNC_DIRFD):
35276         * m4/dirname.m4 (gl_DIRNAME):
35277         * m4/exclude.m4 (gl_EXCLUDE):
35278         * m4/exitfail.m4 (gl_EXITFAIL):
35279         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
35280         * m4/file-type.m4 (gl_FILE_TYPE):
35281         * m4/filemode.m4 (gl_FILEMODE):
35282         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
35283         * m4/fpending.m4 (gl_FUNC_FPENDING):
35284         * m4/fprintftime.m4 (gl_FPRINTFTIME):
35285         * m4/fts.m4 (gl_FUNC_FTS):
35286         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
35287         * m4/getdate.m4 (gl_GETDATE):
35288         * m4/gethrxtime.m4 (gl_GETHRXTIME):
35289         * m4/getpagesize.m4 (gl_GETPAGESIZE):
35290         * m4/getpass.m4 (gl_FUNC_GETPASS):
35291         * m4/gettime.m4 (gl_GETTIME):
35292         * m4/getugroups.m4 (gl_GETUGROUPS):
35293         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
35294         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
35295         * m4/hard-locale.m4 (gl_HARD_LOCALE):
35296         * m4/hash.m4 (gl_HASH):
35297         * m4/idcache.m4 (gl_IDCACHE):
35298         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
35299         * m4/lchown.m4 (gl_FUNC_LCHOWN):
35300         * m4/long-options.m4 (gl_LONG_OPTIONS):
35301         * m4/lstat.m4 (gl_FUNC_LSTAT):
35302         * m4/md5.m4 (gl_MD5):
35303         * m4/memcasecmp.m4 (gl_MEMCASECMP):
35304         * m4/memcoll.m4 (gl_MEMCOLL):
35305         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
35306         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
35307         * m4/memxor.m4 (gl_MEMXOR):
35308         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
35309         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
35310         * m4/modechange.m4 (gl_MODECHANGE):
35311         * m4/mountlist.m4 (gl_MOUNTLIST):
35312         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
35313         * m4/openat.m4 (gl_FUNC_OPENAT):
35314         * m4/pathmax.m4 (gl_PATHMAX):
35315         * m4/physmem.m4 (gl_PHYSMEM):
35316         * m4/posixtm.m4 (gl_POSIXTM):
35317         * m4/posixver.m4 (gl_POSIXVER):
35318         * m4/quote.m4 (gl_QUOTE):
35319         * m4/quotearg.m4 (gl_QUOTEARG):
35320         * m4/readtokens.m4 (gl_READTOKENS):
35321         * m4/readutmp.m4 (gl_READUTMP):
35322         * m4/regex.m4 (gl_REGEX):
35323         * m4/safe-read.m4 (gl_SAFE_READ):
35324         * m4/safe-write.m4 (gl_SAFE_WRITE):
35325         * m4/same.m4 (gl_SAME):
35326         * m4/save-cwd.m4 (gl_SAVE_CWD):
35327         * m4/savedir.m4 (gl_SAVEDIR):
35328         * m4/settime.m4 (gl_SETTIME):
35329         * m4/sha1.m4 (gl_SHA1):
35330         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
35331         * m4/stat-macros.m4 (gl_STAT_MACROS):
35332         * m4/stat-time.m4 (gl_STAT_TIME):
35333         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
35334         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
35335         * m4/strdup.m4 (gl_FUNC_STRDUP):
35336         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
35337         * m4/strndup.m4 (gl_FUNC_STRNDUP):
35338         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
35339         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
35340         * m4/time_r.m4 (gl_TIME_R):
35341         * m4/timespec.m4 (gl_TIMESPEC):
35342         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
35343         * m4/unlinkdir.m4 (gl_UNLINKDIR):
35344         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
35345         * m4/userspec.m4 (gl_USERSPEC):
35346         * m4/utimecmp.m4 (gl_UTIMECMP):
35347         * m4/utimens.m4 (gl_UTIMENS):
35348         * m4/xalloc.m4 (gl_XALLOC):
35349         * m4/xgetcwd.m4 (gl_XGETCWD):
35350         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
35351         * m4/xreadlink.m4 (gl_XREADLINK):
35352         * m4/xstrtod.m4 (gl_XSTRTOD):
35353         * m4/yesno.m4 (gl_YESNO):
35354         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
35355         to get the necessary .h files and whatnot.
35356
35357 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
35358             Bruno Haible  <bruno@clisp.org>
35359
35360         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
35361         /bin/sh understanding of '!' conditional negation.
35362
35363 2006-08-21  Jim Meyering  <jim@meyering.net>
35364
35365         * modules/openat (Depends-on): Really alphabetize.
35366
35367         * modules/acl (Depends-on): Add error and quote.
35368
35369         * check-module (find_included_lib_files): Add at-func.c to the
35370         ok-to-include-more-than-once white list.
35371
35372         * modules/openat (Depends-on): Add lstat.  Alphabetize.
35373
35374 2006-08-21  Bruno Haible  <bruno@clisp.org>
35375
35376         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35377         Emit a pkgdata_DATA variable only if some snippets add contents to it.
35378         Reported by Martin Lambers <marlam@marlam.de>.
35379
35380 2006-08-21  Bruno Haible  <bruno@clisp.org>
35381
35382         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
35383         specify an installation location, don't emit a noinst_LIBRARIES or
35384         noinst_LTLIBRARIES assignment.
35385
35386 2006-08-21  Bruno Haible  <bruno@clisp.org>
35387
35388         BeOS portability.
35389         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
35390         BeOS has mbrtowc() but no <wctype.h>.
35391
35392 2006-08-21  Bruno Haible  <bruno@clisp.org>
35393
35394         BeOS portability.
35395         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
35396         exist.
35397
35398 2006-08-21  Bruno Haible  <bruno@clisp.org>
35399
35400         BeOS portability.
35401         * lib/mbchar.h: Include <wctype.h> only if it exists.
35402
35403 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
35404
35405         Remove files that are no longer needed by their respective modules.
35406         * m4/obstack.m4: Remove.
35407         * m4/strerror_r.m4: Remove.
35408         * m4/uint32_t.m4: Remove.
35409         * m4/uintptr_t.m4: Remove.
35410         * m4/ullong_max.m4: Remove.
35411         * m4/xstrtoimax.m4: Remove.
35412         * m4/xstrtoumax.m4: Remove.
35413
35414         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
35415         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
35416         dependencies now capture this.
35417
35418         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
35419         Do not use AC_LIBSOURCES, since gnulib modules now do this.
35420         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
35421         * m4/human.m4 (gl_HUMAN): Likewise.
35422         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
35423         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
35424
35425         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
35426
35427         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
35428         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
35429         stdint.
35430         * m4/human.m4 (gl_HUMAN): Likewise.
35431         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
35432         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
35433         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
35434         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
35435         * m4/xstrtol (gl_XSTRTOL): Likewise.
35436
35437         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
35438         AC_TYPE_LONG_LONG_INT.
35439         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
35440         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
35441         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
35442         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
35443
35444         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
35445         on stdbool.
35446
35447         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
35448         (gl_PREREQ_XSTRTOUL): Remove.
35449
35450         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
35451
35452         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
35453         mode.
35454
35455 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
35456
35457         Add and change modules to make it easier for coreutils to use
35458         gnulib-tool.
35459         * modules/backupfile (Files): Remove m4/d-ino.m4.
35460         (Depends-on): Add d-ino.
35461         * modules/cycle-check (Depends-on): Add stdint.
35462         (lib_SOURCES): Add cycle-check.h.
35463         * modules/d-ino: New module.
35464         * modules/d-type: New module.
35465         * modules/error (Files): Remove m4/strerror_r.m4.
35466         * modules/filemode (Files): Add m4/st_dm_mode.m4.
35467         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
35468         m4/inttypes_h.m4, m4/uintmax_t.m4.
35469         (Depends-on): Add stdint.
35470         (lib_SOURCES): Add fsusage.h.
35471         * modules/getcwd (Files): Remove d-ino.m4.
35472         (Depends-on): Add d-ino.
35473         * modules/getndelim2 (Depends-on): Add stdint.
35474         * modules/glob (Files): Remove m4/d-type.m4.
35475         (Depends-on): Add d-type.
35476         * modules/host-os: New module.
35477         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
35478         m4/inttypes_h.m4, m4/uintmax_t.m4.
35479         * Depends-on: Add stdint.
35480         (lib_SOURCES): Add human.h.
35481         * modules/inttostr (Files): Remove m4/intmax_t.m4,
35482         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
35483         m4/uintmax_t.m4, m4/ulonglong.m4.
35484         (Depends-on): Add stdint.
35485         (EXTRA_DIST): Add inttostr.h.
35486         * modules/lchmod: New module.
35487         * modules/link-follow: New module.
35488         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
35489         (Depends-on): Add lchmod.
35490         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
35491         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
35492         (Depends-on): Add stdint.
35493         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
35494         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
35495         (Depends-on): Add stdint.
35496         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
35497         * modules/perl: New module.
35498         * modules/regex (Depends-on): Add stdint.
35499         * modules/rmdir-errno: New module.
35500         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
35501         m4/intmax_t.m4.
35502         (Depends-on): Add stdint.
35503         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
35504         m4/uintmax_t.m4.
35505         (Depends-on): Add stdint.
35506         * modules/unlink-busy: New module.
35507         * modules/utimecmp (Depends-on): Add stdint.
35508         * modules/uptime: New module.
35509         * modules/winsz-ioctl: New module.
35510         * modules/winsz-termios: New module.
35511         * modules/xnanosleep (Depends-on): Add nanosleep.
35512         * modules/ullong_max: Remove.
35513         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
35514         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
35515         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
35516         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
35517         (Depends-on): Add inttypes.
35518         (lib_SOURCES): Add xstrtol.h.
35519         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
35520         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
35521         * MODULES.html.sh: Move 'assert' into the assert section.
35522         Move 'dummy' into the linking section.
35523         Remove ullong_max.
35524         Add section for compatibility checks for POSIX:2001 functions,
35525         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
35526         winsz-ioctl, and winsz-termios into it.
35527         Add lchmod.
35528         Add top-level Misc section and put host-os, perl, and uptime
35529         into it.
35530
35531 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
35532
35533         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
35534         now assume the stdint module.  Do not include inttypes.h.
35535         * lib/fsusage.h: Likewise.
35536         * lib/getndelim2.c: Likewise.
35537         * lib/human.h: Likewise.
35538         * lib/inttostr.h: Likewise.
35539         * lib/obstack.c: Likewise.
35540         * lib/regex_internal.h: Likewise.
35541         * lib/tempname.c: Likewise.
35542         * lib/utimecmp.c: Likewise.
35543         * lib/xstrtol.h: Likewise.
35544
35545         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
35546
35547         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
35548         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
35549         * lib/xtime.h: Likewise.
35550
35551 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
35552
35553         * modules/openat (Files): Add lib/fchmodat.c.
35554         Fixes problem reported by Jay Youngman.
35555
35556 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
35557
35558         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
35559         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
35560
35561 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
35562             Bruno Haible  <bruno@clisp.org>
35563
35564         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
35565         and is a script that invokes bison. Tighten the code. Add comments.
35566
35567 2006-08-18  Jim Meyering  <jim@meyering.net>
35568
35569         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
35570         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
35571         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
35572         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
35573
35574 2006-08-18  Bruno Haible  <bruno@clisp.org>
35575
35576         * modules/bison-i18n: New file.
35577         * MODULES.html.sh (Internationalization functions): Add it.
35578
35579 2006-08-18  Bruno Haible  <bruno@clisp.org>
35580
35581         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
35582         sys/statvfs.h. When getmntinfo was found, check its declaration and
35583         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
35584
35585 2006-08-18  Bruno Haible  <bruno@clisp.org>
35586
35587         * m4/bison-i18n.m4: New file, from bison.
35588
35589 2006-08-18  Bruno Haible  <bruno@clisp.org>
35590
35591         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
35592         (ME_DUMMY): Treat "kernfs" as a dummy.
35593         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
35594
35595 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
35596
35597         Update from coreutils.
35598
35599         2006-08-15  Jim Meyering  <jim@meyering.net>
35600
35601         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
35602
35603         2006-01-17  Jim Meyering  <jim@meyering.net>
35604
35605         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
35606
35607         2006-01-11  Jim Meyering  <jim@meyering.net>
35608
35609         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
35610         Check for the lchmod function.
35611
35612 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
35613
35614         Update from coreutils.
35615
35616         * lib/__fpending.h: Add copyright notice.
35617         * lib/fprintftime.h: Likewise.
35618         * lib/savedir.c: Use (C) in copyright notice.
35619         * lib/savedir.h: Likewise.
35620
35621         2006-08-15  Jim Meyering  <jim@meyering.net>
35622
35623         * lib/at-func.c: New file, with the logic of all emulated at-functions.
35624         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
35625         in support of the EXPECTED_ERRNO macro.
35626         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
35627         definitions.  Instead, define the appropriate symbols and include
35628         "at-func.c".
35629         * lib/mkdirat.c (mkdirat): Likewise.
35630         * lib/fchmodat.c (fchmodat): Likewise.
35631         (ENOSYS): Remove definition.
35632         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
35633         it.  Don't include "unistd--.h" -- it wasn't ever used.
35634
35635         2006-01-17  Jim Meyering  <jim@meyering.net>
35636
35637         Rewrite fts.c not to change the current working directory,
35638         by using openat, fstatat, fdopendir, etc..
35639
35640         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
35641         (HAVE_OPENAT_SUPPORT): Define.
35642         [_LIBC] (fchdir): Don't undef or define; no longer used.
35643         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
35644         Now, this `function' always succeeds, and consumes its file descriptor
35645         parameter -- so callers must not close such FDs.  Update callers.
35646         (diropen_fd, opendirat, cwd_advance_fd): New functions.
35647         (diropen): Add parameter, SP.  Adjust all callers.
35648         Implement using diropen_fd, rather than open.
35649         (fts_open): Initialize new member, fts_cwd_fd.
35650         Remove fts_rft-setting code.
35651         (fts_close): Close fts_cwd_fd, if necessary.
35652         (__opendir2): Define in terms of opendir or opendirat,
35653         depending on whether the FST_NOCHDIR flag is set.
35654         (fts_build): Since fts_safe_changedir consumes its FD, and since
35655         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
35656         and close the dup'd file descriptor upon failure.
35657         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
35658         (fts_safe_changedir): Tweak semantics to reflect that this function
35659         now calls cwd_advance_fd and hence consumes its FD argument.
35660         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
35661         [struct FTS] (fts_rft): Remove now-unused member.
35662         [struct FTS] (fts_cycle.state): Improve comment.
35663
35664         * lib/openat.c (openat_needs_fchdir): New function.
35665         * lib/openat.h (openat_needs_fchdir): Declare it.
35666
35667 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
35668
35669         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
35670         Problem and fix reported by Pádraig Brady in
35671         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
35672
35673 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
35674
35675         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
35676
35677 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
35678
35679         * lib/memcoll.c (memcoll): Optimize for the common case where the
35680         arguments are bytewise equal.
35681
35682 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
35683
35684         * doc/regexprops-generic.texi: Add a copyright notice.
35685
35686 2006-08-15  Bruno Haible  <bruno@clisp.org>
35687
35688         * modules/tmpdir (License): Change to LGPL.
35689
35690 2006-08-15  Bruno Haible  <bruno@clisp.org>
35691
35692         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
35693         module.
35694
35695 2006-08-14  Simon Josefsson  <jas@extundo.com>
35696
35697         * config/srclist.txt: Add gnupload.
35698
35699 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
35700
35701         Change copyright notice from LGPL 2 to GPL 2, since that's the
35702         standard form used in the gnulib repository.
35703         * tests/test-lock.c: Likewise.
35704         * tests/test-stdint.c: Likewise.
35705         * tests/test-tls.c: Likewise.
35706
35707         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
35708         prelude-manager.  User shorter URLs for GNU projects, without '?'.
35709         Add copyright notice.
35710
35711         * check-module: Add copyright notice.  Output a copyright
35712         notice if "--version" is specified.
35713         * modules/COPYING: New file.
35714         * tests/test-getaddrinfo.c: Add copyright notice.
35715         * tests/test-verify.c: Likewise.
35716
35717 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
35718
35719         Change copyright notice from LGPL 2 to GPL 2, since that's the
35720         standard form used in the gnulib repository.
35721         * lib/lock.c: LGPL -> GPL.
35722         * lib/lock.h: Likewise.
35723         * lib/strnlen1.c: Likewise.
35724         * lib/strnlen1.h: Likewise.
35725         * lib/tls.c: Likewise.
35726         * lib/tls.h: Likewise.
35727         * lib/tmpdir.c: Likewise.
35728
35729         * lib/TODO: Remove; this belongs only in coreutils.
35730
35731 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
35732
35733         Add copyright notices to long-enough files that lack them, since
35734         otherwise the files aren't clearly free.  Use the same notice that
35735         getdate.texi already uses.
35736         * doc/alloca-opt.texi: Add copyright notice.
35737         * doc/alloca.texi: Likewise.
35738         * doc/ctime.texi: Likewise.
35739         * doc/functions.texi: Likewise.
35740         * doc/gcd.texi: Likewise.
35741         * doc/gnulib-tool.texi: Likewise.
35742         * doc/inet_ntoa.texi: Likewise.
35743         * doc/visibility.texi: Likewise.
35744
35745         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
35746         * doc/quote.texi: Add copyright notice.
35747
35748         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
35749         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
35750         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
35751         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
35752         is now obsolete, and give a pointer to the Sun list.
35753         Add copyright notice.
35754
35755 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
35756
35757         * config/srclistvars.sh: Add copyright notice.
35758
35759 2006-08-14  Eric Blake  <ebb9@byu.net>
35760
35761         Import the following change from libc:
35762
35763         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
35764
35765         Upstream bug 2997.
35766         * lib/misc/error.c: Add space between program name and message if file
35767         name is missing.
35768
35769 2006-08-12  Karl Berry  <karl@gnu.org>
35770
35771         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
35772         remove, these originate in gnulib now.
35773
35774 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35775
35776         * doc/Makefile (standards.info standards.html standards.dvi):
35777         Also depend on make-stds.texi.
35778
35779 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
35780
35781         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
35782         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
35783
35784         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
35785         in wchar_t.  Problem reported by Eric Blake.
35786
35787         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
35788         LEN is smaller than SIZE.  Suggested by Bruno Haible.
35789         Also, help the compiler to keep LEN in a register.
35790
35791 2006-08-11  Eric Blake  <ebb9@byu.net>
35792
35793         * users.txt: Sort.  Add tar.
35794
35795 2006-08-11  Bruno Haible  <bruno@clisp.org>
35796
35797         * users.txt: New file.
35798
35799 2006-08-11  Bruno Haible  <bruno@clisp.org>
35800
35801         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
35802         before <wchar.h>. Needed for OSF/1 and BSD/OS.
35803
35804 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
35805
35806         * modules/snprintf (Depends-on): Remove minmax.
35807         (Maintainer): Add self and Bruno.
35808
35809 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
35810
35811         * lib/.cppi-disable: Add snprintf.h, socket_.h.
35812         * lib/snprintf.c: Include <errno.h> and <limits.h>.
35813         (EOVERFLOW): Define if the system does not.
35814         Do not include "minmax.h"; it wasn't used.
35815         (snprintf): Don't assume size_t promotes to an unsigned type.
35816         Fix bug when generated string was too long for the buffer: the
35817         buffer's contents are supposed to be the initial prefix of the
35818         output.  Don't assume vasnprintf returns EOVERFLOW if the size
35819         exceeds INT_MAX; do the check ourselves.
35820
35821         Import the following changes from libc:
35822
35823         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
35824
35825         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
35826         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
35827         set wc to the byte which couldn't be converted.
35828         (re_string_reconstruct): Don't clear valid_raw_len before calling
35829         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
35830         tip_context using re_string_context_at.
35831
35832         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
35833
35834         * lib/posix/regex.h: g++ still cannot handled [restrict].
35835
35836         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
35837
35838         * lib/posix/regex.h: Remove special handling for VMS.
35839
35840 2006-08-10  Jim Meyering  <jim@meyering.net>
35841
35842         * modules/same-inode: New module.
35843         * modules/dev-ino: New module.
35844         * modules/cycle-check: Depend on these modules, rather than simply
35845         including their .h files.
35846         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
35847         required via m4/cycle-check.m4.
35848         * modules/same: Depend on new same-inode module, rather than
35849         including same-inode.h.
35850         * modules/chdir-safer: New file.
35851
35852         * modules/chown (Depends-on): Add stat-macros.
35853
35854 2006-08-10  Jim Meyering  <jim@meyering.net>
35855
35856         * m4/cycle-check.m4: New file.
35857         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
35858         * m4/dev-ino.m4, m4/same-inode.m4: New files.
35859
35860 2006-08-10  Eric Blake  <ebb9@byu.net>
35861
35862         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
35863         in from original proposal.
35864
35865 2006-08-10  Eric Blake  <ebb9@byu.net>
35866         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
35867
35868         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
35869         namespace.
35870
35871 2006-08-10  Bruno Haible  <bruno@clisp.org>
35872
35873         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
35874         as well.
35875
35876 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
35877
35878         Sync from coreutils.
35879
35880         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
35881
35882         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
35883         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
35884
35885 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
35886
35887         * modules/restrict: Remove; no longer needed now that we assume
35888         Autoconf 2.59 or later.
35889         * MODULES.html.sh: Remove 'restrict'.
35890         * modules/argp (Depends-on): Remove 'restrict'.
35891         * modules/base64 (Depends-on): Likewise.
35892         * modules/gc (Depends-on): Likewise.
35893         * modules/getaddrinfo (Depends-on): Likewise.
35894         * modules/glob (Depends-on): Likewise.
35895         * modules/inet_ntop (Depends-on): Likewise.
35896         * modules/inet_pton (Depends-on): Likewise.
35897         * modules/memxor (Depends-on): Likewise.
35898         * modules/regex (Depends-on): Likewise.
35899         * modules/strtok_r (Depends-on): Likewise.
35900         * modules/time_r (Depends-on): Likewise.
35901
35902 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
35903
35904         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
35905         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
35906         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
35907         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
35908         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
35909         * m4/memxor.m4 (gl_MEMXOR): Likewise.
35910         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
35911         gl_C_RESTRICT replaced by AC_C_RESTRICT.
35912
35913         Merge from coreutils.
35914         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
35915         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
35916         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
35917         * m4/time_r.m4 (gl_TIME_R): Likewise.
35918
35919 2006-08-09  Karl Berry  <karl@gnu.org>
35920
35921         * config/srclist.txt: no more gettext-tools, per Bruno.
35922
35923 2006-08-08  Eric Blake  <ebb9@byu.net>
35924
35925         * modules/verror: New module.
35926         * MODULES.html.sh: Document it.
35927
35928 2006-08-08  Eric Blake  <ebb9@byu.net>
35929
35930         * lib/verror.h, lib/verror.c: New files.
35931
35932 2006-08-08  Eric Blake  <ebb9@byu.net>
35933
35934         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
35935         verror_at_line output complies with GNU Coding Standards even when
35936         file is NULL.
35937
35938 2006-08-07  Bruno Haible  <bruno@clisp.org>
35939
35940         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
35941         versions of AIX.
35942         Reported by Ralf Wildenhues.
35943
35944 2006-08-07  Bruno Haible  <bruno@clisp.org>
35945
35946         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
35947         in an AC_DEFUN. Needed so that the autoconf snippets can use
35948         AC_REQUIRE.
35949
35950 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35951
35952         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35953         Initialize pkgdata_DATA.
35954         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
35955         overriding it.
35956
35957 2006-08-06  Eric Blake  <ebb9@byu.net>
35958
35959         * lib/error.h: Fold in some upstream changes from glibc.
35960         * lib/error.c: Likewise.
35961
35962 2006-08-04  Bruno Haible  <bruno@clisp.org>
35963
35964         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35965         Make the mostlyclean-local rule depend on mostlyclean-generic.
35966         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
35967
35968 2006-07-31  Bruno Haible  <bruno@clisp.org>
35969
35970         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
35971         <stdlib.h>, <string.h>.
35972
35973 2006-07-30  Bruno Haible  <bruno@clisp.org>
35974
35975         * modules/readlink (License): Change to LGPL.
35976
35977 2006-07-30  Bruno Haible  <bruno@clisp.org>
35978
35979         * modules/javaversion (Makefile.am): Distribute javaversion.java and
35980         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
35981         set PKGDATADIR to point to it.
35982
35983 2006-07-30  Bruno Haible  <bruno@clisp.org>
35984
35985         * modules/csharpexec (configure.ac): Comment out macro invocation.
35986         * modules/javaexec (configure.ac): Likewise.
35987         * modules/javacomp-script (configure.ac): Likewise.
35988
35989         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
35990
35991 2006-07-30  Bruno Haible  <bruno@clisp.org>
35992
35993         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
35994         linked-list.
35995
35996 2006-07-30  Bruno Haible  <bruno@clisp.org>
35997
35998         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
35999
36000 2006-07-30  Bruno Haible  <bruno@clisp.org>
36001
36002         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
36003         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
36004         get removed.
36005
36006 2006-07-29  Bruno Haible  <bruno@clisp.org>
36007
36008         Make it possible for gnulib-tool to work with locally modified or
36009         augmented gnulib repositories.
36010         * gnulib-tool (func_usage): Document --local-dir option.
36011         (local_gnulib_dir): New variable.
36012         Handle --local-dir option.
36013         (func_lookup_file): New function.
36014         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
36015         (func_get_description, func_get_filelist, func_get_description,
36016         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
36017         func_get_automake_snippet, func_get_include_directive,
36018         func_get_license, func_get_maintainer): Use func_lookup_file.
36019         (func_import, func_create_testdir): Use func_lookup_file.
36020
36021 2006-07-29  Bruno Haible  <bruno@clisp.org>
36022
36023         * modules/setenv (Depends-on): Add unistd.
36024
36025 2006-07-29  Bruno Haible  <bruno@clisp.org>
36026
36027         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
36028
36029 2006-07-29  Bruno Haible  <bruno@clisp.org>
36030
36031         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
36032
36033 2006-07-29  Bruno Haible  <bruno@clisp.org>
36034
36035         * gnulib-tool (import, update): If there is no Makefile.am, look at
36036         aclocal.m4, instead of bailing out.
36037
36038 2006-07-29  Bruno Haible  <bruno@clisp.org>
36039
36040         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
36041         Categorize the options by when they are useful.
36042
36043 2006-07-29  Bruno Haible  <bruno@clisp.org>
36044
36045         * gnulib-tool (func_usage): Document option --no-libtool.
36046         Handle option --no-libtool.
36047         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
36048         for changed semantics of $libtool variable.
36049         (func_import): Likewise. If libtool is not used, show this through
36050         an option --no-libtool.
36051         (func_create_testdir): Update.
36052
36053 2006-07-29  Bruno Haible  <bruno@clisp.org>
36054
36055         * gnulib-tool (func_import): Extend error message about missing
36056         --doc-base.
36057
36058 2006-07-29  Bruno Haible  <bruno@clisp.org>
36059
36060         * gnulib-tool (func_import): Don't create the $docbase directory if
36061         there is no file to store there.
36062
36063 2006-07-29  Bruno Haible  <bruno@clisp.org>
36064
36065         * gnulib-tool (autoconf_minversion): If a --dir option is given and
36066         relevant, look for configure.ac there, not in the current directory.
36067         Also use a simple search for AC_PREREQ, not "autoconf --trace".
36068
36069 2006-07-29  Bruno Haible  <bruno@clisp.org>
36070
36071         * gnulib-tool (SORT): New variable.
36072         (func_usage): Undocument --assume-autoconf option.
36073         Remove --assume-autoconf option handling.
36074         (autoconf_minversion): Determine from the contents of configure.ac.
36075         (func_import): Remove autoconf_minversion handling.
36076         Suggested by Eric Blake.
36077
36078 2006-07-29  Bruno Haible  <bruno@clisp.org>
36079
36080         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
36081
36082 2006-07-29  Bruno Haible  <bruno@clisp.org>
36083
36084         * config/srclist.txt (*setenv.[ch]): Remove rules.
36085
36086 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
36087
36088         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
36089
36090 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
36091
36092         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
36093         arpa/inet.h.
36094
36095 2006-07-28  Simon Josefsson  <jas@extundo.com>
36096
36097         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
36098         * modules/inet_pton (Depends-on): Likewise.
36099
36100 2006-07-28  Simon Josefsson  <jas@extundo.com>
36101
36102         * m4/netinet_in_h.m4: New file.
36103
36104 2006-07-28  Simon Josefsson  <jas@extundo.com>
36105
36106         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
36107         #include's.
36108
36109 2006-07-28  Simon Josefsson  <jas@extundo.com>
36110
36111         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
36112         #include's.
36113
36114 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
36115
36116         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
36117         setgid on directories only if they set these bits.
36118         * lib/modechange.h: Remove obsolete comment about masks.
36119
36120 2006-07-28  Eric Blake  <ebb9@byu.net>
36121
36122         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
36123         macro expansion.
36124
36125 2006-07-28  Bruno Haible  <bruno@clisp.org>
36126
36127         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
36128
36129 2006-07-28  Bruno Haible  <bruno@clisp.org>
36130
36131         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
36132
36133 2006-07-28  Bruno Haible  <bruno@clisp.org>
36134
36135         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
36136         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
36137         Define fallbacks.
36138         Avoids link error on FreeBSD 4.x.
36139         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
36140
36141         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
36142         encoding.
36143         * lib/mbswidth.c (iswcntrl): Likewise.
36144
36145 2006-07-27  Bruno Haible  <bruno@clisp.org>
36146
36147         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
36148         test.
36149
36150 2006-07-27  Bruno Haible  <bruno@clisp.org>
36151
36152         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
36153         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
36154         defined.
36155
36156 2006-07-26  Eric Blake  <ebb9@byu.net>
36157
36158         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
36159
36160 2006-07-26  Eric Blake  <ebb9@byu.net>
36161
36162         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
36163         like mingw that lack mkstemp.
36164         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
36165         avoid compilation warning on mingw.
36166
36167 2006-07-26  Bruno Haible  <bruno@clisp.org>
36168
36169         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
36170         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
36171         INT_FAST*_MIN, INTPTR_MIN.
36172
36173 2006-07-25  Bruno Haible  <bruno@clisp.org>
36174
36175         * modules/version-etc (Depends-on): Add stdarg.
36176
36177 2006-07-25  Bruno Haible  <bruno@clisp.org>
36178
36179         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
36180         complex commands.
36181
36182 2006-07-25  Bruno Haible  <bruno@clisp.org>
36183
36184         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
36185         defined in <stdarg.h> or config.h.
36186
36187 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
36188
36189         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
36190         (gl_STDIO_SAFER): Remove.
36191
36192 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
36193
36194         * MODULES.html.sh (File stream based Input/Output):
36195         Add fopen-safer, tmpfile-safer; remove stdio-safer.
36196         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
36197         * modules/fopen-safer, modules/tmpfile-safer: New files.
36198         * modules/stdio-safer: Remove.
36199
36200 2006-07-24  Bruno Haible  <bruno@clisp.org>
36201
36202         * modules/tmpdir: New file.
36203         * MODULES.html.sh (File system functions): Add it.
36204
36205 2006-07-24  Bruno Haible  <bruno@clisp.org>
36206
36207         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
36208         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
36209
36210 2006-07-24  Bruno Haible  <bruno@clisp.org>
36211
36212         * modules/clean-temp: New file.
36213
36214 2006-07-24  Bruno Haible  <bruno@clisp.org>
36215
36216         * m4/tmpdir.m4: New file, from GNU gettext.
36217
36218 2006-07-24  Bruno Haible  <bruno@clisp.org>
36219
36220         * lib/tmpdir.h: New file, from GNU gettext.
36221         * lib/tmpdir.c: New file, from GNU gettext.
36222
36223 2006-07-24  Bruno Haible  <bruno@clisp.org>
36224
36225         * lib/clean-temp.h: New file, from GNU gettext.
36226         * lib/clean-temp.c: New file, from GNU gettext.
36227
36228 2006-07-23  Eric Blake  <ebb9@byu.net>
36229
36230         * modules/stdio-safer (Files): Add tmpfile-safer.c.
36231         (Depends-on): Add binary-io.
36232
36233 2006-07-23  Eric Blake  <ebb9@byu.net>
36234
36235         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
36236
36237 2006-07-23  Eric Blake  <ebb9@byu.net>
36238
36239         * lib/tmpfile-safer.c: New file.
36240         * lib/stdio-safer.h (fopen_safer): Add prototype.
36241         * lib/stdio--.h (tmpfile): Make safer.
36242
36243 2006-07-23  Bruno Haible  <bruno@clisp.org>
36244
36245         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
36246         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
36247         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
36248         gl_linked_remove_at): Use it.
36249
36250 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
36251         and Simon Josefsson <jas@extundo.com>
36252
36253         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
36254
36255         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
36256
36257 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
36258
36259         * modules/close-stream: New file.
36260         * modules/closeout (Description): Make it clear that it exits
36261         with a diagnostic on error.
36262         (Depends-on): Add close-stream.  Remove fpending, stdbool.
36263         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
36264
36265 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
36266
36267         * m4/close-stream.m4: New file.
36268
36269 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
36270
36271         * lib/close-stream.c, lib/close-stream.h: New files.
36272
36273 2006-07-22  Bruno Haible  <bruno@clisp.org>
36274
36275         Merge from GNU gettext 0.15.
36276
36277         2006-05-01  Bruno Haible  <bruno@clisp.org>
36278
36279                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
36280
36281         2006-07-22  Bruno Haible  <bruno@clisp.org>
36282
36283                 * modules/javaversion: New file.
36284                 * MODULES.html.sh (Java): Add javaversion.
36285
36286         2006-03-12  Bruno Haible  <bruno@clisp.org>
36287
36288                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
36289
36290         2005-12-04  Bruno Haible  <bruno@clisp.org>
36291
36292                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
36293                 (untested).
36294
36295         2006-06-21  Bruno Haible  <bruno@clisp.org>
36296
36297                 Avoid warnings from recent versions of mcs.
36298                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
36299                 -o, -L, -r any more. Use options documented since mcs-1.0
36300                 instead. Similarly for -g.
36301
36302         2005-12-04  Bruno Haible  <bruno@clisp.org>
36303
36304                 * build-aux/csharpcomp.sh.in: Suffix for resources is
36305                 .resources, not .resource.
36306
36307         2005-07-09  Bruno Haible  <bruno@clisp.org>
36308
36309                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
36310                 add a .dll suffix.
36311                 Reported by Mark Junker <mjscod@gmx.de>.
36312
36313         2006-07-22  Bruno Haible  <bruno@clisp.org>
36314
36315                 * modules/gettext: Upgrade to gettext-0.15.
36316                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
36317                 m4/visibility.m4.
36318                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
36319
36320 2006-07-22  Bruno Haible  <bruno@clisp.org>
36321
36322         Merge from GNU gettext 0.15.
36323
36324         2006-03-25  Bruno Haible  <bruno@clisp.org>
36325
36326                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
36327
36328         2006-07-21  Bruno Haible  <bruno@clisp.org>
36329
36330                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
36331                 "1.1".
36332
36333         2006-05-09  Bruno Haible  <bruno@clisp.org>
36334
36335                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
36336                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
36337                 for the conftestver execution.
36338
36339         2006-05-01  Bruno Haible  <bruno@clisp.org>
36340
36341                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
36342                 optional target-version argument. Verify that the compiler
36343                 groks source of the specified source-version, or add -source
36344                 option as necessary. Verify that the compiler produces
36345                 bytecode in the specified target-version, or add -target and
36346                 -source options as necessary. Make the result of the test
36347                 available as variable CONF_JAVAC. Also log error output in
36348                 config.log.
36349
36350         2006-03-11  Bruno Haible  <bruno@clisp.org>
36351
36352                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
36353
36354         2006-05-09  Bruno Haible  <bruno@clisp.org>
36355
36356                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
36357                 CLASSPATH_SEPARATOR to a semicolon.
36358
36359         2006-03-12  Bruno Haible  <bruno@clisp.org>
36360
36361                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
36362                 available as variable CONF_JAVA, for subsequent autoconf
36363                 tests. Also log error output in config.log.
36364
36365         2006-07-19  Bruno Haible  <bruno@clisp.org>
36366
36367                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
36368                 that getline works on glibc2 systems. Needed to avoid trouble
36369                 in relocatable.c.
36370                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
36371
36372         2005-12-04  Bruno Haible  <bruno@clisp.org>
36373
36374                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
36375                 launcher (untested).
36376
36377         2005-12-04  Bruno Haible  <bruno@clisp.org>
36378
36379                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
36380
36381         2006-07-22  Bruno Haible  <bruno@clisp.org>
36382
36383                 * gettext.m4: Update from GNU gettext-0.15.
36384                 * nls.m4: Likewise.
36385                 * po.m4: Likewise.
36386                 * inttypes-pri.m4: Likewise.
36387                 * inttypes-h.m4: Renamed from inttypes.m4.
36388                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
36389
36390 2006-07-22  Bruno Haible  <bruno@clisp.org>
36391
36392         Merge from GNU gettext 0.15.
36393
36394         2005-07-05  Bruno Haible  <bruno@clisp.org>
36395
36396                 * printf-args.c (printf_fetchargs): Work around broken
36397                 definition of wint_t on mingw.
36398
36399         2005-02-12  Bruno Haible  <bruno@clisp.org>
36400
36401                 * xallocsa.h: Add extern "C" for C++.
36402
36403         2006-05-17  Bruno Haible  <bruno@clisp.org>
36404
36405                 Cygwin portability.
36406                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
36407
36408         2006-04-30  Bruno Haible  <bruno@clisp.org>
36409
36410                 * progreloc.c: Include <mach-o/dyld.h> if available.
36411                 (find_executable): Use _NSGetExecutablePath when possible.
36412
36413         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
36414
36415                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
36416                 function.
36417
36418         2005-12-29  Bruno Haible  <bruno@clisp.org>
36419
36420                 * progreloc.c (set_program_name_and_installdir): Fix
36421                 compilation error.
36422
36423         2005-12-04  Bruno Haible  <bruno@clisp.org>
36424
36425                 Cygwin portability.
36426                 * progreloc.c: Include <windows.h> also on Cygwin.
36427                 (find_executable): Add support for Cygwin.
36428                 (set_program_name_and_installdir): Handle also platforms with
36429                 nonempty EXEEXT.
36430
36431         2006-07-11  Bruno Haible  <bruno@clisp.org>
36432
36433                 * javacomp.c: Fix a comment.
36434                 Reported by Jim Meyering.
36435
36436         2006-04-30  Bruno Haible  <bruno@clisp.org>
36437
36438                 * javacomp.h (compile_java_class): Add source_version,
36439                 target_version arguments.
36440                 * javacomp.c: Rewritten to choose only a compiler that
36441                 respects the specified source_version and target_version.
36442
36443         2006-06-27  Bruno Haible  <bruno@clisp.org>
36444
36445                 Assume correct S_ISDIR macro.
36446                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
36447
36448         2006-07-22  Bruno Haible  <bruno@clisp.org>
36449
36450                 * javaversion.h: New file, from GNU gettext.
36451                 * javaversion.c: New file, from GNU gettext.
36452                 * javaversion.java: New file, from GNU gettext.
36453                 * javaversion.class: New file, from GNU gettext.
36454
36455         2006-05-17  Bruno Haible  <bruno@clisp.org>
36456
36457                 Cygwin portability.
36458                 * javaexec.c (execute_java_class): Test for jview program
36459                 also on Cygwin.
36460
36461         2006-04-09  Bruno Haible  <bruno@clisp.org>
36462
36463                 * fatal-signal.c: Don't include string.h.
36464                 (at_fatal_signal): Use a copying loop instead of memcpy.
36465
36466         2005-12-04  Bruno Haible  <bruno@clisp.org>
36467
36468                 * csharpexec.c: Add support for 'clix' launcher (untested).
36469                 (execute_csharp_using_sscli): New function.
36470                 (execute_csharp_program): Call it.
36471
36472         2006-06-21  Bruno Haible  <bruno@clisp.org>
36473
36474                 Avoid warnings from recent versions of mcs.
36475                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
36476                 -o, -L, -r any more. Use options documented since mcs-1.0
36477                 instead. Similarly for -g.
36478
36479         2005-07-09  Bruno Haible  <bruno@clisp.org>
36480
36481                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
36482                 add a .dll suffix.
36483                 Reported by Mark Junker <mjscod@gmx.de>.
36484
36485         2006-06-17  Bruno Haible  <bruno@clisp.org>
36486
36487                 * config.charset: Update for NetBSD 3.0.
36488
36489         2006-05-17  Bruno Haible  <bruno@clisp.org>
36490
36491                 Cygwin portability.
36492                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
36493
36494         2006-05-16  Bruno Haible  <bruno@clisp.org>
36495
36496                 * localcharset.c [CYGWIN]: Include <windows.h>.
36497                 (get_charset_aliases): For Cygwin, return the same CPxxx
36498                 aliases list as under WIN32.
36499                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
36500                 the environment variables. Fall back to GetACP().
36501
36502         2006-04-05  Bruno Haible  <bruno@clisp.org>
36503
36504                 * config.charset: Update Juan Manuel Guerrero's address.
36505
36506         2005-02-12  Bruno Haible  <bruno@clisp.org>
36507
36508                 * allocsa.h: Add extern "C" for C++.
36509
36510         2005-02-10  Bruno Haible  <bruno@clisp.org>
36511
36512                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
36513                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
36514
36515         2006-07-22  Bruno Haible  <bruno@clisp.org>
36516
36517                 * gettext.h: Update to GNU gettext-0.15.
36518
36519 2006-07-22  Bruno Haible  <bruno@clisp.org>
36520
36521         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
36522         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
36523         lib-prefix.m4, longdouble.m4, ssize_t.m4.
36524
36525 2006-07-21  Eric Blake  <ebb9@byu.net>
36526
36527         * modules/stdlib-safer: New file.
36528         * MODULES.html.sh (File stream based Input/Output): Add
36529         stdlib-safer.
36530
36531 2006-07-21  Eric Blake  <ebb9@byu.net>
36532
36533         * lib/stdlib-safer.h: New file from coreutils, required by
36534         stdlib--.h.
36535
36536 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
36537
36538         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
36539
36540 2006-07-20  Bruno Haible  <bruno@clisp.org>
36541
36542         * gnulib-tool: Recognize new option --assume-autoconf.
36543         (autoconf_minversion): New variable.
36544         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
36545
36546 2006-07-20  Bruno Haible  <bruno@clisp.org>
36547
36548         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
36549
36550 2006-07-19  Derek R. Price  <derek@ximbiot.com>
36551
36552         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
36553         Reindent and repaginate.
36554
36555 2006-07-19  Derek Price  <derek@ximbiot.com>
36556
36557         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
36558         Correct grammar.
36559
36560 2006-07-17  Bruno Haible  <bruno@clisp.org>
36561
36562         * modules/list: New file.
36563         * modules/array-list: New file.
36564         * modules/carray-list, modules/carray-list-tests: New files.
36565         * modules/linked-list, modules/linked-list-tests: New files.
36566         * modules/avltree-list, modules/avltree-list-tests: New files.
36567         * modules/rbtree-list, modules/rbtree-list-tests: New files.
36568         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
36569         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
36570         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
36571         * modules/oset: New file.
36572         * modules/array-oset: New file.
36573         * modules/avltree-oset, modules/avltree-oset-tests: New files.
36574         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
36575         * tests/test-carray_list.c: New file.
36576         * tests/test-linked_list.c: New file.
36577         * tests/test-avltree_list.c: New file.
36578         * tests/test-rbtree_list.c: New file.
36579         * tests/test-linkedhash_list.c: New file.
36580         * tests/test-avltreehash_list.c: New file.
36581         * tests/test-rbtreehash_list.c: New file.
36582         * tests/test-avltree_oset.c: New file.
36583         * tests/test-rbtree_oset.c: New file.
36584         * MODULES.html.sh (Container data structures): New section.
36585
36586 2006-07-17  Bruno Haible  <bruno@clisp.org>
36587
36588         * m4/gl_list.m4: New file.
36589
36590 2006-07-17  Bruno Haible  <bruno@clisp.org>
36591
36592         * lib/gl_list.h: New file.
36593         * lib/gl_list.c: New file.
36594         * lib/gl_array_list.h: New file.
36595         * lib/gl_array_list.c: New file.
36596         * lib/gl_carray_list.h: New file.
36597         * lib/gl_carray_list.c: New file.
36598         * lib/gl_linked_list.h: New file.
36599         * lib/gl_linked_list.c: New file.
36600         * lib/gl_anylinked_list1.h: New file.
36601         * lib/gl_anylinked_list2.h: New file.
36602         * lib/gl_avltree_list.h: New file.
36603         * lib/gl_avltree_list.c: New file.
36604         * lib/gl_anyavltree_list1.h: New file.
36605         * lib/gl_anyavltree_list2.h: New file.
36606         * lib/gl_rbtree_list.h: New file.
36607         * lib/gl_rbtree_list.c: New file.
36608         * lib/gl_anyrbtree_list1.h: New file.
36609         * lib/gl_anyrbtree_list2.h: New file.
36610         * lib/gl_anytree_list1.h: New file.
36611         * lib/gl_anytree_list2.h: New file.
36612         * lib/gl_linkedhash_list.h: New file.
36613         * lib/gl_linkedhash_list.c: New file.
36614         * lib/gl_anyhash_list1.h: New file.
36615         * lib/gl_anyhash_list2.h: New file.
36616         * lib/gl_avltreehash_list.h: New file.
36617         * lib/gl_avltreehash_list.c: New file.
36618         * lib/gl_rbtreehash_list.h: New file.
36619         * lib/gl_rbtreehash_list.c: New file.
36620         * lib/gl_anytreehash_list1.h: New file.
36621         * lib/gl_anytreehash_list2.h: New file.
36622
36623         * lib/gl_oset.h: New file.
36624         * lib/gl_oset.c: New file.
36625         * lib/gl_array_oset.h: New file.
36626         * lib/gl_array_oset.c: New file.
36627         * lib/gl_avltree_oset.h: New file.
36628         * lib/gl_avltree_oset.c: New file.
36629         * lib/gl_rbtree_oset.h: New file.
36630         * lib/gl_rbtree_oset.c: New file.
36631         * lib/gl_anytree_oset.h: New file.
36632
36633 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
36634
36635         * m4/mkancesdirs.m4: New file.
36636         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
36637         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
36638         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
36639         it.
36640
36641 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
36642
36643         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
36644         * lib/mkancesdirs.h: New files.
36645         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
36646         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
36647         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
36648         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
36649         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
36650         callers changed.  Revamp internals significantly, by not
36651         attempting to create directories that are temporarily more
36652         permissive than the final results.  Do not attempt to use
36653         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
36654         This removes some race conditions, fixes some bugs, and simplifies
36655         things.  Use new dirchownmod function to do owner and mode changes.
36656         * lib/mkdir-p.h: Likewise.
36657         * lib/modechange.c (octal_to_mode): New function.
36658         (struct mode_change): New member mentioned.
36659         (make_node_op_equals): New arg mentioned.  All callers changed.
36660         (mode_compile): Keep track of which mode bits the user has explicitly
36661         mentioned.
36662         (mode_adjust): New arg DIR, so that we implement the X op correctly.
36663         New arg PMODE_BITS, to keep track of which mode bits the user
36664         mentioned; it treats S_ISUID and S_ISGID speciall.
36665         All callers changed.
36666         * lib/modechange.h: Likewise.
36667
36668 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
36669
36670         * MODULES.html.sh: Add mkancestors.
36671         * modules/mkancesdirs: New module.
36672         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
36673         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
36674         The chdir-safer and afs files are now orphans; I'll remove them
36675         unless someone speaks up.
36676         Add lib/dirchownmod.c, lib/dirchownmod.h.
36677         (Depends-on): Remove alloca, chown, save-cwd, dirname.
36678         Add lchown, mkancesdirs.
36679         (Maintainer): Add self.
36680
36681 2006-07-15  Karl Berry  <karl@gnu.org>
36682
36683         * gnulib-tool: help message wording/arrangement.
36684
36685 2006-07-14  Simon Josefsson  <jas@extundo.com>
36686
36687         * doc/gnulib.texi (Libtool and Windows): New section.
36688
36689 2006-07-12  Simon Josefsson  <jas@extundo.com>
36690
36691         * modules/gendocs (License): Fix license, approved by Karl.
36692
36693 2006-07-12  Eric Blake  <ebb9@byu.net>
36694
36695         * MODULES.html.sh: Add gendocs.
36696
36697 2006-07-11  Eric Blake  <ebb9@byu.net>
36698
36699         * modules/fdl: New module, to install doc/fdl.texi.
36700         * MODULES.html.sh: Add new section for documentation modules.
36701         * gnulib-tool: Avoid space-tab.
36702         (--doc-base): New option, to manage files from doc.
36703
36704 2006-07-11  Eric Blake  <ebb9@byu.net>
36705
36706         * m4/absolute-header.m4: Fix comments to match recent change.
36707
36708 2006-07-11  Eric Blake  <ebb9@byu.net>
36709
36710         * gnulib-tool: List --doc-base before --tests-base.
36711
36712 2006-07-11  Derek R. Price  <derek@ximbiot.com>
36713
36714         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
36715
36716 2006-07-11  Bruno Haible  <bruno@clisp.org>
36717
36718         * README: Mention where to put documentation.
36719
36720 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36721
36722         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
36723
36724 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
36725
36726         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
36727         to stdint.m4.
36728
36729 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
36730
36731         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
36732         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
36733         "no/such/file/stdint.h" when there is no such file, so that
36734         the resulting C code can be parsed by dodgy compilers.
36735         Problems reported by Bob Proulx.
36736
36737 2006-07-10  Derek R. Price  <derek@ximbiot.com>
36738
36739         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
36740         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
36741         macros into the GNU _D_EXACT_NAMLEN.
36742         * lib/savedir.c:  Likewise.
36743         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
36744
36745 2006-07-10  Derek R. Price  <derek@ximbiot.com>
36746         and Paul Eggert  <eggert@cs.ucla.edu>
36747
36748         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
36749         * m4/savedir.m4:
36750         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
36751         macros into the GNU _D_EXACT_NAMLEN.
36752
36753 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
36754
36755         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
36756         around the absolute name, to work around a problem with the HP-UX
36757         11.23 native C compiler, reported by Bob Proulx.
36758
36759 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
36760
36761         * doc/maintain.texi, make-stds.texi: Sync from
36762         <http://savannah.gnu.org/projects/gnustandards>.
36763
36764 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
36765
36766         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
36767
36768 2006-07-09  Jim Meyering  <jim@meyering.net>
36769
36770         * m4/glob.m4: Remove a doubled word in a comment.
36771
36772 2006-07-09  Jim Meyering  <jim@meyering.net>
36773
36774         * lib/argp-pv.c: Remove a doubled word in a comment.
36775         * lib/check-version.c (check_version): Likewise.
36776         * lib/javacomp.c (compile_java_class): Likewise.
36777
36778 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
36779
36780         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
36781         for the benefit of people using Autoconf 2.60.  If you want to
36782         support older Autoconf versions you can copy m4/onceonly_2_57.m4
36783         (or m4/onceonly.m4, if pre-2.57) manually.
36784
36785 2006-07-08  Jim Meyering  <jim@meyering.net>
36786
36787         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
36788         comment.
36789         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
36790         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
36791         comment.
36792
36793 2006-07-08  Jim Meyering  <jim@meyering.net>
36794
36795         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
36796
36797 2006-07-07  Simon Josefsson  <jas@extundo.com>
36798
36799         * tests/test-crc.c: Change expected crc value, the test vector
36800         were probably computed using the old broken crc.c?
36801
36802 2006-07-06  Simon Josefsson  <jas@extundo.com>
36803
36804         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
36805         now the canonical place for the M4 file).
36806
36807         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
36808         from the sys_socket dependency now.
36809
36810         * modules/inet_pton (Files): Ditto.
36811
36812         * modules/inet_ntop (Files): Ditto.
36813
36814 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
36815
36816         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
36817         not gl_PREREQ_GETUSERSHELL.
36818
36819 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36820
36821         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
36822         with only one argument, for Autoconf 2.60.
36823         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
36824         expand to nothing, so add a shell command to avoid syntax error.
36825         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
36826
36827 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36828
36829         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
36830
36831 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
36832
36833         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
36834         no longer needed.  Check for isblank decl.
36835         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
36836         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
36837         of existence.
36838
36839 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
36840
36841         * lib/getloadavg.c: Use __VMS, not VMS.
36842         * lib/getopt.c: Likewise.
36843         * lib/getpagesize.h: Likewise.
36844         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
36845         and probably does not work.
36846
36847 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
36848
36849         * lib/.cppi-disable: Add wcwidth.
36850         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
36851         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
36852         (ISGRAPH): Remove.  All uses changed to isgraph.
36853         (FOLD) [!defined _LIBC]: Remove special case.
36854         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
36855         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
36856         HAVE_ISBLANK.
36857         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
36858         case.
36859
36860 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
36861
36862         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
36863         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
36864         brackets.  Other minor changes to suppress some compiler
36865         warnings.
36866
36867 2006-07-06  Derek R. Price  <derek@ximbiot.com>
36868         and Paul Eggert  <eggert@cs.ucla.edu>
36869
36870         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
36871         of invoking obsolescent AC_HEADER_DIRENT macro.
36872         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
36873         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
36874         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
36875         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
36876         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
36877         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
36878         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
36879         * m4/readdir.m4: Remove; no longer needed.
36880
36881 2006-07-06  Derek R. Price  <derek@ximbiot.com>
36882         and Paul Eggert  <eggert@cs.ucla.edu>
36883
36884         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
36885         Don't worry about this obsolete case any more.
36886         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
36887         directories.
36888         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
36889         worry about this obsolete case any more.
36890         * lib/fts.c: Likewise.
36891         * lib/getcwd.c: Likewise.
36892         * lib/glob.h: Likewise.
36893         * lib/savedir.c: Likewise.
36894
36895 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
36896
36897         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
36898         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
36899         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
36900         needed.
36901         All uses removed.
36902         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
36903         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
36904         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
36905         needed.
36906         * m4/getdate.m4 (gl_GETDATE): Likewise.
36907         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
36908         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
36909         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
36910         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
36911         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
36912         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
36913         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
36914         needed.
36915
36916 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
36917
36918         * lib/memcasecmp.c: Include <limits.h>.
36919         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
36920         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
36921         Don't assume isdigit succeeds only on '0' through '9'.
36922
36923 2006-07-05  Eric Blake  <ebb9@byu.net>
36924
36925         * modules/getaddrinfo (Depends-on): Add snprintf.
36926
36927 2006-07-05  Eric Blake  <ebb9@byu.net>
36928
36929         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
36930         to avoid 'header present but could not be compiled' on cygwin.
36931
36932 2006-07-05  Eric Blake  <ebb9@byu.net>
36933
36934         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
36935         missing from netdb.h.
36936         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
36937
36938 2006-07-05  Derek R. Price  <derek@ximbiot.com>
36939
36940         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
36941         no longer needed.
36942         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
36943         * m4/getdate.m4 (gl_GETDATE): Likewise.
36944         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
36945         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
36946         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
36947         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
36948         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
36949
36950 2006-07-05  Derek R. Price  <derek@ximbiot.com>
36951
36952         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
36953         All uses of is_space replaced by isspace.
36954         * lib/exit.h: Don't talk about STDC_HEADERS.
36955         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
36956         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
36957         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
36958         replaced by isprint etc.
36959         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
36960         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
36961         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
36962         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
36963         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
36964         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
36965
36966 2006-07-05  Bruno Haible  <bruno@clisp.org>
36967
36968         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
36969         the function exists, before testing against AIX.
36970         Reported by Martin Lambers <marlam@marlam.de>.
36971
36972 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
36973
36974         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
36975         From Mark D. Baushke.
36976
36977 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
36978
36979         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
36980         to the absolute name, not just one, to bypass Sun C 5.8's
36981         "warning: #include of /usr/include/... may be non-portable".
36982
36983 2006-07-04  Eric Blake  <ebb9@byu.net>
36984
36985         * modules/dirname-tests: New test module.
36986         * tests/test-dirname.c: New file, replacing dirname.c
36987         TEST_DIRNAME section that was recently deleted.
36988
36989 2006-07-04  Bruno Haible  <bruno@clisp.org>
36990
36991         Assume ANSI C header files and <ctype.h> functions.
36992         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
36993         (mbsnwidth): Use isprint, iscntrl instead.
36994
36995 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
36996
36997         Merge from coreutils.
36998         * MODULES.html.sh: Add xstrtold.
36999         * modules/xstrtold: New file.
37000         * modules/cycle-check (Files): Add lib/same-inode.h.
37001         * modules/dirname (Files): Add m4/double-slash-root.m4.
37002         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
37003         * modules/mkdir-p (Files): Add lib/same-inode.h.
37004         * modules/same (Files): Add lib/same-inode.h.
37005
37006 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
37007
37008         * m4/absolute-header.m4: Renamed from full-header-path.m4.
37009         This is to keep the terminology clean; POSIX talks about
37010         "absolute pathnames", not "full pathnames", but the GNU
37011         Coding Standards say to use "path" for something else;
37012         so use "absolute" to keep both sides happy.
37013         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
37014         Set gl_absolute_header, not gl_full_header_path.
37015         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
37016         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
37017         All uses changed.
37018
37019         Merge from coreutils.
37020
37021         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
37022
37023         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
37024         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
37025         want to require the building of c-strtod.o.
37026         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
37027         needs -lm directly.
37028         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
37029
37030         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
37031
37032         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
37033         --as-needed option if available.  Problem reported by Albert Chin in
37034         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
37035         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
37036         cc merely issues a bunch of annoying warnings for --as-needed
37037         (this problem was reported by Bob Proulx).  Also, try linking with
37038         -lm to detect a bug in binutils 2.16 (this problem was reported
37039         by Ralf Wildenhues).
37040
37041         2006-06-18  Jim Meyering  <jim@meyering.net>
37042
37043         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
37044         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
37045         macro.
37046         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
37047         also check for glibc-2.4's abort-inducing bug.
37048
37049         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
37050         Low-probability clean-up should be to use rmdir to get rid of
37051         the just-created directory, not unlink.
37052
37053         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
37054         configure fail, and request a bug report to inform us about it.
37055         Add a comment that, barring reports to the contrary, in 2007 we'll
37056         assume ftruncate is universally available.
37057
37058         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
37059
37060         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
37061
37062         2006-03-12  Jim Meyering  <jim@meyering.net>
37063
37064         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
37065         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
37066         * m4/same.m4 (gl_SAME): Likewise.
37067         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
37068
37069         2006-03-11  Eric Blake  <ebb9@byu.net>
37070
37071         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
37072         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
37073         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
37074         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
37075
37076 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
37077
37078         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
37079         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
37080         reported by Mark D. Baushke, one in
37081         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
37082
37083         Merge from coreutils.
37084
37085         * lib/.cppi-disable: Add stdint_.h.
37086         * lib/.cvsignore: Add stdint.h.
37087
37088         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
37089
37090         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
37091         both double and long double versions.
37092         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
37093         * lib/xstrtold.c: New file.
37094         * lib/xstrtod.h (xstrtold): New decl.
37095
37096         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
37097
37098         * lib/filemode.c (setst): Remove.
37099         (strmode): Rewrite to avoid setst.  This makes the code shorter,
37100         (arguably) clearer, and the generated code is a bit smaller on my
37101         Debian GNU/Linux stable x86 host.
37102
37103         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
37104
37105         * lib/filemode.c: Include "filemode.h" first, to test the interface.
37106         Assume that filemode.h includes sys/types.h and sys/stat.h.
37107         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
37108         (ftypelet): Reorder to put common cases first, for efficiency.
37109         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
37110         to do 'M'.
37111         (strmode): Renamed from mode_string, and now stores 12 bytes instead
37112         of 10, for compatibility with FreeBSD.  All callers changed.
37113         (filemodestring): Now stores 12 bytes instead of 10, and sets file
37114         types that can't be deduced solely from st_mode.  First arg is now a
37115         const pointer.
37116         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
37117         (strmode): Renamed from mode_string.
37118         (filemodestring): New decl.
37119         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
37120         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
37121         needed.
37122         (S_ISPORT, S_ISWHT): New macros, if not already defined.
37123
37124         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
37125
37126         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
37127         fsusage.h now does that.  Include fsusage.h first, to test interface.
37128         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
37129         at most one method (the old code could have generated decls that
37130         didn't conform to C89, not that this was ever exercised).
37131         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
37132
37133         2006-03-19  Jim Meyering  <jim@meyering.net>
37134
37135         Work even in a chroot where d_ino values for entries in "/"
37136         don't match the stat.st_ino values for the same names.
37137         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
37138         number, iterate through all entries again, using lstat instead.
37139         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
37140         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
37141
37142         * lib/getcwd.c (__getcwd): Clarify a comment.
37143         Use memcpy in place of a call to strcpy.
37144
37145         2006-03-12  Jim Meyering  <jim@meyering.net>
37146
37147         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
37148         matches that of the current directory (which we're about to chdir ".."
37149         out of), then save the dev-ino of the parent, instead.
37150
37151         * lib/same-inode.h (SAME_INODE): New file/macro.
37152         * lib/chdir-safer.c (SAME_INODE): Remove definition.
37153         Include "same-inode.h", instead.
37154         * lib/same.c: Likewise.
37155         * lib/cycle-check.h: Include "same-inode.h".
37156         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
37157         * lib/cycle-check.c (SAME_INODE): Remove definition.
37158         * lib/root-dev-ino.h: Include "same-inode.h".
37159
37160         2006-03-11  Eric Blake  <ebb9@byu.net>
37161
37162         * lib/same.c (same_name): s/base_name/last_component/
37163         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
37164         * lib/filenamecat.c (file_name_concat): Likewise.
37165
37166         2006-03-11  Eric Blake  <ebb9@byu.net>,
37167                     Paul Eggert  <eggert@cs.ucla.edu>
37168
37169         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
37170         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
37171         drive prefix.
37172         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
37173         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
37174         (last_component): New method.
37175         * lib/dirname.c (dir_len): Determine when drive letters need a
37176         subsequent slash.  Preserve // when it is special.
37177         (dir_name): Don't append dot when drive letter is absolute.
37178         [TEST_DIRNAME]: Move into a full-blown gnulib test.
37179         * lib/basename.c (base_name): New semantics - malloc the result.
37180         Preserve // when it is special.  Preserve relative files that look
37181         like drive letters.
37182         (base_len): Preserve // when it is special.
37183         (last_component): New method, similar to old base_name semantics.
37184         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
37185         base_name.  Strip redundant slashes from ///.
37186
37187 2006-07-03  Jim Meyering  <jim@meyering.net>
37188
37189         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
37190         macro is used before the first cycle_check call.
37191
37192 2006-07-03  Eric Blake  <ebb9@byu.net>
37193
37194         * modules/dirname (Depends-on): Add xstrndup.
37195
37196 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
37197
37198         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
37199         test cases, so that config.log is a bit easier to follow.
37200
37201 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
37202
37203         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
37204         both are 64 bits, since this seems to be the tradition, and this
37205         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
37206         we ever run into a host that prefers long long to long in this
37207         case, we'll need another configure-time test.  Problem reported by
37208         Jim Meyering.
37209
37210 2006-07-02  Eric Blake  <ebb9@byu.net>
37211
37212         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
37213
37214 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
37215
37216         * modules/inttypes (Depends-on): No longer depends on stdint.
37217         * modules/stdint (Description): Say more about assumptions.
37218         Say that the fast types might differ.  Say macros are used.
37219         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
37220         (Makefile.am): Revise list of substituted symbols to match
37221         new stdint.m4.
37222         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
37223         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
37224         * tests/test-stdint.c (verify_same_types)
37225         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
37226         the code conforms to C99/C89.
37227         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
37228         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
37229
37230 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
37231
37232         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
37233         but fix a bug, by requiring at least 64 bits.
37234         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
37235         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
37236         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
37237         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
37238
37239         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
37240         changes.  Make 2.59 a prerequisite.  Check and substitute for
37241         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
37242         inttypes.h.  Do not use special include files; just use the
37243         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
37244         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
37245         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
37246         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
37247         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
37248         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
37249         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
37250         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
37251         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
37252         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
37253         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
37254         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
37255         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
37256         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
37257         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
37258         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
37259         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
37260         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
37261         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
37262         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
37263         WINT_MAX.  Check for C99 conformance more strictly, by detecting
37264         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
37265         not check for things that C99 does not require, e.g., int8_t.  If
37266         a test isn't needed unless <stdint.h> isn't working, and is
37267         unlikely to be needed for any other reason, then don't do it
37268         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
37269         size_t, since we assume C89 freestanding at least.  Do not check
37270         for sig_atomic_t, wchar_t, or wint_t, since the code now does
37271         the right thing even if the types are not defined.  Instead use:
37272         (gl_STDINT_TYPE_PROPERTIES): New macro.
37273         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
37274         testing whether <sys/types.h> clashes, as Autoconf does this for
37275         us now.  All uses removed.
37276         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
37277         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
37278         (gl_CHECK_TYPE_SAME):
37279         Remove; no longer needed.
37280         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
37281         exists, since we'll return 0 anyway in that case.
37282         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
37283
37284 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
37285
37286         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
37287         possible collision with system files.
37288         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
37289         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
37290         WCHAR_MIN and WCHAR_MAX in this case.
37291         (<stddef.h>): Do not include; no longer needed.
37292         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
37293         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
37294         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
37295         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
37296         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
37297         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
37298         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
37299         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
37300         !defined(__c99))]: Include in this case too, since it's harmless
37301         now.
37302         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
37303         dangerous to do so.
37304         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
37305         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
37306         (_STDINT_MIN, _STDINT_MAX): New macros.
37307         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
37308         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
37309         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
37310         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
37311         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
37312         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
37313         macros, not typedefs; this simplifies things quite a bit.
37314         Use long int for all types narrower than int64_t.
37315         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
37316         Define in terms of long long int or int64_t or long int,
37317         not int64_t or int32_t.  This saves some compile-time testing.
37318         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
37319         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
37320         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
37321         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
37322         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
37323         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
37324         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
37325         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
37326         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
37327         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
37328         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
37329         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
37330         undef any previous version and define our own version, for
37331         simplicity and consistency with the new macros for types.
37332         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
37333         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
37334         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
37335         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
37336         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
37337         @WINT_T_SUFFIX@ to keep things simple here.
37338         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
37339         Simplify by assuming typical 8/16/32/64 host, since we're
37340         already doing that elsewhere anyway.
37341         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
37342         and assume long long int is 64 bits if available.  This
37343         speeds up 'configure'.
37344
37345 2006-07-01  Eric Blake  <ebb9@byu.net>
37346
37347         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
37348         Reported by Andreas Buening.
37349
37350 2006-07-01  Eric Blake  <ebb9@byu.net>
37351
37352         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
37353
37354 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
37355
37356         * lib/getaddrinfo.c: fixed typo
37357
37358 2006-06-29  Jim Meyering  <jim@meyering.net>
37359
37360         * modules/strftime (Maintainer): Add my name, since with the
37361         FPRINTFTIME changes strftime.c has forked from glibc.
37362
37363 2006-06-29  Eric Blake  <ebb9@byu.net>
37364
37365         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
37366
37367 2006-06-29  Eric Blake  <ebb9@byu.net>
37368
37369         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
37370
37371 2006-06-29  Eric Blake  <ebb9@byu.net>
37372
37373         * lib/stat_.h: New file.
37374
37375 2006-06-29  Eric Blake  <ebb9@byu.net>
37376
37377         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
37378         unused static function.
37379
37380 2006-06-29  Eric Blake  <ebb9@byu.net>
37381
37382         * doc/functions.texi (Function Portability): Document missing lstat
37383         on mingw.
37384
37385 2006-06-29  Eric Blake  <ebb9@byu.net>
37386
37387         * MODULES.html.sh: Add sys_stat.
37388         * modules/sys_stat: New module.
37389         * modules/mkstemp (Depends-on): Add sys_stat.
37390
37391 2006-06-29  Derek R. Price  <derek@ximbiot.com>
37392
37393         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
37394
37395 2006-06-29  Derek R. Price  <derek@ximbiot.com>
37396
37397         * m4/c-bs-a.m4: Removed.
37398
37399 2006-06-29  Derek R. Price  <derek@ximbiot.com>
37400
37401         * lib/strftime.c: Assume strftime() exists.
37402
37403 2006-06-29  Derek Price  <derek@ximbiot.com>
37404
37405         * modules/c-bs-a: Removed - \a is C89.
37406         * MODULES.html.sh: Remove c-bs-a.
37407
37408 2006-06-29  Bruno Haible  <bruno@clisp.org>
37409
37410         * modules/wcwidth (License): Change to LGPL.
37411
37412 2006-06-28  Simon Josefsson  <jas@extundo.com>
37413
37414         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
37415         on _WIN32.
37416
37417         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
37418         getnameinfo.
37419
37420 2006-06-28  Simon Josefsson  <jas@extundo.com>
37421
37422         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
37423
37424 2006-06-28  Simon Josefsson  <jas@extundo.com>
37425
37426         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
37427         functions there.  It will succeed on Windows XP, but on Windows
37428         2000 and (presumably) earlier, it will fail, and use the internal
37429         re-implementation.
37430         (use_win32_p): New function.
37431         (getaddrinfo): Use strtoul on servname, to support numeric ports.
37432         Support AI_NUMERICSERV to disable getservbyname.
37433         (getnameinfo): New function, only supports
37434         NI_NUMERICHOST|NI_NUMERICSERV for now.
37435
37436         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
37437         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
37438         getnameinfo.
37439
37440 2006-06-28  Eric Blake  <ebb9@byu.net>
37441
37442         * modules/wcwidth: New file.
37443         * modules/mbchar (Depends-on): Add wcwidth.
37444         * modules/mbswidth (Depends-on): Add wcwidth.
37445         * MODULES.html.sh: Add wcwidth.
37446
37447 2006-06-28  Eric Blake  <ebb9@byu.net>
37448
37449         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
37450         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
37451
37452 2006-06-28  Eric Blake  <ebb9@byu.net>
37453
37454         * lib/xvasprintf.h: Fix comments.
37455
37456 2006-06-28  Eric Blake  <ebb9@byu.net>
37457
37458         * lib/mbchar.h (wcwidth): Include wcwidth.h.
37459         * lib/mbswidth.c (wcwidth): Move from here...
37460         * lib/wcwidth.h: ...to this new file.
37461
37462 2006-06-28  Derek R. Price  <derek@ximbiot.com>
37463
37464         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
37465
37466         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
37467         it's obsolete.
37468         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
37469
37470 2006-06-28  Derek R. Price  <derek@ximbiot.com>
37471
37472         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
37473         Autoconf 2.60 says this stuff was obsolete.
37474
37475 2006-06-28  Bruno Haible  <bruno@clisp.org>
37476
37477         * modules/wcwidth (Files): Add m4/wchar_t.m4.
37478
37479 2006-06-28  Bruno Haible  <bruno@clisp.org>
37480
37481         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
37482         gt_TYPE_WCHAR_T.
37483
37484 2006-06-28  Bruno Haible  <bruno@clisp.org>
37485
37486         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
37487         declaration for wcwidth.
37488         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
37489
37490 2006-06-28  Bruno Haible  <bruno@clisp.org>
37491
37492         * lib/mkdtemp.c [MINGW]: Include <io.h>.
37493         (mkdir): Define using _mkdir.
37494
37495 2006-06-28  Bruno Haible  <bruno@clisp.org>
37496
37497         * lib/getaddrinfo.h: Fix POSIX URL.
37498         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
37499         _WIN32.
37500         (use_win32_p): Make static.
37501         (getaddrinfo): Reject service name if it is empty or does not consist
37502         solely of decimal digits, or if its value is > 65535.
37503         (getnameinfo): Remove useless casts.
37504
37505 2006-06-27  Simon Josefsson  <jas@extundo.com>
37506
37507         * modules/sys_select: New file, suggested by Bruno Haible, Paul
37508         Eggert and Martin Lambers.
37509
37510 2006-06-27  Simon Josefsson  <jas@extundo.com>
37511
37512         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
37513         Eggert and Martin Lambers.
37514
37515 2006-06-27  Bruno Haible  <bruno@clisp.org>
37516
37517         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
37518         result to 0, not to empty.
37519         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
37520
37521 2006-06-27  Bruno Haible  <bruno@clisp.org>
37522
37523         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
37524
37525 2006-06-26  Simon Josefsson  <jas@extundo.com>
37526
37527         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
37528         present.
37529
37530 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
37531
37532         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
37533         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
37534         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
37535
37536 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
37537
37538         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
37539
37540 2006-06-26  Bruno Haible  <bruno@clisp.org>
37541
37542         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
37543
37544 2006-06-26  Bruno Haible  <bruno@clisp.org>
37545
37546         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
37547
37548 2006-06-26  Bruno Haible  <bruno@clisp.org>
37549
37550         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
37551         SGI C compiler in pre-C99 mode.
37552         Suggested by Mark D. Baushke and Larry Jones.
37553
37554 2006-06-26  Bruno Haible  <bruno@clisp.org>
37555
37556         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
37557         WCHAR_MAX.
37558         Reported by Mark D. Baushke and Larry Jones.
37559
37560 2006-06-26  Bruno Haible  <bruno@clisp.org>
37561
37562         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
37563         in pre-C99 mode.
37564         Suggested by Mark D. Baushke and Larry Jones.
37565
37566 2006-06-23  Simon Josefsson  <jas@extundo.com>
37567             Bruno Haible  <bruno@clisp.org>
37568
37569         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
37570         Emit mostlyclean-local rule.
37571         (func_emit_tests_Makefile_am): Likewise.
37572         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
37573
37574 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
37575
37576         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
37577
37578 2006-06-23  Bruno Haible  <bruno@clisp.org>
37579
37580         * tests/test-stdint.c: Update to match ISO C 99 Technical
37581         Corrigendum 1.
37582
37583 2006-06-23  Bruno Haible  <bruno@clisp.org>
37584
37585         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
37586
37587 2006-06-23  Bruno Haible  <bruno@clisp.org>
37588
37589         * lib/stdint_.h: Treat IRIX like OpenBSD.
37590
37591 2006-06-23  Bruno Haible  <bruno@clisp.org>
37592
37593         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
37594         ISO C 99 Technical Corrigendum 1.
37595
37596 2006-06-22  Simon Josefsson  <jas@extundo.com>
37597
37598         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
37599         MinGW.
37600
37601 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
37602
37603         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
37604         needed.  Some compiler complained about some of them.  Problem reported
37605         by Larry Jones in
37606         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
37607
37608 2006-06-21  Simon Josefsson  <jas@extundo.com>
37609
37610         * tests/test-getaddrinfo.c: New file.
37611
37612         * modules/getaddrinfo-tests: New file.
37613
37614         * MODULES.html.sh: Add inet_pton.
37615
37616         * modules/inet_pton: New file.
37617
37618 2006-06-21  Simon Josefsson  <jas@extundo.com>
37619
37620         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
37621         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
37622         of using the (limited) gnulib implementation on Windows XP.
37623
37624         * m4/inet_pton.m4: New file.
37625
37626 2006-06-21  Simon Josefsson  <jas@extundo.com>
37627
37628         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
37629         variable.
37630
37631         * lib/socket_.h: Don't define WINVER.
37632
37633         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
37634         slightly modified to work in gnulib.
37635
37636 2006-06-21  Simon Josefsson  <jas@extundo.com>
37637
37638         * doc/gnulib.texi (Windows sockets): Add.
37639
37640 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
37641
37642         * lib/read-file.c (fread_file): Start with buffer allocation of
37643         0 bytes rather than 1 byte; this simplifies the code.
37644         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
37645         code to free buffer and save/restore errno.
37646         (internal_read_file): Remove unused local.
37647
37648 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
37649
37650         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
37651         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
37652         Problem reported by Denis Excoffier in
37653         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
37654
37655 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
37656
37657         * modules/sys_socket, modules/socklen: Include sys/types since
37658         FreeBSD 4.x's sys/socket.h needs it.
37659
37660 2006-06-19  Simon Josefsson  <jas@extundo.com>
37661
37662         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
37663
37664 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
37665
37666         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
37667
37668 2006-06-19  Bruno Haible  <bruno@clisp.org>
37669
37670         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
37671         and FULL_PATH_INTTYPES_H in angle brackets.
37672         Reported by Mark D. Baushke <mdb@gnu.org>.
37673
37674 2006-06-17  Eric Blake  <ebb9@byu.net>
37675
37676         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
37677         errno.
37678
37679 2006-06-17  Bruno Haible  <bruno@clisp.org>
37680
37681         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
37682         <sys/inttypes.h>.
37683
37684 2006-06-17  Bruno Haible  <bruno@clisp.org>
37685
37686         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
37687         whether errno is declared. Assume <errno.h> declares errno.
37688
37689 2006-06-17  Bruno Haible  <bruno@clisp.org>
37690
37691         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
37692
37693 2006-06-17  Bruno Haible  <bruno@clisp.org>
37694
37695         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
37696         problem on Solaris 2.5.1.
37697
37698 2006-06-16  Eric Blake  <ebb9@byu.net>
37699
37700         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
37701         * lib/unicodeio.c [!defined errno]: Likewise.
37702         * lib/strtol.c [!defined errno]: Likewise.
37703         * lib/strtod.c [!defined errno]: Likewise.
37704
37705 2006-06-15  Eric Blake  <ebb9@byu.net>
37706
37707         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
37708
37709 2006-06-15  Eric Blake  <ebb9@byu.net>
37710
37711         * config/srclist.txt (ssize_t.m4): Lose sync.
37712
37713 2006-06-15  Bruno Haible  <bruno@clisp.org>
37714
37715         * modules/stdint (Files): Include m4/full-header-path.m4,
37716         m4/size_max.m4, m4/wchar_t.m4.
37717         (Makefile.am): Many more substitutions.
37718         * modules/stdint-tests: New file.
37719         * tests/test-stdint.c: New file.
37720
37721 2006-06-15  Bruno Haible  <bruno@clisp.org>
37722
37723         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
37724         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
37725         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
37726         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
37727         gl_CHECK_TYPE_SAME): New macros.
37728
37729 2006-06-15  Bruno Haible  <bruno@clisp.org>
37730
37731         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
37732
37733 2006-06-15  Bruno Haible  <bruno@clisp.org>
37734
37735         * lib/stdint_.h: Rewritten to be fully auto-configured.
37736         Fixes bug on HP-UX/IA64.
37737
37738 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
37739
37740         * lib/getdate.y (__attribute__): Don't define if already defined.
37741         Problem reported by Larry Jones.
37742         * lib/utimens.c (__attribute__): Likewise.
37743
37744 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
37745
37746         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
37747         reported by Andreas Schwab.
37748
37749 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37750             Bruno Haible  <bruno@clisp.org>
37751
37752         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
37753         check for the declaration of strnlen and a run test that exposes the
37754         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
37755         rpl_strndup.
37756
37757 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37758             Bruno Haible  <bruno@clisp.org>
37759
37760         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
37761
37762 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37763
37764         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
37765         compile test, for Tru64 4.0D.
37766
37767 2006-05-28  Karl Berry  <karl@gnu.org>
37768
37769         * config/srclist.txt (printf-args.c): lose sync.
37770
37771 2006-05-26  Martin Lambers  <marlam@marlam.de>
37772
37773         * lib/getpass.c: Updates the test for the native W32 API, and adds
37774         missing includes, thus fixing compilation warnings.
37775
37776 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
37777
37778         * lib/exclude.c (exclude_fnmatch): New function.
37779         (excluded_file_name): Call exclude_fnmatch.
37780         * lib/exclude.h (excluded_file_name): New prototype
37781
37782 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
37783
37784         * lib/tempname.c (small_open, large_open): New macros.
37785         (__open, __open64) [!_LIBC]: Remove.
37786         (__gen_tempname): Use small_open and large_open instead of __open
37787         and __open64.  This fixes a portability bug on HP-UX 11.11i
37788         reported by Simon Wing-Tang in
37789         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
37790
37791 2006-05-24  Bruno Haible  <bruno@clisp.org>
37792
37793         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
37794         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
37795         Reported by Thorsten Maerz <torte@netztorte.de> via
37796         Aaron Stone <aaron@serendipity.cx>.
37797
37798 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
37799
37800         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
37801         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
37802         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
37803         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
37804         not really conditional on the cache.
37805         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
37806
37807 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
37808
37809         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
37810         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
37811         (my_usleep): Don't mishandle maximum value.
37812
37813 2006-05-19  Jim Meyering  <jim@meyering.net>
37814
37815         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
37816
37817 2006-05-17  Bruno Haible  <bruno@clisp.org>
37818
37819         Cygwin portability.
37820         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
37821
37822 2006-05-17  Bruno Haible  <bruno@clisp.org>
37823
37824         * lib/stdint_.h: Fix recognition of Cygwin.
37825
37826 2006-05-15  Bruno Haible  <bruno@clisp.org>
37827
37828         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
37829         on libtool patch by Ralf Wildenhues.
37830
37831 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
37832
37833         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
37834         test for C99 conformance; (bool) 0.5 is an integer constant
37835         expression, but (bool) -0.5 is not.  Problem reported by Fedor
37836         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
37837
37838 2006-05-11  Simon Josefsson  <jas@extundo.com>
37839
37840         * m4/xvasprintf.m4: Fix obvious typo.
37841
37842 2006-05-11  Jim Meyering  <jim@meyering.net>
37843
37844         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
37845         James Lemley.
37846
37847 2006-05-10  Simon Josefsson  <jas@extundo.com>
37848
37849         * lib/md4.c: Typo fix, update copyright years.
37850         (K1, K2): Don't use L because it turn computations into 64-bit on
37851         64-bit platforms.
37852
37853 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
37854
37855         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
37856         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
37857         unwanted sign propagation, e.g., on hosts with 64-bit int.
37858         There still are some problems with reeelly weird theoretical hosts
37859         (e.g., 33-bit int) but it's not worth worrying about now.
37860         * lib/sha1.c (rol): Likewise.
37861         (K1, K2, K3, K4): Remove unnecessary L suffix.
37862
37863 2006-05-10  Bruno Haible  <bruno@clisp.org>
37864
37865         * lib/des.c: Cast to avoid warnings.
37866
37867 2006-05-09  Bruno Haible  <bruno@clisp.org>
37868
37869         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
37870         (Depends-on): Depend also on xsize, stdarg.
37871         (configure.ac): Add gl_XVASPRINTF.
37872
37873 2006-05-09  Bruno Haible  <bruno@clisp.org>
37874
37875         * m4/xvasprintf.m4: New file.
37876
37877 2006-05-09  Bruno Haible  <bruno@clisp.org>
37878
37879         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
37880         (EOVERFLOW): Define fallback value.
37881         (xstrcat): New function.
37882         (xvasprintf): Recognize the special case of a string concatenation.
37883
37884 2006-05-08  Eric Blake  <ebb9@byu.net>
37885
37886         * gnulib-tool (func_version): Base copyright year on CVS date.
37887         (func_emit_copyright_notice): New function.
37888         (func_emit_lib_Makefile_am): Use it.
37889         (func_emit_tests_Makefile_am): Likewise.
37890         (func_import): Likewise.
37891
37892 2006-05-08  Bruno Haible  <bruno@clisp.org>
37893
37894         * modules/stdarg: New file.
37895         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
37896
37897 2006-05-08  Bruno Haible  <bruno@clisp.org>
37898
37899         * m4/stdarg.m4: New file, from GNU gettext.
37900
37901 2006-05-08  Bruno Haible  <bruno@clisp.org>
37902
37903         * config/srclist.txt (build-aux/config.rpath): different from latest
37904         release.
37905
37906 2006-05-08  Bruno Haible  <bruno@clisp.org>
37907
37908         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
37909
37910 2006-05-05  Jim Meyering  <jim@meyering.net>
37911
37912         * m4/warning.m4: New file, derived from bison's file by the same name.
37913
37914 2006-05-03  Bruno Haible  <bruno@clisp.org>
37915
37916         * lib/stdint_.h: Shorter URL.
37917         * lib/inttypes.h: Likewise.
37918
37919 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
37920
37921         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
37922
37923 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
37924
37925         * lib/verify.h: Document the internals better.  Most of this change
37926         was written by Bruno Haible.
37927
37928 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
37929
37930         * doc/verify.texi: New file, partly based on a proposal by
37931         Bruno Haible.
37932
37933 2006-05-02  Bruno Haible  <bruno@clisp.org>
37934
37935         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
37936         test from here...
37937         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
37938
37939 2006-04-29  Bruno Haible  <bruno@clisp.org>
37940
37941         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
37942         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
37943
37944 2006-04-29  Bruno Haible  <bruno@clisp.org>
37945
37946         * gnulib-tool: Make --update option actually work.
37947
37948 2006-04-29  Bruno Haible  <bruno@clisp.org>
37949
37950         * doc/gcd.texi: New file.
37951         * doc/gnulib.texi: Include it.
37952
37953 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
37954
37955         * lib/getdate.y (get_date): When adding relative date, start with the
37956         initial time, not with the result of the first mktime call.
37957
37958 2006-04-25  Bruno Haible  <bruno@clisp.org>
37959
37960         * gnulib-tool (func_import): Output the include directives in three
37961         blocks, sorted separately.
37962         Reported by Ben Pfaff <blp@cs.stanford.edu>.
37963
37964 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
37965
37966         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
37967         to define main with arguments, for C++.  Reported by Eric Blake.
37968         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
37969         Prefer 'int main ()' to 'int main (void)', for C++.
37970         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
37971         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
37972         for 'main', for C99 and C++.
37973
37974 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
37975
37976         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
37977         Don't assume that exit status -1 is valid.
37978         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
37979         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
37980         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
37981         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
37982         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
37983         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
37984         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
37985         functions can be used without declaring them, or that you can
37986         exit with status -1.
37987         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
37988
37989 2006-04-24  Karl Berry  <karl@gnu.org>
37990
37991         * config/srclist.txt (longdouble.m4): sync lost.
37992
37993 2006-04-24  Eric Blake  <ebb9@byu.net>
37994
37995         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
37996
37997 2006-04-24  Bruno Haible  <bruno@clisp.org>
37998
37999         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
38000         poll() implementation in AIX.
38001         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38002
38003 2006-04-24  Bruno Haible  <bruno@clisp.org>
38004
38005         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
38006         assigned exactly once.
38007
38008 2006-04-23  Claudio Fontana  <claudio@gnu.org>
38009             Bruno Haible  <bruno@clisp.org>
38010
38011         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
38012         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
38013         for AM_CPPFLAGS.
38014
38015 2006-04-23  Bruno Haible  <bruno@clisp.org>
38016
38017         * modules/copy-file: Depend on unistd.
38018         * modules/execute: Likewise.
38019         * modules/fatal-signal: Likewise.
38020         * modules/findprog: Likewise.
38021         * modules/mkdtemp : Likewise.
38022         * modules/pipe: Likewise.
38023         * modules/wait-process: Likewise.
38024
38025 2006-04-23  Bruno Haible  <bruno@clisp.org>
38026
38027         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
38028         condition was already detected.
38029         Reported by Ben Pfaff <blp@cs.stanford.edu>.
38030
38031 2006-04-23  Bruno Haible  <bruno@clisp.org>
38032
38033         * lib/copy-file.c: Include <unistd.h> unconditionally.
38034         * lib/execute.c: Likewise.
38035         * lib/fatal-signal.c: Likewise.
38036         * lib/findprog.c: Likewise.
38037         * lib/mkdtemp.c: Likewise.
38038         * lib/pipe.h: Likewise.
38039         * lib/pipe.c: Likewise.
38040         * lib/wait-process.h: Likewise.
38041
38042 2006-04-23  Bruno Haible  <bruno@clisp.org>
38043
38044         * gnulib-tool (func_usage): Fix --import description. Document
38045         --update.
38046         (func_import): Create temporary file in a temporary directory, if
38047         --dry-run is specified. Silence errors from 'grep' when there are no
38048         m4 files in $m4dir.
38049         (func_create_testdir): Silence errors from 'grep' when there are no
38050         m4 files in $m4dir.
38051         Reported by Karl Berry <karl@freefriends.org>.
38052
38053 2006-04-20  Bruno Haible  <bruno@clisp.org>
38054
38055         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
38056         one argument, so that the code will be portable to Autoconf 2.60.
38057         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
38058         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
38059         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
38060
38061 2006-04-19  Derek Price  <derek@ximbiot.com>
38062             Eric Blake  <ebb9@byu.net>
38063
38064         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
38065         rather than "/full/path.h".  Update comment to match.  Shorten &
38066         generalize m4_translit call via AS_TR_CPP.
38067
38068 2006-04-19  Derek Price  <derek@ximbiot.com>
38069             Eric Blake  <ebb9@byu.net>
38070
38071         * lib/inttypes.h: Correct grammar in comment.
38072
38073 2006-04-18  Derek Price  <derek@ximbiot.com>
38074             Paul Eggert  <eggert@cs.ucla.edu>
38075
38076         * modules/inttypes: New file.
38077         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
38078
38079 2006-04-18  Derek Price  <derek@ximbiot.com>
38080             Paul Eggert  <eggert@cs.ucla.edu>
38081
38082         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
38083         New files.
38084
38085 2006-04-18  Derek Price  <derek@ximbiot.com>
38086             Paul Eggert  <eggert@cs.ucla.edu>
38087
38088         * lib/inttypes.h: New file.
38089         * lib/strtoimax.c: Assume <inttypes.h>.
38090
38091 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
38092
38093         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
38094         isn't mounted.  Problem reported by Kir Kolyshkin.
38095
38096 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
38097
38098         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
38099         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
38100         Derek R. Price.
38101         * lib/regex.h (RE_DUP_MAX): Update comment to match current
38102         implementation.
38103
38104 2006-04-12  Eric Blake  <ebb9@byu.net>
38105
38106         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
38107         is now done automatically by the corresponding Autoconf macro.
38108
38109 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
38110
38111         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
38112         time_r.h.
38113
38114 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
38115
38116         Merge regex changes from libc, removing some of our
38117         POSIX-conformance changes that were rejected and redoing them in a
38118         less-intrusive way.
38119
38120         * lib/regcomp.c (re_compile_internal, init_dfa):
38121         Length arg is now size_t, not Idx.  All uses changed.
38122         (peek_token): Forward decl now says internal_function.
38123         (__re_error_msgid, __re_error_msgid_idx):
38124         Now static rather than extern with attribute_hidden.
38125         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
38126         For some reason libc prefers K&R style defns for external functions.
38127         (regerror) [!defined _LIBC]: Likewise.
38128         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
38129         (seek_collating_symbol_entry, lookup_collation_sequence_value):
38130         (build_range_exp, build_collating_symbol):
38131         Use K&R-style defn.
38132         (re_compile_fastmap): Use '\0' to memset, not 0.
38133         (utf8_sb_map): Make the calculations more obvious.
38134         (init_dfa, parse_bracket_exp, build_charclass_op):
38135         Call calloc and cast result, as glibc does.
38136         (init_word_char, fetch_token, peek_token, peek_token_bracket):
38137         (build_range_exp, build_collating_symbol):
38138         Now internal functions.
38139
38140         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
38141
38142         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
38143         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
38144         Don't depend on VMS; depend on __VMS instead, for POSIX
38145         namespace cleanness.
38146         (regoff_t): Define to ssize_t, not long int.
38147
38148         Remove the REG_ macros named below.  Instead, make the old names
38149         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
38150         __USE_GNU_REGEX.
38151         (REG_BACKSLASH_ESCAPE_IN_LISTS):
38152         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
38153         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
38154         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
38155         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
38156         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
38157         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
38158         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
38159         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
38160         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
38161         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
38162         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
38163         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
38164         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
38165         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
38166         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
38167         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
38168         (REG_NREGS):
38169         Remove.  All uses replaced by the old RE_* names.
38170         (RE_BACKSLASH_ESCAPE_IN_LISTS):
38171         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
38172         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
38173         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
38174         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
38175         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
38176         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
38177         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
38178         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
38179         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
38180         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
38181         Don't bother having these macros be independent of each others'
38182         values, since they no longer exist in the POSIX name space.
38183
38184         Rename the following member names back to their old names,
38185         unless !__USE_GNU_REGEX.  All uses changed back.
38186         (buffer): Renamed from re_buffer.
38187         (allocated): Renamed from re_allocated.
38188         (used): Renamed from re_used.
38189         (syntax): Renamed from re_syntax.
38190         (fastmap): Renamed from re_fastmap.
38191         (translate): Renamed from re_translate.
38192         (can_be_null): Renamed from re_can_be_null.
38193         (regs_allocated): Renamed from re_regs_allocated.
38194         (fastmap_accurate): Renamed from re_fastmap_accurate.
38195         (no_sub): Renamed from re_no_sub.
38196         (not_bol): Renamed from re_not_bol.
38197         (not_eol): Renamed from re_not_eol.
38198         (newline_anchor): Renamed from re_newline_anchor.
38199         (num_regs): Renamed from rm_num_regs.
38200         (start): Renamed from rm_start.
38201         (end): Renamed from rm_end.
38202
38203         (free_state): Move up a bit.
38204
38205         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
38206         #define to be empty.
38207         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
38208         when that is what is intended.
38209         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
38210         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
38211         (MAX): New macro.
38212         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
38213         All uses changed back to re_malloc, etc.  It's now the caller's
38214         responsibility to check for overflow; all callers changed.
38215         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
38216         (re_x2nrealloc): Remove.
38217         (free_state): Remove decl.
38218
38219         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
38220         (re_set_registers, re_exec):
38221         Use K&R-style defn.
38222
38223         2006-01-31  Roland McGrath  <roland@redhat.com>
38224
38225         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
38226         Reported by Mike Frysinger <vapier@gentoo.org>.
38227
38228         2006-01-15  Andreas Jaeger  <aj@suse.de>
38229
38230         [BZ #1950]
38231         * lib/regex_internal.c (re_string_reconstruct): Adjust for
38232         build_wcs_upper_buffer change.
38233         (build_wcs_upper_buffer): Change return type.
38234
38235         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
38236
38237         * lib/regex_internal.h: Include <stdint.h> if available.
38238
38239         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
38240
38241         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
38242
38243         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
38244
38245         * lib/regcomp.c: Adjust for changed secondary hash function.
38246
38247         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
38248
38249         * lib/regex.h: Pretty printing.
38250         Clean up namespace a bit.
38251
38252         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
38253
38254         * lib/regexec.c (update_cur_sifted_state, check_arrival,
38255         check_arrival_add_next_nodes): Avoid using uninitialized variable.
38256
38257         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
38258                     Ulrich Drepper  <drepper@redhat.com>
38259
38260         [BZ #1302]
38261         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
38262         changed.
38263         (bitset_word_t): Renamed from bitset_word.  All uses changed.
38264
38265         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
38266
38267         [BZ #281]
38268         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
38269         * lib/regcomp.c: Remove unnecessary uses of
38270         unsigned RE_TRANSLATE_TYPE.
38271         * lib/regex_internal.h: Likewise.
38272         * lib/regex_internal.c: Likewise.
38273         * lib/regexec.c: Likewise.
38274         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
38275
38276         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
38277
38278         * lib/regexec.c (find_recover_state): Remove unnecessary
38279         initialization.
38280         (transit_state_bkref): Make DFA a const pointer.
38281         (get_subexp): Likewise.
38282         (check_arrival): Likewise.
38283         (update_cur_sifted_state): Likewise.
38284         (re_search_internal): Likewise.
38285         (prune_impossible_nodes): Likewise.
38286         (acquire_init_state_context): Likewise.
38287         (proceed_next_node): Likewise.
38288         (set_regs): Likewise.
38289         (free_fail_stack_return): Likewise.
38290         (check_arrival_expand_ecl): Mark DFA parameter as const.
38291         (check_arrival_expand_ecl_sub): Likewise.
38292         (check_subexp_limits): Likewise.
38293         (sub_epsilon_src_nodes):  Likewise.
38294         (add_epsilon_src_nodes):  Likewise.
38295         (merge_state_array): Likewise.
38296         (update_regs): Likewise.
38297         (build_trtable): Likewise.
38298         (sift_states_backward): Mark MCTX parameter as const.
38299         (build_sifted_states): Likewise.
38300         (update_cur_sifted_state): Likewise.
38301         (sift_states_mkref): Likewise.
38302         (check_arrival_expand_ecl): Mark eclosure as const.
38303         (check_dst_limits_calc_pos_1): Likewise.
38304         * lib/regex_internal.h (re_match_context_t): Make dfa a const
38305         pointer.
38306
38307         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
38308
38309         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
38310         (transit_state_sb): Likewise.
38311         (transit_state_mb): Likewise.
38312         (sift_states_iter_mb): Likewise.
38313         (check_arrival_add_next_nodes): Likewise.
38314         (check_node_accept_bytes): Change first parameter to pointer-to-const.
38315         [_LIBC] (re_search_2_stub): Use mempcpy.
38316
38317         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
38318         mbrtowc for very simple UTF-8 case.
38319
38320         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
38321         a pointer-to-const.
38322         (re_acquire_state_context): Likewise.
38323         * lib/regex_internal.h: Adjust prototypes.
38324
38325         * lib/regex.c: Prevent using C++ compilers.
38326
38327         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
38328         (re_acquire_state_context): Likewise.
38329
38330 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
38331
38332         * modules/regex (Depends-on): Add ssize_t.
38333
38334 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
38335
38336         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
38337         translation table.
38338
38339 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
38340
38341         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
38342
38343 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
38344             Bruno Haible  <bruno@clisp.org>
38345
38346         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
38347         <sys/types.h> and <inttypes.h>.
38348
38349 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38350
38351         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
38352         `__error_t_defined', so argp.h will not typedef the former.
38353
38354 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
38355
38356         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
38357         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
38358         glibc names.  Even if glibc is changed to conform to POSIX, the
38359         traditional names will be available anyway, since regex depends on
38360         the extensions module.  Also, fix a longstanding typo in the
38361         implementation of Spencer ERE test #75 from grep 2.3.  Problems
38362         reported by Emanuele Giaquinta.  Also, change sense of cached
38363         variable, so that the message makes sense.
38364
38365 2006-03-24  Simon Josefsson  <jas@extundo.com>
38366
38367         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
38368         including some doc fixes.
38369         (base64_encode_alloc): Fix +1 bug on allocation failures.
38370
38371 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38372
38373         * lib/base64.c (base64_encode): Do not read past end of array with
38374         unsanitized input on systems with CHAR_BIT > 8.
38375
38376 2006-03-24  Eric Blake  <ebb9@byu.net>
38377
38378         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
38379
38380 2006-03-22  Karl Berry  <karl@gnu.org>
38381
38382         * config/srclist.txt (*setenv.[ch]): get from coreutils.
38383         * config/srclistvars.sh (COREUTILS): new var.
38384
38385 2006-03-17  Jim Meyering  <jim@meyering.net>
38386
38387         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
38388         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
38389
38390 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
38391
38392         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
38393         no longer needs it.  Instead, check that regoff_t is as least
38394         as wide as ptrdiff_t.
38395
38396         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
38397         so that our regex.h stays compatible with the installed regex.
38398         This is helpful for installers who configure --without-included-regex.
38399         Problem reported by Emanuele Giaquinta.
38400
38401 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
38402
38403         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
38404         Typedef to long int, not to off_, as POSIX will likely change
38405         in that direction.
38406
38407 2006-03-15  Eric Blake  <ebb9@byu.net>
38408
38409         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
38410
38411 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
38412
38413         * lib/argp-help.c (validate_uparams): Fix typo
38414         * lib/argp-parse.c (argp_default_options): Consistently begin help
38415         messages with a lowercase letter.
38416
38417 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
38418
38419         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
38420         overrun buffers and shouldn't be used (much as gets shouldn't be
38421         used).
38422         * lib/time_r.c (asctime_r, ctime_r): Likewise.
38423
38424 2006-03-08  Simon Josefsson  <jas@extundo.com>
38425
38426         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
38427         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38428
38429 2006-03-08  Simon Josefsson  <jas@extundo.com>
38430
38431         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
38432         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38433
38434 2006-03-08  Simon Josefsson  <jas@extundo.com>
38435
38436         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
38437         signal that configure disabled the device.
38438
38439 2006-03-08  Simon Josefsson  <jas@extundo.com>
38440
38441         * build-aux/maint.mk: Fix refresh-po, to handle no translated
38442         languages.
38443
38444 2006-03-07  Simon Josefsson  <jas@extundo.com>
38445
38446         * modules/getopt (Depends-on): Add unistd.
38447
38448         * modules/unistd: New file.
38449
38450 2006-03-07  Simon Josefsson  <jas@extundo.com>
38451
38452         * modules/gc-random: New file.
38453
38454 2006-03-07  Simon Josefsson  <jas@extundo.com>
38455
38456         * m4/unistd_h.m4: New file.
38457
38458 2006-03-07  Simon Josefsson  <jas@extundo.com>
38459
38460         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
38461         test to be side-effect free by storing the result in the cache
38462         variable gl_cv_lib_readline, and moving the assignment of
38463         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
38464         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
38465
38466 2006-03-07  Simon Josefsson  <jas@extundo.com>
38467
38468         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
38469         error on missing devices (the functions will return an error).
38470
38471         * m4/gc.m4: Move random stuff to gc-random.m4
38472
38473 2006-03-07  Simon Josefsson  <jas@extundo.com>
38474
38475         * lib/unistd_.h: New file.
38476
38477 2006-03-07  Simon Josefsson  <jas@extundo.com>
38478
38479         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
38480
38481 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
38482
38483         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
38484         Problem reported by Juan Manuel Guerrero.
38485
38486 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
38487
38488         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
38489         the unistd module.
38490         * lib/getlogin_r.c: Likewise.
38491         * lib/getlogin_r.h: Likewise.
38492         * lib/glob.c: Likewise.
38493         * lib/pagealign_alloc.c: Likewise.
38494         * lib/unistd_.h: Remove; no longer needed.
38495
38496 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
38497
38498         * MODULES.html.sh (Support for systems lacking POSIX:2001):
38499         Add unistd.
38500         * modules/c-stack (Depends-on): Add unistd.
38501         * modules/getlogin_r: Likewise.
38502         * modules/glob: Likewise.
38503         * modules/pagealign_alloc: Likewise.
38504         * modules/unistd (Files): Remove lib/unistd_.h.
38505         (EXTRA_DIST): Remove.
38506         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
38507         need unistd_.h.
38508         (MOSTLYCLEANFILES): Remove unistd.h-t.
38509
38510 2006-03-03  Simon Josefsson  <jas@extundo.com>
38511
38512         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
38513
38514 2006-03-03  Simon Josefsson  <jas@extundo.com>
38515
38516         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
38517         libidn and bison.
38518
38519 2006-03-03  Simon Josefsson  <jas@extundo.com>
38520
38521         * build-aux/maint.mk: Add indent target.
38522
38523 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
38524
38525         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
38526         our replacement poll.h in any case, to avoid a differing
38527         declaration from a system header.  Seen on AIX.
38528
38529 2006-03-01  Simon Josefsson  <jas@extundo.com>
38530
38531         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
38532         <kasal@ucw.cz>.
38533
38534 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
38535
38536         * modules/gettime (Depends-on): Add extensions module.
38537         * modules/nanosleep (Depends-on): Likewise.
38538         * modules/settime (Depends-on): Likewise.
38539
38540 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
38541
38542         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
38543         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
38544         pedantically.
38545         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
38546         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
38547
38548         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
38549         not "==".  Reported by Ralf Wildenhues.
38550
38551 2006-03-01  Karl Berry  <karl@gnu.org>
38552
38553         * doc/Copyright/request-*: new files, synced from gnuorg.
38554
38555 2006-03-01  Karl Berry  <karl@gnu.org>
38556
38557         * config/srclist.txt (Copyright/*): new entries.
38558
38559 2006-02-28  Simon Josefsson  <jas@extundo.com>
38560
38561         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
38562
38563 2006-02-27  Simon Josefsson  <jas@extundo.com>
38564
38565         * lib/base64.h: Indent #define's.  From Jim Meyering
38566         <jim@meyering.net>.
38567
38568 2006-02-27  Jim Meyering  <jim@meyering.net>
38569
38570         Revert the change of 2006-02-24, so these files can continue
38571         to be sync'd from gettext.
38572         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
38573         of `config.h'.
38574
38575 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
38576
38577         * modules/intprops: New file.
38578         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
38579         Add intprops.
38580         * modules/getloadavg (Files): Remove lib/intprops.h.
38581         (Depends-on): Add intprops.
38582         * modules/human: Likewise.
38583         * modules/inttostr: Likewise.
38584         * modules/openat: Likewise.
38585         * modules/sig2str: Likewise.
38586         * modules/userspec: Likewise.
38587         * modules/utimecmp: Likewise.
38588         * modules/xnanosleep: Likewise.
38589         * modules/xstrtol: Likewise.
38590
38591 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
38592
38593         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
38594         * modules/lock-tests (TESTS): Use $(EXEEXT).
38595         * modules/tls-tests: Likewise.
38596         * modules/argp-tests: Likewise.
38597         (check_PROGRAMS): New var, replacing...
38598         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
38599
38600 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38601
38602         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
38603         `config.h'.
38604
38605 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
38606
38607         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
38608
38609 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38610
38611         Sync from coreutils.
38612         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
38613         gl_CHDIR_SAFER.
38614
38615 2006-02-22  Jim Meyering  <jim@meyering.net>
38616
38617         Sync from coreutils.
38618         * m4/chdir-safer.m4: New file.
38619
38620 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
38621
38622         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
38623         AT_FDCWD exceeds INT_MAX.
38624         * lib/openat.h (AT_FDCWD): Likewise.
38625
38626 2006-02-17  Eric Blake  <address@hidden>
38627
38628         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
38629
38630 2006-02-16  Simon Josefsson  <jas@extundo.com>
38631
38632         * modules/getaddrinfo (Depends-on): Add sys_socket.
38633
38634 2006-02-15  Simon Josefsson  <jas@extundo.com>
38635
38636         * build-aux/maint.mk: Add dsyntax-check rule.
38637
38638 2006-02-15  Eric Blake  <ebb9@byu.net>
38639
38640         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
38641         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
38642         'present but cannot compile' warnings on cygwin.
38643         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
38644         use ws2tcpip.h if sys/socket.h works.
38645         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
38646         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
38647
38648 2006-02-14  Simon Josefsson  <jas@extundo.com>
38649
38650         * modules/maintainer-makefile (Files): Rename.
38651
38652         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
38653         and (the local) Makefile.cfg to maint-cfg.mk.
38654
38655         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
38656         to the latter.
38657
38658         * modules/maintainer-makefile: New module.
38659
38660         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
38661         severaly stripped to make it possible to build it up from scratch
38662         with reliable tests.
38663
38664         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
38665         fixes to permit overriding the default actions when configure and
38666         makefile are not available.
38667
38668 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
38669
38670         Sync from coreutils.
38671         * modules/lstat (Depends-on): Don't depend on xalloc.
38672         (License): Change from GPL to LGPL, since this is now simply a
38673         replacement for a libc function.
38674
38675 2006-02-14  Jim Meyering  <jim@meyering.net>
38676
38677         Sync from coreutils.
38678
38679         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
38680         failure on deficient systems, and simplify gnulib lgpl dependencies.
38681         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
38682         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
38683
38684         * lib/xalloc-die.c: Remove unused definition of N_.
38685
38686 2006-02-14  Jim Meyering  <jim@meyering.net>
38687
38688         Sync from coreutils.
38689         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
38690         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
38691         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
38692         double-quote uses of that variable, to accommodate the rare case in
38693         which getmntent is available in none of the libraries checked.  This
38694         happens at least on FreeBSD 5.0.
38695
38696 2006-02-13  Simon Josefsson  <jas@extundo.com>
38697
38698         * gnulib-tool (Usage): Fix --import, from
38699         karl@freefriends.org (Karl Berry).
38700
38701 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
38702
38703         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
38704
38705 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
38706
38707         * lib/argp-namefrob.h: Restore changes accidentally lost during the
38708         "autoupdate" on 2005-12-12.
38709
38710 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
38711
38712         * modules/closeout (Depends-on): Remove atexit.
38713
38714 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
38715
38716         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
38717         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
38718
38719 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
38720
38721         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
38722         __EXTENSIONS__ if this causes compilation to fail.  Problem
38723         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
38724         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
38725
38726 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
38727
38728         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
38729         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
38730         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
38731         All uses changed.
38732
38733 2006-01-26  Simon Josefsson  <jas@extundo.com>
38734
38735         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
38736         prototype is visible on mingw32.
38737
38738         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
38739         for mingw32.
38740
38741         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
38742         mingw32).
38743
38744 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
38745
38746         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
38747         attempt to open for write; this always fails, at least on POSIX
38748         hosts.  This reinstates the 2006-01-09 change, which was
38749         inadvertently removed.
38750
38751 2006-01-26  Bruno Haible  <bruno@clisp.org>
38752
38753         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
38754         Reported by Paul Eggert.
38755
38756 2006-01-26  Bruno Haible  <bruno@clisp.org>
38757             Paul Eggert  <eggert@cs.ucla.edu>
38758
38759         * lib/stdbool_.h (_Bool)
38760         [(! (defined __cplusplus || defined __BEOS__)
38761           && !defined __GNUC__
38762           && !(defined __HP_cc || defined __xlc__
38763                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
38764                || defined __sgi))]:
38765         #define to signed char in these cases too; this simplifies
38766         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
38767         etc., separately) and makes it more conservative.
38768
38769 2006-01-25  Simon Josefsson  <jas@extundo.com>
38770
38771         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
38772         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
38773         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
38774
38775 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
38776
38777         * lib/argp-namefrob.h: Bugfix. Remove stray #
38778
38779 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
38780
38781         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
38782         so that we test the test.
38783         Check for yet another HP-UX cc bug involving *bool |= bool.
38784
38785 2006-01-25  Karl Berry  <karl@gnu.org>
38786
38787         * config/srclist.txt (vasnprintf.c): sync lost.
38788
38789 2006-01-25  Jim Meyering  <jim@meyering.net>
38790
38791         Sync from the stable (b5) branch of coreutils:
38792
38793         * lib/fts.c (fts_children): Don't let close() clobber errno from
38794         failed fchdir().
38795
38796         * lib/fts.c (fts_stat): When following a symlink-to-directory,
38797         don't necessarily interpret stat-fails+lstat-succeeds as indicating
38798         a dangling symlink.  That can also happen at least for ELOOP.
38799         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
38800         FYI, this bug predates the inclusion of fts.c in coreutils.
38801
38802         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
38803         in their own block, so pre-c99 compilers don't object.
38804
38805         Avoid the double-free (first in fts_read, second in fts_close) that
38806         would occur when an `active' directory is made inaccessible (e.g.,
38807         via chmod a-x) during a traversal.
38808         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
38809         before returning.  Reproduce this failure by
38810         mkdir -p a/b; cd a; chmod a-x . b
38811         Reported by Stavros Passas.
38812
38813 2006-01-25  Jim Meyering  <jim@meyering.net>
38814
38815         * lib/fileblocks.c: Remove more useless parentheses.
38816         * lib/readutmp.h: Likewise.
38817
38818 2006-01-25  Bruno Haible  <bruno@clisp.org>
38819
38820         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
38821         warnings.
38822         Reported by Paul Eggert.
38823
38824 2006-01-25  Bruno Haible  <bruno@clisp.org>
38825
38826         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
38827         rid of a trap command. For Solaris sh.
38828         Reported by Mark D. Baushke <mdb@gnu.org>.
38829
38830 2006-01-24  Simon Josefsson  <jas@extundo.com>
38831
38832         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
38833         Bruno.
38834
38835 2006-01-24  Karl Berry  <karl@gnu.org>
38836
38837         * config/srclist.txt (argp-namefrob.h): sync lost.
38838
38839 2006-01-24  Jim Meyering  <jim@meyering.net>
38840
38841         * modules/openat (Files): Add lib/intprops.h.
38842         From Mark D. Baushke.
38843
38844 2006-01-24  Jim Meyering  <jim@meyering.net>
38845
38846         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
38847         Reported by Mark D. Baushke.
38848
38849 2006-01-24  Jim Meyering  <jim@meyering.net>
38850
38851         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
38852
38853 2006-01-24  Bruno Haible  <bruno@clisp.org>
38854
38855         * modules/strnlen (Maintainer): Change from glibc to all.
38856
38857 2006-01-24  Bruno Haible  <bruno@clisp.org>
38858
38859         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
38860         Patch by Paul Eggert.
38861
38862 2006-01-24  Bruno Haible  <bruno@clisp.org>
38863
38864         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
38865         already has it.
38866         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
38867         2005-11-26.
38868
38869         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
38870         'signed char' to avoid problems with the built-in _Bool type.
38871         Reported by Paul Eggert on 2005-11-26.
38872
38873 2006-01-24  Bruno Haible  <bruno@clisp.org>
38874
38875         * gnulib-tool (func_import): Avoid constructing complicated sed
38876         expressions inside backquote.
38877         Report and solution by Mark D. Baushke <mdb@gnu.org>.
38878
38879 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
38880
38881         These changes imported from libc.
38882         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
38883         test and two separate function calls.
38884         * lib/strndup.c (__strndup): Add libc_hidden_def.
38885
38886 2006-01-23  Simon Josefsson  <jas@extundo.com>
38887
38888         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
38889         Remove the test_*_SOURCES variable: automake infers it by default.
38890         * modules/tls-tests: Likewise.
38891
38892 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
38893
38894         Work around porting bugs reported by Dieter in
38895         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
38896         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
38897         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
38898         Include "getopt.h" first, to check interface.
38899         (getenv): Declare only if defined HAVE_DECL_GETENV &&
38900         !HAVE_DECL_GETENV.
38901         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
38902         (__strndup): Revert to K&R-style function dfns, the glibc style.
38903         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
38904         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
38905         Include strnlen.h first, to get prototype properly.
38906         (strnlen): Renamed from __strnlen.
38907         Remove weak alias.
38908
38909 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
38910
38911         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
38912
38913 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
38914
38915         * config/srclist.txt: Adjust to reflect glibc reorganization.
38916         This affects only comments.
38917
38918 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
38919
38920          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
38921          Reported by Bruce Korb <bkorb@gnu.org>.
38922
38923 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
38924
38925         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
38926         to pacify gcc -Wswitch-default.
38927
38928 2006-01-22  Bruno Haible  <bruno@clisp.org>
38929
38930         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
38931         temporary buffer for sprintf, take into account the precision also
38932         for 'd', 'i', 'u', 'o', 'x', 'X'.
38933
38934 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
38935
38936         * modules/argp-tests: New module
38937         * tests/test-argp.c: New file
38938         * tests/test-argp-2.sh: New file
38939
38940 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
38941
38942         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
38943         (__argp_base_name): Removed
38944         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
38945         typo.
38946         (__argp_base_name): Provide macro definition or extern declaration
38947         depending on the configuration
38948
38949 2006-01-20  Simon Josefsson  <jas@extundo.com>
38950
38951         * modules/inet_ntop (Depends-on): Depend on sys_socket.
38952
38953 2006-01-20  Simon Josefsson  <jas@extundo.com>
38954
38955         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
38956
38957 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
38958
38959         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
38960         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
38961         Suggested by Bruno Haible.
38962
38963 2006-01-20  Karl Berry  <karl@gnu.org>
38964
38965         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
38966         until changes propagate, I guess.
38967
38968 2006-01-19  Simon Josefsson  <jas@extundo.com>
38969
38970         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
38971
38972 2006-01-19  Simon Josefsson  <jas@extundo.com>
38973
38974         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
38975
38976 2006-01-19  Simon Josefsson  <jas@extundo.com>
38977
38978         * gnulib-tool: Set check_PROGRAMS.
38979
38980         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
38981         modules/des-tests, modules/gc-arcfour-tests,
38982         modules/gc-arctwo-tests, modules/gc-des-tests,
38983         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
38984         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
38985         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
38986         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
38987         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
38988         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
38989         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
38990         test_*_SOURCES.
38991
38992 2006-01-18  Simon Josefsson  <jas@extundo.com>
38993
38994         * modules/socklen (Depends-on): Depend on sys_socket.
38995
38996 2006-01-18  Simon Josefsson  <jas@extundo.com>
38997
38998         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
38999         modules/des-tests, modules/gc-arcfour-tests,
39000         modules/gc-arctwo-tests, modules/gc-des-tests,
39001         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
39002         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
39003         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
39004         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
39005         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
39006         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
39007         $(EXEEXT) to automake TESTS variable, for mingw32.
39008
39009 2006-01-17  Simon Josefsson  <jas@extundo.com>
39010
39011         * modules/socklen (Include): Need sys/socket.h.
39012
39013 2006-01-17  Bruno Haible  <bruno@clisp.org>
39014
39015         * modules/ssize_t (Include): Add <sys/types.h>.
39016
39017 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
39018
39019         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
39020         it's not portable and it doesn't work with cross-compiles.
39021         Problem reported by Bruno Haible.  Fix missing-$ typo in
39022         'test "gl_cv_ignore_unused_libraries" ...' that prevented
39023         -zignore from being used with Sun's C compiler.
39024
39025 2006-01-12  Simon Josefsson  <jas@extundo.com>
39026
39027         * lib/base64.c: Fix warning, reported by Bruno Haible
39028         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
39029
39030 2006-01-12  Bruno Haible  <bruno@clisp.org>
39031
39032         * modules/ldd: New file.
39033         * build-aux/ldd.sh.in: New file.
39034         * MODULES.html.sh (Support for building libraries and executables): Add
39035         ldd.
39036
39037 2006-01-12  Bruno Haible  <bruno@clisp.org>
39038
39039         * m4/ldd.m4: New file.
39040
39041 2006-01-12  Bruno Haible  <bruno@clisp.org>
39042
39043         * gnulib-tool (func_import, func_create_testdir): Don't go into an
39044         endless loop while replacing $auxdir with build-aux.
39045
39046 2006-01-11  Simon Josefsson  <jas@extundo.com>
39047
39048         * lib/stdint_.h (SIZE_MAX): Add missing (.
39049
39050 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
39051
39052         Sync from coreutils.
39053         * lib/md5.c: Fix commentary typos.
39054         (alignof, UNALIGNED_P): No need for a GCC-specific version.
39055         * lib/md5.h (__attribute__): Remove; unused.
39056         * lib/sha1.c: Fix commentary to match md5 better.
39057         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
39058         so that we don't need to worry about alignment.  All uses changed.
39059         This merges the 2005-10-28 md5 change into sha1.
39060
39061 2006-01-11  Jim Meyering  <jim@meyering.net>
39062
39063         Sync from coreutils.
39064         * lib/md5.c (OP): Fix spacing.
39065
39066 2006-01-11  Bruno Haible  <bruno@clisp.org>
39067
39068         Ensure automatic ordering between gl_LOCK and gl_ARGP.
39069         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
39070         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
39071
39072 2006-01-11  Bruno Haible  <bruno@clisp.org>
39073
39074         Ensure automatic ordering between gl_LOCK and gl_ARGP.
39075         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
39076         the "early" section as well.
39077
39078 2006-01-11  Bruno Haible  <bruno@clisp.org>
39079
39080         Avoid "ar: no archive members specified" error on MacOS X.
39081         * gnulib-tool (func_modules_add_dummy): New function.
39082         (func_import, func_create_testdir): Invoke it.
39083
39084 2006-01-11  Bruno Haible  <bruno@clisp.org>
39085
39086         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
39087         with $auxdir in AC_CONFIG_FILES statements.
39088
39089 2006-01-11  Bruno Haible  <bruno@clisp.org>
39090
39091         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
39092         Initialize also noinst_HEADERS to empty.
39093
39094 2006-01-11  Bruno Haible  <bruno@clisp.org>
39095
39096         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
39097         variables.
39098         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
39099         autoreconf.
39100
39101 2006-01-11  Bruno Haible  <bruno@clisp.org>
39102
39103         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
39104         overridable by the user.
39105         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
39106
39107 2006-01-10  Simon Josefsson  <jas@extundo.com>
39108
39109         * modules/sys_socket: New file.
39110
39111 2006-01-10  Simon Josefsson  <jas@extundo.com>
39112
39113         * m4/sys_socket_h.m4: New file.
39114
39115 2006-01-10  Simon Josefsson  <jas@extundo.com>
39116
39117         * lib/socket_.h: New file.
39118
39119 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
39120
39121         * modules/readutmp (Maintainer): Add myself.
39122
39123 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
39124
39125         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
39126         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
39127         People who are still concerned with buggy memcmp implementations
39128         can invoke gl_FUNC_MEMCMP themselves.
39129
39130 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
39131
39132         * lib/regex_internal.h (BITSET_WORD_BITS):
39133         Work around a bug in 64-bit PGC (before version 6.1-2), where the
39134         preprocessor mishandles large unsigned values as if they were signed.
39135         Problem reported by Claudio Fontana in
39136         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
39137
39138 2006-01-10  Jim Meyering  <jim@meyering.net>
39139
39140         Avoid the double-free (first in fts_read, second in fts_close) that
39141         would occur when an `active' directory is made inaccessible (e.g.,
39142         via chmod a-x) during a traversal.
39143         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
39144         before returning.  Reproduce this failure by
39145         mkdir -p a/b; cd a; chmod a-x . b
39146         Reported by Stavros Passas.
39147
39148         Sync from coreutils.
39149         * lib/sha1.c: Tweak grammar in a comment.
39150
39151 2006-01-10  Jim Meyering  <jim@meyering.net>
39152
39153         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
39154         Patch by Joerg Sonnenberger.
39155
39156 2006-01-10  Bruno Haible  <bruno@clisp.org>
39157
39158         * modules/readutmp: Depend on module free.
39159         * modules/strtok_r: Depend on module restrict.
39160
39161 2006-01-10  Bruno Haible  <bruno@clisp.org>
39162
39163         * modules/gettext (configure.ac): Add an invocation of
39164         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
39165
39166 2006-01-10  Bruno Haible  <bruno@clisp.org>
39167
39168         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
39169         Reported by Werner Lemberg <wl@gnu.org>.
39170
39171 2006-01-10  Bruno Haible  <bruno@clisp.org>
39172
39173         * lib/localcharset.c: Update from GNU gettext.
39174
39175 2006-01-10  Bruno Haible  <bruno@clisp.org>
39176
39177         * lib/argp.h (__const): Remove macro. Use const instead.
39178         * lib/argp-fmtstream.h (__const): Likewise.
39179         * lib/glob_.h (__const): Remove macro.
39180         * lib/glob-libc.h: Use const instead of __const.
39181
39182 2006-01-10  Bruno Haible  <bruno@clisp.org>
39183
39184         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
39185         variable.
39186         Needed to avoid an automake error regarding the 'gettext' module.
39187
39188 2006-01-09  Simon Josefsson  <jas@extundo.com>
39189
39190         * modules/inet_ntop (Depends-on): Add restrict.
39191
39192 2006-01-09  Simon Josefsson  <jas@extundo.com>
39193
39194         * modules/gc-rijndael-tests (License): Put under LGPL.
39195
39196         * modules/gc-des-tests (License): Likewise.
39197
39198         * modules/gc-arcfour-tests (License): Likewise.
39199
39200         * modules/gc-arctwo-tests (License): Likewise.
39201
39202         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
39203
39204         * modules/gc-hmac-sha1-tests (Files): Likewise.
39205
39206         * modules/gc-hmac-md5-tests (License): Likewise.
39207
39208         * modules/gc-sha1-tests (License): Likewise.
39209
39210         * modules/gc-md5-tests (License): Likewise.
39211
39212         * modules/gc-md4-tests (License): Likewise.
39213
39214         * modules/gc-md2-tests (License): Likewise.
39215
39216         * modules/gc-tests (License): Likewise.
39217
39218         * modules/des-tests (License): Likewise.
39219
39220         * modules/md4-tests (License): Likewise.
39221
39222         * modules/md2-tests (License): Likewise.
39223
39224 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
39225
39226         Sync from coreutils:
39227
39228         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
39229         * modules/lib-ignore: New file.
39230         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
39231         chdir-safer.m4, lchmod.m4.
39232         * modules/openat: Add mkdirat.c, openat-priv.h.
39233
39234 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
39235
39236         Sync from coreutils.
39237         * m4/lib-ignore.m4: New file.
39238         * m4/lchmod.m4: New file.
39239
39240 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
39241
39242         Sync from coreutils.
39243         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
39244         for write access: POSIX says that must fail.
39245         * lib/fts.c (diropen): Likewise.
39246         * lib/save-cwd.c (save_cwd): Likewise.
39247         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
39248         well, for minor improvements on hosts that lack O_DIRECTORY.
39249         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
39250         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
39251         Fall back on chown if open failed with EACCES.
39252
39253         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
39254         Report an error at compile-time if only a 1-second nominal clock
39255         resolution is found.
39256
39257         * lib/lchmod.h: New file.
39258         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
39259         (make_dir_parents): Use lchown rather than chown, and
39260         lchmod rather than chmod.
39261
39262         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
39263         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
39264         "proc" reported by n0dalus.
39265
39266         * lib/mountlist.c: Include <limits.h>.
39267         (dev_from_mount_options)
39268         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
39269         New function.  It no longer assumes "dev=" has the System V meaning
39270         on Linux (since it doesn't).  It also parses "dev=" more carefully.
39271         (read_file_system_list)
39272         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
39273         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
39274         dev= in that case.
39275
39276         * lib/posixtm.h (PDS_PRE_2000): New macro.
39277         * lib/posixtm.c (year): Arg is now syntax_bits rather than
39278         allow_century.  All usages changed.  Reject dates outside the range
39279         1969-1999 if PDS_PRE_2000 is used.
39280
39281 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
39282
39283         Sync from coreutils.
39284         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
39285         (Time of day items): Mention the possibility of leap seconds.
39286         Problem reported by Dr. David Alan Gilbert.
39287
39288 2006-01-09  Jim Meyering  <jim@meyering.net>
39289
39290         Sync from coreutils.
39291
39292         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
39293
39294         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
39295
39296         * lib/modechange.c (mode_compile): Reject an invalid mode string
39297         that starts with an octal digit.  From Andreas Gruenbacher.
39298
39299         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
39300         and dup to open_safer and dup_safer, respectively.
39301         (openat_permissive): Fix typo in comment.
39302
39303         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
39304         "gettext.h"; either no longer needed or are guaranteed by openat.h.
39305         (_): Remove; no longer needed.
39306         (openat): Renamed from rpl_openat; no need for rpl_openat
39307         since openat.h renames openat for us.
39308         Replace most of the body with a call to openat_permissive,
39309         to avoid duplicate code.
39310         Port to (probably hypothetical) environments were mode_t is
39311         wider than int.
39312         (openat_permissive): Require mode arg, so that we can check
39313         types better.  Put it just after flags.  Change cwd failure
39314         indicator from pointer-to-bool to pointer-to-errno-value.
39315         All callers changed.
39316         Invoke openat_save_fail and/or openat_restore_fail if
39317         cwd_errno is null, so that openat can call us.
39318         (openat_permissive, fdopendir, fstatat, unlinkat):
39319         Simplify errno handling to avoid some duplicate code,
39320         as it's OK to set errno on success.
39321         * lib/openat.h: Revamp code so that function macros depend on
39322         __OPENAT_PREFIX only, not also on AT_FDCWD.
39323         (openat_ro): Remove.  Caller changed to use openat_permissive.
39324         (openat_permissive): Now a macro, if not a function.
39325         (openat_restore_fail, openat_save_fail): Now always functions,
39326         since mkdirat needs them even if __OPENAT_PREFIX is defined.
39327
39328         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
39329         and openat.c.
39330         * lib/mkdirat.c: Include openat-priv.h.
39331         Remove definitions of macros defined therein.
39332         * lib/openat.c: Likewise.
39333
39334         * lib/mkdirat.c (mkdirat): New file and function.
39335         * lib/openat.h (mkdirat): Declare.
39336
39337         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
39338
39339         * lib/openat.h (openat_permissive): Declare.
39340         (openat_ro): Define.
39341
39342         * lib/openat.c (EXPECTED_ERRNO): New macro.
39343         (openat_permissive): New function -- used in remove.c rewrite.
39344         (all functions): Set errno just before returning, only if there
39345         was an actual failure.
39346         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
39347
39348         Emulate openat-family functions using Linux's procfs, if possible.
39349         Idea and some code based on Ulrich Drepper's glibc changes.
39350
39351         * lib/openat.c: (BUILD_PROC_NAME): New macro.
39352         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
39353         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
39354         before falling back on save_cwd and restore_cwd.
39355         (fdopendir, fstatat, unlinkat): Likewise.
39356
39357         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
39358         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
39359
39360         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
39361         as second argument to va_arg.  Otherwise, some versions of gcc
39362         warn that `if this code is reached, the program will abort'.
39363
39364 2006-01-09  Jim Meyering  <jim@meyering.net>
39365
39366         Sync from coreutils.
39367         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
39368         Require openat-priv.h.
39369
39370 2006-01-09  Bruno Haible  <bruno@clisp.org>
39371
39372         * modules/strnlen (Include): Use strnlen.h.
39373
39374 2006-01-09  Bruno Haible  <bruno@clisp.org>
39375
39376         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
39377
39378 2006-01-09  Bruno Haible  <bruno@clisp.org>
39379
39380         * lib/sysexit_.h (EX_OK): New macro.
39381         Suggested by Martin Lambers <marlam@marlam.de>.
39382
39383 2006-01-09  Bruno Haible  <bruno@clisp.org>
39384
39385         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
39386         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
39387
39388 2006-01-09  Bruno Haible  <bruno@clisp.org>
39389
39390         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
39391         numbers.
39392
39393 2006-01-09  Bruno Haible  <bruno@clisp.org>
39394
39395         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
39396         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
39397         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
39398         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
39399
39400 2006-01-09  Bruno Haible  <bruno@clisp.org>
39401
39402         * build-aux/javacomp.sh.in: New file, moved from lib/.
39403         * modules/javacomp-script (Files): Update.
39404         (configure.ac): Add AC_CONFIG_FILES invocation.
39405         (EXTRA_DIST): Remove variable.
39406
39407         * build-aux/javaexec.sh.in: New file, moved from lib/.
39408         * modules/javaexec (Files): Update.
39409         (configure.ac): Add AC_CONFIG_FILES invocation.
39410         (EXTRA_DIST): Remove javaexec.sh.in.
39411
39412         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
39413         * modules/csharpcomp-script (Files): Update.
39414         (configure.ac): Add AC_CONFIG_FILES invocation.
39415         (EXTRA_DIST): Remove variable.
39416
39417         * build-aux/csharpexec.sh.in: New file, moved from lib/.
39418         * modules/csharpexec (Files): Update.
39419         (configure.ac): Add AC_CONFIG_FILES invocation.
39420         (EXTRA_DIST): Remove csharpexec.sh.in.
39421
39422 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
39423
39424         Sync from coreutils.
39425
39426         Add POSIX ACL support
39427         * lib/acl.h (copy_acl, set_acl): Add declarations.
39428         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
39429         systems other than Linux.
39430         (chmod_or_fchmod): New function: use fchmod when possible,
39431         and chmod otherwise.
39432         (file_has_acl): Add a POSIX ACL implementation, with a
39433         Linux-specific subcase.
39434         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
39435         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
39436         acls are unsupported.
39437         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
39438         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
39439         are unsupported.
39440
39441 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
39442
39443         Sync from coreutils.
39444         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
39445
39446 2006-01-07  Bruno Haible  <bruno@clisp.org>
39447
39448         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
39449         gl_EARLY.
39450
39451 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
39452
39453         * lib/strftime.c (tzname): Don't declare if it is already #defined.
39454         Problem reported for Mingw by Mark Junker.
39455
39456 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
39457
39458         * README: Gnulib normally doesn't generate a tarball.
39459
39460 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
39461
39462         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
39463         long int, not int, for nanosecond counts, so that people who are
39464         used to POSIX struct timespec won't be surprised.  Reported by Jim
39465         Meyering.
39466
39467 2005-12-28  Bruno Haible  <bruno@clisp.org>
39468
39469         * build-aux/config.rpath: Update from GNU gettext.
39470
39471 2005-12-16  Jim Meyering  <jim@meyering.net>
39472
39473         * modules/fprintftime: New module.
39474         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
39475
39476 2005-12-16  Jim Meyering  <jim@meyering.net>
39477
39478         * m4/fprintftime.m4: New file.
39479
39480 2005-12-16  Jim Meyering  <jim@meyering.net>
39481
39482         * lib/fprintftime.c, lib/fprintftime.h: New files.
39483
39484 2005-12-15  Simon Josefsson  <jas@extundo.com>
39485
39486         * modules/socklen (configure.ac): Fix M4 macro name, to align with
39487         new m4/socklen.m4.
39488
39489 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
39490
39491         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
39492         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
39493
39494 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
39495
39496         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
39497         * lib/argp-help.c (fill_in_uparams): Check if the constructed
39498         struct uparams is valid. Fall back to the default values if it is
39499         not.
39500
39501 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
39502
39503         * modules/argp (Files): Add argp-pin.c
39504         (Depends-on): dirname
39505         (lib_SOURCES): Add argp-pin.c
39506
39507 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
39508
39509         * m4/argp.m4:  Check if program_invocation_name and
39510         program_invocation_short_name are declared and define appropriate
39511         macros if they are not.
39512
39513 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
39514
39515         * lib/argp-help.c (__argp_base_name): New function
39516         (__argp_short_program_name): Rewrite using __argp_base_name
39517         * lib/argp-namefrob.h: Define program_invocation_name and
39518         program_invocation_short_name if requested
39519         (__argp_base_name): Add prototype
39520         * lib/argp-parse.c (argp_def): Use gettext wrappers
39521         (argp_default_parser): Use __argp_base_name
39522         * lib/argp-pin.c: New file. Defines program_invocation_name and
39523         program_invocation_short_name on systems that lack them.
39524
39525 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
39526
39527         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
39528         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
39529         porting problem reported by Georg Schwarz in
39530         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
39531
39532 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
39533
39534         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
39535         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
39536         porting problem reported by Georg Schwarz in
39537         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
39538
39539 2005-12-05  Bruno Haible  <bruno@clisp.org>
39540
39541         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
39542         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
39543         Reported by Mark Junker <mjscod@gmx.de>.
39544
39545 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
39546
39547         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
39548         Use implementation from Albert Chin, with some
39549         comments/corrections by Stepan Kasal and myself.
39550
39551 2005-12-02  Bruno Haible  <bruno@clisp.org>
39552
39553         * gnulib-tool (func_import): Accept GPLed build tool modules when
39554         --lgpl is given.
39555         * modules/csharpcomp-script: New file.
39556         * modules/csharpcomp: Depend on it.
39557         * modules/javacomp-script: New file.
39558         * modules/javacomp: Depend on it.
39559         Suggested by Simon Josefsson.
39560
39561 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
39562
39563         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
39564         statement, to work around an HP-UX 10.20 compiler bug reported by
39565         Peter O'Gorman.
39566
39567 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
39568
39569         * modules/savedir (Depends-on): Add openat.
39570
39571 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
39572
39573         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
39574         (uintmax_t) [defined uintmax_t]: Do not declare.
39575         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
39576         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
39577         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
39578         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
39579         sake of portability to weird hosts that C allows (though we don't
39580         know of any practical examples).
39581
39582         * lib/savedir.h (fdsavedir): New decl.
39583         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
39584         contains most of the former guts of savedir.
39585         (savedir): Use savedirstream.
39586         Include "openat.h".
39587
39588 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
39589
39590         * modules/obstack (Files): Add m4/ulonglong.m4.
39591         Problem reported by Davide Angelocola.
39592
39593 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
39594
39595         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
39596         coreutils no longer futzes with rounding modes.
39597
39598 2005-11-14  Jim Meyering  <jim@meyering.net>
39599
39600         * lib/mkstemp-safer.c: Include <config.h>, required for possible
39601         replacement of mkstemp.
39602
39603 2005-11-10  Simon Josefsson  <jas@extundo.com>
39604
39605         * lib/readline.c: Remove EOL.
39606
39607 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
39608
39609         * modules/gethrxtime (Depends-on): Add gettime.
39610
39611 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
39612
39613         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
39614         or gettimeofday; no longer needed.
39615
39616 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
39617
39618         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
39619         time business.
39620         (gethrxtime) [! (HAVE_NANOUPTIME
39621         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
39622         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
39623         our own approximation.
39624
39625 2005-11-08  Eric Blake  <ebb9@byu.net>
39626
39627         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
39628
39629 2005-11-08  Eric Blake  <ebb9@byu.net>
39630
39631         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
39632
39633 2005-11-04  Bruno Haible  <bruno@clisp.org>
39634
39635         * gnulib-tool: Implement --update mode.
39636
39637 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
39638
39639         Fix porting problem reported by Theodoros V. Kalamatianos.
39640         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
39641         Don't assume that futimes failing means we must fail.
39642
39643 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
39644
39645         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
39646         variables to suggest the intended function of the PATH_MAX check.
39647
39648 2005-10-30  Kean Johnston  <jkj@sco.com>
39649
39650         Trivial changes to support SCO systems.
39651         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
39652         as PATH_MAX.
39653         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
39654         where __ptr is null when no I/O is pending.
39655
39656 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
39657
39658         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
39659         leave errno alone.  Problem reported by Dmitry V. Levin.
39660
39661 2005-10-28  Simon Josefsson  <jas@extundo.com>
39662
39663         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
39664         Test more.
39665
39666         * tests/test-gc-md2.c, tests/test-md2.c: New files.
39667
39668         * modules/md2, modules/md2-tests: New files.
39669
39670 2005-10-28  Simon Josefsson  <jas@extundo.com>
39671
39672         * m4/inet_ntop.m4: More tests.
39673
39674         * m4/gc-md2.m4, md2.m4: New file.
39675
39676 2005-10-28  Simon Josefsson  <jas@extundo.com>
39677
39678         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
39679         "restrict" keywords, as per POSIX.  Protect the function
39680         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
39681         Don't use K&R prototypes.  Check the sprintf return values.
39682         Re-define EAFNOSUPPORT if not present.  Indent.
39683
39684         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
39685         suggested by Bruno Haible <bruno@clisp.org>.
39686
39687         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
39688
39689         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
39690
39691         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
39692         libgcrypt).
39693
39694         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
39695
39696         * lib/md2.h, lib/md2.c: New files.
39697
39698 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
39699
39700         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
39701         errno alone.  Problem reported by Frederic Jolliton.
39702
39703 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
39704
39705         * modules/verify (License): Change from GPL to LGPL.  This is a
39706         tiny module and there are apparently near-equivalents that are
39707         under the BSD license.
39708
39709 2005-10-24  Simon Josefsson  <jas@extundo.com>
39710
39711         * modules/sha1: Relicense to LGPL.
39712
39713 2005-10-24  Simon Josefsson  <jas@extundo.com>
39714
39715         * lib/md4.h: Shrink buffer size, now that we changed the type.
39716
39717 2005-10-23  Simon Josefsson  <jas@extundo.com>
39718
39719         * gnulib-tool (func_import): Fix --tests-base.
39720
39721 2005-10-22  Simon Josefsson  <jas@extundo.com>
39722
39723         * modules/arcfour (Depends-on): Need stdint.
39724
39725 2005-10-22  Simon Josefsson  <jas@extundo.com>
39726
39727         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
39728         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
39729
39730 2005-10-22  Simon Josefsson  <jas@extundo.com>
39731
39732         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
39733         suggested by Bruno Haible <bruno@clisp.org>.
39734
39735 2005-10-22  Simon Josefsson  <jas@extundo.com>
39736
39737         * lib/crc.h: Include stddef.h, for size_t.
39738
39739 2005-10-22  Simon Josefsson  <jas@extundo.com>
39740
39741         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
39742         arcfour_context struct (simplify test vector testing in GNU
39743         Shishi).
39744
39745 2005-10-21  Simon Josefsson  <jas@extundo.com>
39746
39747         * modules/des, modules/des-tests: New files.
39748
39749         * modules/gc-des, modules/gc-des-tests: New files.
39750
39751         * tests/test-des.c, tests/test-gc-des.c: New file.
39752
39753 2005-10-21  Simon Josefsson  <jas@extundo.com>
39754
39755         * modules/arctwo, modules/arctwo-tests: New files.
39756
39757         * tests/test-arctwo.c: New file.
39758
39759         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
39760
39761         * tests/test-gc-arctwo.c: New file.
39762
39763 2005-10-21  Simon Josefsson  <jas@extundo.com>
39764
39765         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
39766         Bruno Haible <bruno@clisp.org>.
39767
39768         * m4/gc-des.m4: New file.
39769
39770 2005-10-21  Simon Josefsson  <jas@extundo.com>
39771
39772         * m4/arctwo.m4: New file.
39773
39774         * m4/gc-arctwo.m4: New file.
39775
39776 2005-10-21  Simon Josefsson  <jas@extundo.com>
39777
39778         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
39779         block.
39780
39781 2005-10-21  Simon Josefsson  <jas@extundo.com>
39782
39783         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
39784         <bruno@clisp.org>.
39785
39786         * lib/hmac-sha1.c (hmac_sha1): Likewise.
39787
39788         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
39789         Bruno Haible <bruno@clisp.org>.
39790
39791         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
39792         <bruno@clisp.org>.
39793
39794 2005-10-21  Simon Josefsson  <jas@extundo.com>
39795
39796         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
39797
39798 2005-10-21  Simon Josefsson  <jas@extundo.com>
39799
39800         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
39801
39802 2005-10-21  Simon Josefsson  <jas@extundo.com>
39803
39804         * lib/des.h, lib/des.c: New files.
39805
39806         * lib/gc-gnulib.c: Support DES.c
39807
39808 2005-10-21  Simon Josefsson  <jas@extundo.com>
39809
39810         * lib/arctwo.h, lib/arctwo.c: New files.
39811
39812         * lib/gc-gnulib.c: Support ARCTWO.
39813
39814 2005-10-21  Simon Josefsson  <jas@extundo.com>
39815
39816         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
39817         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
39818
39819 2005-10-21  Simon Josefsson  <jas@extundo.com>
39820
39821         * gnulib-tool (func_import, func_create_testdir): Define automake
39822         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
39823         Makefile.am snippet),
39824         suggested by Bruno Haible <bruno@clisp.org>.
39825
39826         * modules/gc (Makefile.am): Use it.
39827
39828 2005-10-21  Bruno Haible  <bruno@clisp.org>
39829
39830         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
39831         patch.
39832
39833 2005-10-19  Simon Josefsson  <jas@extundo.com>
39834
39835         * tests/test-gc-rijndael.c: New file.
39836
39837         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
39838
39839 2005-10-19  Simon Josefsson  <jas@extundo.com>
39840
39841         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
39842         interface too.
39843
39844 2005-10-19  Simon Josefsson  <jas@extundo.com>
39845
39846         * tests/test-gc-arcfour.c: New file.
39847
39848         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
39849
39850 2005-10-19  Simon Josefsson  <jas@extundo.com>
39851
39852         * modules/gc-md4, modules/gc-md4-tests: New file.
39853
39854         * tests/test-gc-md4.c: New file.
39855
39856 2005-10-19  Simon Josefsson  <jas@extundo.com>
39857
39858         * m4/gc-md4.m4: New file.
39859
39860 2005-10-19  Simon Josefsson  <jas@extundo.com>
39861
39862         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
39863         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
39864         <kasal@ucw.cz>.
39865
39866 2005-10-19  Simon Josefsson  <jas@extundo.com>
39867
39868         * m4/gc-arcfour.m4: New file.
39869
39870         * m4/gc-rijndael.m4: New file.
39871
39872 2005-10-19  Simon Josefsson  <jas@extundo.com>
39873
39874         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
39875
39876 2005-10-19  Simon Josefsson  <jas@extundo.com>
39877
39878         * lib/gc-gnulib.c: Support ARCFOUR.
39879
39880 2005-10-19  Simon Josefsson  <jas@extundo.com>
39881
39882         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
39883         support.
39884
39885         * lib/gc.h: Add ECB enum type.
39886
39887         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
39888
39889 2005-10-18  Simon Josefsson  <jas@extundo.com>
39890
39891         * tests/test-md5.c: New file.
39892
39893         * modules/md5-tests: New file.
39894
39895 2005-10-18  Simon Josefsson  <jas@extundo.com>
39896
39897         * tests/test-md4.c: New file.
39898
39899         * modules/md4, modules/md4-tests: New files.
39900
39901 2005-10-18  Simon Josefsson  <jas@extundo.com>
39902
39903         * m4/md4.m4: New file.
39904
39905 2005-10-18  Simon Josefsson  <jas@extundo.com>
39906
39907         * lib/md4.h, lib/md4.c: New files, based on md5.?.
39908
39909 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
39910
39911         * gnulib-tool (func_create_testdir): Omit the second check whether
39912         BUILT_SOURCES in nonempty.
39913
39914 2005-10-17  Simon Josefsson  <jas@extundo.com>
39915
39916         * tests/test-rijndael.c: New file.
39917
39918 2005-10-17  Simon Josefsson  <jas@extundo.com>
39919
39920         * modules/sha1: Depend on stdint instead of md5.
39921
39922         * modules/md5: Depend on stdint, remove uint32_t.
39923
39924 2005-10-17  Simon Josefsson  <jas@extundo.com>
39925
39926         * modules/gc-sha1-tests: New file.
39927
39928         * tests/test-gc-sha1.c: New file.
39929
39930 2005-10-17  Simon Josefsson  <jas@extundo.com>
39931
39932         * m4/md5.m4: Remove call to uint32_t.m4.
39933
39934 2005-10-17  Simon Josefsson  <jas@extundo.com>
39935
39936         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
39937
39938         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
39939         md5.h.
39940
39941         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
39942
39943         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
39944
39945 2005-10-17  Simon Josefsson  <jas@extundo.com>
39946
39947         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
39948
39949 2005-10-17  Simon Josefsson  <jas@extundo.com>
39950
39951         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
39952
39953 2005-10-17  Simon Josefsson  <jas@extundo.com>
39954
39955         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
39956
39957         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
39958
39959 2005-10-17  Bruno Haible  <bruno@clisp.org>
39960
39961         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
39962         that it can also be used in a test.
39963
39964 2005-10-16  Bruno Haible  <bruno@clisp.org>
39965
39966         * gnulib-tool (func_emit_tests_Makefile_am): Also define
39967         TESTS_ENVIRONMENT, so that individual tests can augment it.
39968
39969         * gnulib-tool (func_create_testdir): Use an intermediate target for
39970         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
39971         macros, like $(ALLOCA_H), which cannot be passed through the command
39972         line.
39973
39974 2005-10-15  Simon Josefsson  <jas@extundo.com>
39975
39976         * modules/rijndael-tests: New file.
39977
39978         * modules/rijndael: New file.
39979
39980 2005-10-15  Simon Josefsson  <jas@extundo.com>
39981
39982         * m4/rijndael.m4: New file.
39983
39984 2005-10-15  Simon Josefsson  <jas@extundo.com>
39985
39986         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
39987
39988         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
39989
39990 2005-10-14  Simon Josefsson  <jas@extundo.com>
39991
39992         * tests/test-arcfour.c: New file.
39993
39994         * modules/arcfour, modules/arcfour-tests: New files.
39995
39996 2005-10-14  Simon Josefsson  <jas@extundo.com>
39997
39998         * m4/arcfour.m4: New file.
39999
40000 2005-10-14  Simon Josefsson  <jas@extundo.com>
40001
40002         * lib/arcfour.h, lib/arcfour.c: New files.
40003
40004 2005-10-14  Roland McGrath  <roland@redhat.com>
40005
40006         Import from libc.  [BZ #1331]
40007         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
40008         macro argument.
40009         Reported by Matej Vela <vela@debian.org>.
40010
40011 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
40012
40013         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
40014         include <wchar.h>; no longer needed.
40015
40016 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
40017
40018         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
40019
40020 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
40021         and  Ulrich Drepper  <drepper@redhat.com>
40022
40023         Import from libc.
40024         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
40025         instead of inline stream orientation test and two separate
40026         function calls.  Pay no attention to USE_IN_LIBIO.
40027
40028 2005-10-13  Simon Josefsson  <jas@extundo.com>
40029
40030         * modules/gc-hmac-md5-tests: New file.
40031
40032         * tests/test-gc-hmac-sha1.c: New file.
40033
40034         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
40035
40036         * modules/gc-hmac-md5-tests: New file.
40037
40038         * tests/test-gc-md5.c: New file.
40039
40040         * modules/gc-md5-tests: New file.
40041
40042 2005-10-13  Simon Josefsson  <jas@extundo.com>
40043
40044         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
40045         Move memory allocation outside of loop.
40046
40047 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
40048
40049         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
40050         intermediate directory is in a read-only file system.  Problem
40051         reported by Eric Blake.
40052
40053 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
40054
40055         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
40056
40057 2005-10-12  Simon Josefsson  <jas@extundo.com>
40058
40059         * tests/test-hmac-sha1.c: New file.
40060
40061         * modules/hmac-sha1-tests: New file.
40062
40063         * modules/hmac-sha1: New file.
40064
40065 2005-10-12  Simon Josefsson  <jas@extundo.com>
40066
40067         * modules/gc-sha1: New file.
40068
40069 2005-10-12  Simon Josefsson  <jas@extundo.com>
40070
40071         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
40072
40073         * tests/test-gc-pbkdf2-sha1.c: New file.
40074
40075 2005-10-12  Simon Josefsson  <jas@extundo.com>
40076
40077         * modules/gc-md5, modules/gc-hmac-md5: New files.
40078
40079         * modules/gc (Files): Remove md5, memxor and hmac files.
40080
40081 2005-10-12  Simon Josefsson  <jas@extundo.com>
40082
40083         * m4/gc-pbkdf2-sha1.m4: New file.
40084
40085         * m4/gc-hmac-sha1.m4: New file.
40086
40087         * m4/gc-sha1: New file.
40088
40089         * m4/hmac-sha1.m4: New file.
40090
40091 2005-10-12  Simon Josefsson  <jas@extundo.com>
40092
40093         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
40094
40095         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
40096
40097 2005-10-12  Simon Josefsson  <jas@extundo.com>
40098
40099         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
40100         suggested by Bruno Haible <bruno@clisp.org>.
40101
40102 2005-10-12  Simon Josefsson  <jas@extundo.com>
40103
40104         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
40105
40106 2005-10-12  Simon Josefsson  <jas@extundo.com>
40107
40108         * lib/gc-pbkdf2-sha1.c: New file.
40109
40110         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
40111
40112 2005-10-12  Simon Josefsson  <jas@extundo.com>
40113
40114         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
40115
40116         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
40117
40118 2005-10-12  Simon Josefsson  <jas@extundo.com>
40119
40120         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
40121         GC_USE_HMAC_MD5, respectively.
40122
40123         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
40124         (gc_md5): Fix typo.
40125
40126         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
40127
40128         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
40129
40130         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
40131
40132 2005-10-12  Bruno Haible  <bruno@clisp.org>
40133
40134         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
40135         Reported by Stepan Kasal <kasal@ucw.cz>.
40136
40137 2005-10-11  Simon Josefsson  <jas@extundo.com>
40138
40139         * tests/test-crc.c: New file.
40140
40141         * modules/crc, modules/crc-tests: New files.
40142
40143 2005-10-11  Simon Josefsson  <jas@extundo.com>
40144
40145         * m4/crc.m4: New file.
40146
40147 2005-10-11  Simon Josefsson  <jas@extundo.com>
40148
40149         * lib/gc.h: Add gc_hash and gc_hash_buffer.
40150
40151         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
40152
40153         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
40154
40155 2005-10-11  Simon Josefsson  <jas@extundo.com>
40156
40157         * lib/crc.h, lib/crc.c: New files.
40158
40159         * lib/gc.h (gc_hash_buffer): Add doc.
40160
40161 2005-10-11  Bruno Haible  <bruno@clisp.org>
40162
40163         * modules/c-strcasestr: New file.
40164         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
40165
40166 2005-10-11  Bruno Haible  <bruno@clisp.org>
40167
40168         * modules/c-strcase: New file.
40169         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
40170
40171 2005-10-11  Bruno Haible  <bruno@clisp.org>
40172
40173         * lib/strcasecmp.c: Include limits.h.
40174         (strcasecmp): Avoid integer overflow on exotic platforms.
40175         * lib/strncasecmp.c: Include limits.h.
40176         (strncasecmp): Avoid integer overflow on exotic platforms.
40177         Reported by Paul Eggert.
40178
40179 2005-10-11  Bruno Haible  <bruno@clisp.org>
40180
40181         * lib/c-strcasestr.h: New file, from GNU gettext.
40182         * lib/c-strcasestr.c: New file, from GNU gettext.
40183
40184 2005-10-11  Bruno Haible  <bruno@clisp.org>
40185
40186         * lib/c-strcase.h: New file, from GNU gettext.
40187         * lib/c-strcasecmp.c: New file, from GNU gettext.
40188         * lib/c-strncasecmp.c: New file, from GNU gettext.
40189
40190 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
40191
40192         * modules/mempcpy (License): GPL -> LGPL.
40193         * modules/strchrnul (License): Likewise.
40194         * modules/sysexits (License): Likewise.
40195
40196 2005-10-08  Simon Josefsson  <jas@extundo.com>
40197
40198         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
40199
40200 2005-10-07  Simon Josefsson  <jas@extundo.com>
40201
40202         * m4/memxor.m4: Remove gl_C_RESTRICT call.
40203
40204 2005-10-06  Simon Josefsson  <jas@extundo.com>
40205
40206         * tests/test-hmac-md5.c: New file.
40207
40208         * modules/hmac-md5-tests: New file.
40209
40210         * modules/hmac-md5: New file.
40211
40212 2005-10-06  Simon Josefsson  <jas@extundo.com>
40213
40214         * m4/hmac-md5.m4: New file.
40215
40216         * m4/memxor.m4: Require gl_C_RESTRICT.
40217
40218 2005-10-06  Simon Josefsson  <jas@extundo.com>
40219
40220         * lib/memxor.c (memxor): Avoid casts and warnings.
40221
40222 2005-10-06  Simon Josefsson  <jas@extundo.com>
40223
40224         * lib/hmac-md5.c: New file.
40225
40226         * lib/hmac.h: New file.
40227
40228 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
40229
40230         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
40231         promotes to int, not unsigned int, to catch the AIX 5.3
40232         compiler bug.
40233
40234 2005-10-05  Simon Josefsson  <jas@extundo.com>
40235
40236         * modules/memxor: New file.
40237
40238         * modules/iconv (Files): Move config.rpath to havelib, it is used
40239         there.
40240
40241         * modules/havelib (Files): Add config.rpath.
40242
40243 2005-10-05  Simon Josefsson  <jas@extundo.com>
40244
40245         * m4/memxor.m4: New file.
40246
40247 2005-10-05  Simon Josefsson  <jas@extundo.com>
40248
40249         * lib/memxor.c (memxor): Fix compiler error.
40250
40251         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
40252         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
40253
40254         * lib/memxor.h, lib/memxor.c: New files.
40255
40256         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
40257         we assume all systems have it, suggested by Jim Meyering
40258         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
40259         any systems lack sys/socket.h; mingw32 is known to lack it, but we
40260         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
40261         same reasons.
40262
40263 2005-10-05  Simon Josefsson  <jas@extundo.com>
40264
40265         * config/srclist.txt: Add glibc bug 1423 for md5.h.
40266
40267 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
40268
40269         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
40270         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
40271         needed, since the source code now assumes these .h files.
40272
40273 2005-10-05  Derek Price  <derek@ximbiot.com>
40274
40275         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
40276
40277 2005-10-05  Bruno Haible  <bruno@clisp.org>
40278
40279         * modules/stdint (License): Change to LGPL.
40280
40281 2005-10-04  Simon Josefsson  <jas@extundo.com>
40282
40283         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
40284         D. Baushke" <mdb@gnu.org>.
40285
40286 2005-10-04  Bruno Haible  <bruno@clisp.org>
40287
40288         * lib/verify.h (verify_true): Provide alternative definition for C++.
40289
40290 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
40291
40292         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
40293         (SSIZE_MAX): New macro, if not already defined.
40294         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
40295         than 2 GiB.
40296
40297 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
40298
40299         Sync from coreutils.
40300         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
40301         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
40302         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
40303         ULLONG_MAX doesn't work with 2.7.2.1.
40304
40305 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
40306
40307         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
40308         From Ben Pfaff.
40309
40310         * modules/exclude (Depends-on): Depend on verify.
40311         * modules/strtoimax (Depends-on): Likewise.
40312         * modules/utimecmp (Depends-on): Likewise.
40313
40314 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
40315
40316         * lib/exclude.c: Include verify.h.
40317         (verify): Remove.  All callers changed to use verify.h's version.
40318         * lib/strtoimax.c: Likewise.
40319         * lib/utimecmp.c: Likewis.e
40320
40321         Sync from coreutils.
40322         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
40323         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
40324         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
40325         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
40326         bother returning ENOSYS if settimeofday or stime fails; just let
40327         them return whatever errno they want to return.
40328         * lib/utimens.c: Include unistd.h, for dup2.
40329         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
40330         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
40331
40332 2005-10-02  Jim Meyering  <jim@meyering.net>
40333
40334         Sync from coreutils.
40335         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
40336         from glibc-2.2.5 that fails for read-only files.
40337
40338 2005-10-02  Jim Meyering  <jim@meyering.net>
40339
40340         Sync from coreutils.
40341         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
40342         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
40343         `#if HAVE_CONFIG_H'.
40344         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
40345         Remove AT_FDCWD test.
40346         Do not consume the fd unless successful.
40347         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
40348         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
40349         block, so that we don't even try to compile it if settimeofday is
40350         available.  This works around a compilation failure on OSF1 V5.1,
40351         due to stime requiring a `long int*' while tv_sec is `int'.
40352
40353 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
40354
40355         Sync from coreutils.
40356         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
40357         against `yes', rather than just testing for nonempty.
40358
40359 2005-10-01  Simon Josefsson  <jas@extundo.com>
40360
40361         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
40362         and Darwin.
40363
40364         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
40365         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
40366         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
40367         freeaddrinfo and gai_strerror are declared by the POSIX headers.
40368         Check if struct addrinfo is declared.
40369
40370 2005-10-01  Simon Josefsson  <jas@extundo.com>
40371
40372         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
40373         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
40374         AI_* and EAI_* definitions.  Protect function declarations.
40375
40376 2005-10-01  Jim Meyering  <jim@meyering.net>
40377
40378         Sync from coreutils.
40379
40380         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
40381         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
40382         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
40383         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
40384         in the inet and nsl libraries.  Required on Solaris 5.7.
40385
40386 2005-10-01  Jim Meyering  <jim@meyering.net>
40387
40388         Sync from coreutils.
40389         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
40390         in the inet and nsl libraries.  Required on Solaris 5.7.
40391
40392 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
40393
40394         * lib/getdelim.c (getdelim): Remove unused variables.
40395
40396 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
40397
40398         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
40399         so that the code works even with ancient cpp.  Portability problem
40400         with GCC 2.7.2.1 reported by Thomas M.Ott.
40401
40402 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
40403
40404         * modules/regex (Depends-on): Add strcase.
40405
40406         * modules/gethostname (Licence): Change from GPL to LGPL, since
40407         gethostname.c is a trivial implementation of a standard library
40408         function.
40409         * modules/poll (License): Change from GPL to LGPL, since it's
40410         derived from LGPL code.
40411
40412 2005-09-27  Jim Meyering  <jim@meyering.net>
40413
40414         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
40415         HAVE_CONFIG_H.
40416
40417         * lib/intprops.h (signed_type_or_expr__): Define.
40418         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
40419         for unsigned types.
40420
40421 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
40422
40423         * lib/verify.h (verify_expr): Remove, replacing with:
40424         (verify_true): New macro that returns true instead of void.
40425         (verify_type__): Remove.
40426         (verify): Use verify_true rather than verify_type__.
40427
40428 2005-09-26  Bruno Haible  <bruno@clisp.org>
40429
40430         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
40431         is necessary.
40432         (lib_SOURCES): Remove mbchar.c.
40433         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
40434         (Files): Add m4/mbrtowc.m4.
40435         * modules/mbiter: Likewise.
40436         * modules/mbuiter: Likewise.
40437
40438 2005-09-26  Bruno Haible  <bruno@clisp.org>
40439
40440         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
40441         compile mbchar.c if they are not both present.
40442         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
40443         * m4/mbiter.m4 (gl_MBITER): Likewise.
40444         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
40445         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
40446         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
40447
40448 2005-09-25  Jim Meyering  <jim@meyering.net>
40449
40450         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
40451         also uses socklen_t.
40452
40453 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
40454
40455         * lib/utimens.c (ENOSYS): Define if not already defined.
40456         (futimens): Support having a null PATH if the file descriptor
40457         is nonnegative.
40458
40459         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
40460         Remove.
40461         (__attribute): Define to empty unless GCC 3.1 or later.
40462         This works around a core dump on OpenBSD 3.4, which has GCC
40463         2.95.3, which dumps core when given __attribute__(()).  It also
40464         simplifies other tests, since we really don't want to bother with
40465         worrying about which ancient version of GCC supported what.
40466         Original problem reported by Yoann Vandoorselaere, with part of
40467         the fix suggested by Derek Price.
40468
40469 2005-09-24  Jim Meyering  <jim@meyering.net>
40470
40471         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
40472         so we can once again use a positive bitfield width of 1 -- now we
40473         don't have to explain why we were using a bitfield width of 2.
40474
40475 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
40476
40477         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
40478         and similarly for the other external symbols.  Problem reported
40479         by James Gallager.
40480
40481         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
40482         bug reported by Jim Meyering.
40483
40484         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
40485         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
40486         not needed, since socklen is a prerequisite module.
40487
40488 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
40489
40490         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
40491         Problem reported by Eric Blake.
40492         (getaddrinfo): Initialize se so that it's not garbage.
40493         Redo internal storage allocation so that it doesn't make unportable
40494         assumptions about alignment.
40495         Fix a memory leak.
40496
40497         * lib/utimens.c (futimens): Use futimesat if available.
40498         Prefer it to futimes since it doesn't have the futimes bug.
40499
40500         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
40501         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
40502         Instead, declare a function that returns a pointer to an array,
40503         and use verify_type__ to declare the size of the array.
40504         Problem and germ of a solution reported by Bruno Haible.
40505         (verify_type__): Use 2, not 1, for bitfield size, to avoid
40506         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
40507
40508 2005-09-23  Jim Meyering  <jim@meyering.net>
40509
40510         Sync from coreutils.
40511         Correct build failure (socklen_t not defined) on at least
40512         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
40513         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
40514
40515 2005-09-23  Jim Meyering  <jim@meyering.net>
40516
40517         * modules/getaddrinfo (Depends-on): Add socklen.
40518
40519 2005-09-23  Bruno Haible  <bruno@clisp.org>
40520
40521         * tests/test-verify.c: New file.
40522
40523 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
40524
40525         Sync from coreutils.
40526
40527         * modules/argmatch (Depends-on): Add verify.
40528         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
40529         unistd-safer.
40530         * modules/save-cwd (Depends-on): Likewise.
40531
40532         * modules/openat (Files): Add lib/openat-die.c.
40533         (Depends-on): Remove error, exitfail.
40534         Add dirname.
40535
40536         * modules/verify: New file.
40537         * MODULES.html.sh (Diagnostics <assert.h>): New section,
40538         with "verify" module.
40539
40540 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
40541
40542         Sync from coreutils.
40543
40544         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
40545         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
40546         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
40547         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
40548         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
40549         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
40550         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
40551         Don't bother checking for string.h, stdlib.h, unistd.h.
40552         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
40553         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
40554         module's job.
40555         * m4/jm-macros.m4 (gl_MACROS): Likewise.
40556         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
40557
40558         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
40559         (gl_GETDATE): Use it.
40560
40561         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
40562
40563 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
40564
40565         Sync from coreutils.
40566
40567         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
40568         stat-time.h.
40569         * lib/argmatch.h: Include verify.h
40570         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
40571         (ARGMATCH_ASSERT): Remove; unused.
40572         * lib/canonicalize.c: Assume STDC_HEADERS.
40573         * lib/exclude.c: Include "strcase.h".
40574         * lib/regex_internal.h [!defined _LIBC]: Likewise.
40575         * lib/getusershell.c: Include stdio--.h rather than stdio.h
40576         and stdio-safer.h.
40577         (getusershell): Call fopen, not fopen_safer.
40578         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
40579         Do not include unistd-safer.h.
40580         (save_cwd): Don't call fd_safer; no longer needed
40581         now that we include fcntl--.h.
40582
40583         * lib/getdate.y (relative_time): New type.
40584         (RELATIVE_TIME_0): New constant.
40585         (parser_control): Use relative_time instead of doing it ourselves.
40586         (%union): Add new relative_time rel member.
40587         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
40588         Now typeless.
40589         (relunit, relunit_snumber): Now of type rel.
40590         (zone, rel, relunit, get_date): Adjust to above changes.
40591
40592         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
40593         Do not include unistd-safer.h.
40594         (getloadavg): Don't call fd_safer; no longer needed
40595         now that we include fcntl--.h.
40596
40597         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
40598         (make_dir_parents): Treat ENOSYS like EEXIST.
40599
40600         Improve quality of diagnostics on restore_cwd failure.
40601         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
40602         (make_dir_parents): Last arg is now int * (for errno), not bool *.
40603         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
40604         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
40605         each time through the loop.  Do not diagnose restore_cwd failure;
40606         that is the caller's job (and perhaps the caller does not care).
40607
40608         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
40609         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
40610         If the file already exists but is not a directory, don't bother
40611         to try to make its parents.
40612         Close potential file descriptor leak if we can't chdir("/") (!).
40613         Don't always return true if chdir($PWD) fails; return true only
40614         if the requested action was done successfully (except for the
40615         chdir($PWD)).
40616         Don't log final directory unless we actually made it.
40617         Refactor to avoid duplicate code to fix up permissions.
40618         Don't attempt to fix up parent permissions if chdir($PWD) fails.
40619
40620         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
40621         to make it a bit faster and (I hope) clearer.
40622         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
40623         Fix bug in formats like %2N.
40624
40625         * lib/verify.h: New file.
40626
40627 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
40628
40629         Sync from coreutils.
40630         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
40631
40632 2005-09-22  Jim Meyering  <jim@meyering.net>
40633
40634         Sync from coreutils.
40635
40636         * m4/lstat.m4 (gl_FUNC_LSTAT):
40637         Use AC_LIBSOURCES to require lstat.c and lstat.h.
40638         Remove obsolete comment.
40639         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
40640         * m4/xstrtod.m4: Likewise.
40641
40642         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
40643
40644 2005-09-22  Jim Meyering  <jim@meyering.net>
40645
40646         Sync from coreutils.
40647
40648         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
40649
40650         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
40651         the .tm_year member, since otherwise gcc-4.0 would now warn about
40652         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
40653
40654         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
40655         order to avoid an unsuppressible warning from gcc on 64-bit systems.
40656
40657         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
40658         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
40659         when run in a time zone for which daylight savings time is in effect
40660         for the starting date.
40661
40662         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
40663         stop us from restricting permissions of just-created absolute-named
40664         directories.
40665         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
40666         to restore initial working directory.
40667         * lib/mkdir-p.c (make_dir_parents): New parameter:
40668         different_working_dir, to tell caller if/when we change the working
40669         directory and are unable to return to the initial one.
40670         * lib/mkdir-p.h (make_dir_parents): Update prototype.
40671         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
40672         `return false'.  This fixes a bug introduced on 2004-07-30.
40673
40674         * lib/openat.c (fdopendir): Be sure to close the supplied
40675         file descriptor before returning.  This makes our replacement
40676         implementation a little closer to Solaris's, where fdopendir
40677         ties the file descriptor to the returned DIR* pointer.
40678         * lib/openat.c (unlinkat): New function.
40679         * lib/openat.h (unlinkat): Add prototype.
40680         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
40681         (openat_restore_fail): Rename from openat_restore_die.
40682         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
40683
40684         Provide an alternative to exiting immediately upon save_cwd or
40685         restore_cwd failure.  Now, an application can arrange e.g.,
40686         to perform a longjump in that case.
40687         * lib/openat.c: Include dirname.h.
40688         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
40689         (rpl_openat, fdopendir, fstatat): Call openat_save_die
40690         and openat_restore_die rather than calling error directly.
40691         Don't include "error.h" or "exitfail.h"; they're no longer needed.
40692
40693         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
40694         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
40695         define.
40696
40697         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
40698         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
40699                             int utc, int nanoseconds);
40700         Background:
40701         date should not have to allocate a megabyte of virtual memory to
40702         handle a format argument like +%1048575T.  When implemented with
40703         strftime, it must allocate such a buffer, use strftime to fill it
40704         in, print it, then free it.
40705         With fprintftime, it simply prints everything and exits.
40706         With no need for memory allocation, that's one fewer way to fail.
40707         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
40708         optional field width, not before, so we accept %9:z, not %:9z.
40709         (my_strftime): Be sure to use L_('x') for literals.
40710
40711         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
40712         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
40713         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
40714         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
40715         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
40716         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
40717         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
40718         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
40719         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
40720         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
40721         * lib/xgethostname.c, lib/xreadlink.c:
40722         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
40723
40724         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
40725         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
40726         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
40727         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
40728         and don't include <sys/file.h>).
40729
40730 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
40731
40732         Sync from coreutils.
40733
40734         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
40735         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
40736         [!LDAV_DONE]: Avoid unused variable warning.
40737
40738 2005-09-21  Bruno Haible  <bruno@clisp.org>
40739
40740         * lib/unicodeio.h (unicode_to_mb): New declaration.
40741
40742 2005-09-20  Derek Price  <derek@ximbiot.com>
40743
40744         * lib/getaddrinfo.c: Don't include <netdb.h> included from
40745         getaddrinfo.h.
40746
40747 2005-09-20  Bruno Haible  <bruno@clisp.org>
40748
40749         * gnulib-tool: Remove trailing slashes from the values specified for
40750         --source-base, --m4-base, --tests-base, --aux-dir.
40751         Suggested by Simon Josefsson <jas@extundo.com>.
40752
40753 2005-09-20  Bruno Haible  <bruno@clisp.org>
40754
40755         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
40756         func_modules_to_filelist, func_import, func_create_testdir): Make all
40757         sorting results locale-independent, so that gnulib-cache.m4 doesn't
40758         change when gnulib-tool is invoked in a different locale.
40759
40760 2005-09-19  Simon Josefsson  <jas@extundo.com>
40761
40762         * m4/socklen.m4: Fix typo.
40763
40764 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40765
40766         Use a consistent style for including <config.h>.
40767         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
40768         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
40769         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
40770         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
40771         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
40772         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
40773         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
40774         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
40775         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
40776         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
40777         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
40778         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
40779         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
40780         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
40781         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
40782         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
40783         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
40784         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
40785         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
40786         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
40787         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
40788         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
40789         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
40790         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
40791         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
40792         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
40793         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
40794         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
40795         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
40796         lib/xstrtoumax.c, lib/yesno.c:
40797         Standardize inclusion of config.h.
40798         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
40799         lib/inttostr.h:  Removed inclusion of config.h from header files.
40800         * lib/inttostr.c:  Adjusted in-tree users.
40801         * lib/timespec.h: Remove superfluous warning to include config.h.
40802         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
40803         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
40804         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
40805         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
40806         config.h with HAVE_CONFIG_H.
40807
40808 2005-09-19  Jim Meyering  <jim@meyering.net>
40809
40810         * modules/pathmax (License): Change to LGPL.
40811
40812 2005-09-19  Derek Price  <derek@ximbiot.com>
40813
40814         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
40815
40816 2005-09-19  Bruno Haible  <bruno@clisp.org>
40817
40818         * gnulib-tool (import): Provide default for --tests-base.
40819
40820 2005-09-19  Bruno Haible  <bruno@clisp.org>
40821
40822         * doc/quote.texi: New file, extracted from gnulib.texi.
40823         * doc/ctime.texi: New file, extracted from gnulib.texi.
40824         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
40825         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
40826         * doc/gnulib.texi: Include them.
40827
40828 2005-09-18  Bruno Haible  <bruno@clisp.org>
40829
40830         Portability fix.
40831         * gnulib-tool (func_readlink): New function.
40832         (func_ln_if_changed): Use it.
40833
40834 2005-09-18  Bruno Haible  <bruno@clisp.org>
40835
40836         * gnulib-tool: Support --with-tests also with --import.
40837         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
40838         (func_import): Use variables $testsbase and $inctests. Emit a
40839         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
40840         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
40841         SUBDIRS += $testsdir.
40842         (func_create_testdir): Update.
40843
40844 2005-09-18  Bruno Haible  <bruno@clisp.org>
40845
40846         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
40847         instead of $dry_run.
40848         (func_cp_if_changed, func_mv_if_changed): Remove functions.
40849         (func_ln_if_changed): Don't handle dry-run here.
40850         (func_import): In dry-run mode, detect more precisely which actions
40851         would be performed, and don't use "...ing" verbs.
40852
40853 2005-09-18  Bruno Haible  <bruno@clisp.org>
40854
40855         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
40856         (func_import): Use join on two temporary files instead of three nested
40857         loops, in order to determine which files are new or old.
40858
40859 2005-09-18  Bruno Haible  <bruno@clisp.org>
40860
40861         * gnulib-tool (func_import): Comment out code that spits out the
40862         new files with --dry-run.
40863
40864 2005-09-18  Bruno Haible  <bruno@clisp.org>
40865
40866         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
40867
40868 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
40869
40870         * lib/stat-time.h: New file.
40871         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
40872         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
40873         in a different way.
40874         (timespec_cmp): New function.
40875         * lib/utimecmp.c: Include stat-time.h.
40876         (SYSCALL_RESOLUTION): Depend on whether various struct stat
40877         members exist, not on the obsolescent ST_MTIM_NSEC.
40878         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
40879
40880 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
40881
40882         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
40883
40884 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
40885
40886         * MODULES.html.sh (File system functions): Add stat-time.
40887         * modules/stat-time: New file.
40888         * modules/timespec (Files): Remove m4/st_mtim.m4; this
40889         is now done in a different way, by the stat-time module.
40890         * modules/utimecmp (Depends-on): Add stat-time.
40891
40892 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
40893
40894         * m4/st_mtim.m4: Remove.  Superseded by...
40895         * m4/stat-time.m4: New file.
40896         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
40897         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
40898
40899 2005-09-15  Derek Price  <derek@ximbiot.com>
40900
40901         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
40902
40903 2005-09-15  Derek Price  <derek@ximbiot.com>
40904
40905         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
40906         * lib/regex_internal.c: Ditto, using this...
40907         (__GNUC_PREREQ): ...new macro.
40908         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
40909         using...
40910         (__GNUC_PREREQ): ...this new macro.
40911
40912         * lib/strstr.h: Include string.h. Define strstr as a macro here.
40913
40914 2005-09-15  Derek Price  <derek@ximbiot.com>
40915             Paul Eggert  <eggert@cs.ucla.edu>
40916
40917         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
40918         changes, consolidating in...
40919         * lib/regex_internal.h: ...this file.
40920
40921 2005-09-13  Jim Meyering  <jim@meyering.net>
40922
40923         * lib/canon-host.c: Filter through gnu indent and reword comments
40924         slightly.
40925         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
40926
40927 2005-09-13  Derek Price  <derek@ximbiot.com>
40928
40929         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
40930         failure.
40931         Reported by Jim Meyering  <jim@meyering.net>.
40932
40933 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
40934
40935         * lib/base64.c: Typo.
40936         (base64_encode): Put b64str in initialized data section.
40937
40938 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
40939
40940         Merge glibc and coreutils changes into gnulib, plus a few
40941         extra fixes.
40942         * lib/md5.c: Use #error rather than a string.
40943         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
40944         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
40945         (__attribute__): Define to empty for non recent-GCC.
40946         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
40947         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
40948         Renamed from their non-__ counterparts, with new macros replacing
40949         them if not _LIBC.  Add __THROW attribute.
40950         (rol): Remove.
40951         (struct md5_ctx): Align buffer if using GCC.
40952         * lib/sha1.h (struct sha1_ctx): Likewise.
40953         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
40954         The old name was backwards.
40955         (NOTSWAP): Remove; not used.
40956         (rol): New macro, moved here from md5.h.
40957         (sha1_process_block): Remove a FIXME that doesn't make sense.
40958
40959 2005-09-12  Derek Price  <derek@ximbiot.com>
40960
40961         Return usable errors from canon-host.
40962         * lib/canon-host.h: New file.
40963         * lib/canon-host.c (canon_host): Wrap...
40964         (canon_host_r): ...this new function, which now relies exclusively on
40965         getaddrinfo.
40966         (ch_strerror): New function.
40967         (last_cherror): New global.
40968         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
40969         interface.
40970         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
40971         void *.
40972         (freeaddrinfo): Free ai->ai_canonname when set.
40973
40974 2005-09-12  Derek Price  <derek@ximbiot.com>
40975
40976         Make canon-host require getaddrinfo.
40977         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
40978         AC_LIBSOURCE canon-host.h.  Call...
40979         (gl_PREREQ_CANON_HOST): ...this new function, which requires
40980         gl_GETADDRINFO.
40981         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
40982
40983 2005-09-12  Derek Price  <derek@ximbiot.com>
40984
40985         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
40986         LGPL.
40987         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
40988
40989 2005-09-12  Derek Price  <derek@ximbiot.com>
40990
40991         * lib/gai_strerror.c: Include config.h when available.  Include
40992         getaddrinfo.h before other headers to test interface.
40993         Reported by Larry Jones <lawrence.jones@ugs.com>.
40994
40995 2005-09-12  Derek Price  <derek@ximbiot.com>
40996             Paul Eggert  <eggert@cs.ucla.edu>
40997
40998         * modules/glob (Files): Add glob-libc.h.
40999
41000 2005-09-12  Derek Price  <derek@ximbiot.com>
41001             Paul Eggert  <eggert@cs.ucla.edu>
41002
41003         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
41004         glob_.h, glob-libc.h.
41005         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
41006
41007 2005-09-12  Derek Price  <derek@ximbiot.com>
41008             Paul Eggert  <eggert@cs.ucla.edu>
41009
41010         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
41011         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
41012         protecting things that should be done only in gnulib contexts.
41013         * lib/glob_.h: New file, containing only the glob things needed for
41014         gnulib.
41015         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
41016         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
41017         (glob, globfree, glob_pattern_p): Now defined simply in terms of
41018         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
41019         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
41020         and to respect the namespace rules better.
41021
41022 2005-09-08  Simon Josefsson  <jas@extundo.com>
41023
41024         * modules/socklen: New file.
41025
41026 2005-09-08  Simon Josefsson  <jas@extundo.com>
41027
41028         * m4/socklen.m4: New file.
41029
41030 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
41031
41032         * modules/utimens (Files): Add m4/utimbuf.m4, since
41033         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
41034         Reported by Sergey Poznyakoff.
41035
41036 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
41037
41038         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
41039         definitions, since that's the preferred style in glibc.
41040         Fix a minor spacing issue, and update copyright notice to match
41041         glibc's.
41042
41043 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
41044
41045         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
41046
41047 2005-09-06  Simon Josefsson  <jas@extundo.com>
41048
41049         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
41050         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
41051
41052 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
41053
41054         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
41055         warning.
41056
41057 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
41058
41059         * config/srclist.txt: Add glibc bug 1302.
41060
41061 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
41062
41063         Change bitset word type from unsigned int to unsigned long int,
41064         as this has better performance on typical 64-bit hosts.
41065         Port bitset code to hosts with unusual word sizes.
41066         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
41067         (build_collating_symbol):
41068         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
41069         argument is a bitset.  This is merely a style issue, but it makes
41070         it clearer that an entire array is expected.
41071         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
41072         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
41073         Port to the case where bitset_word is not the same as unsigned int.
41074         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
41075         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
41076         Likewise.
41077         * lib/regexec.c (check_dst_limits_calc_pos_1,
41078         check_subexp_matching_top):
41079         (build_trtable, group_nodes_into_DFAstates):
41080         Likewise.
41081         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
41082         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
41083         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
41084         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
41085         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
41086         * lib/regcomp.c (optimize_subexps, lower_subexp):
41087         Work even if bitset_word has holes in its bitwise representation.
41088         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
41089         * lib/regexec.c (check_dst_limits_calc_pos_1,
41090         check_subexp_matching_top):
41091         Likewise.
41092         * lib/regex_internal.c (re_string_reconstruct):
41093         Don't assume UCHAR_MAX == 255.
41094         * lib/regex_internal.h (bitset_set_all): Likewise.
41095         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
41096         All uses changed.
41097         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
41098         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
41099         All uses changed.
41100         (BITSET_WORD_MAX): New macro.
41101         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
41102         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
41103         (bitset_empty, bitset_copy):
41104         Prefer sizeof (bitset) to multiplying it out ourselves.
41105         (bitset_not_merge): Remove; unused.
41106         (bitset_contain): Return bool, not unsigned int with one bit on.
41107         All callers changed.
41108         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
41109         alignment than re_node_set; do this by defining a new internal
41110         type struct dests_alloc and using it to allocate memory.
41111
41112 2005-09-05  Bruno Haible  <bruno@clisp.org>
41113
41114         * gnulib-tool (func_import): Fix comparison in handling of symbolic
41115         links.
41116
41117 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
41118
41119         * modules/size_max (Makefile.am): Add size_max.h
41120
41121 2005-09-04  Derek Price  <derek@ximbiot.com>
41122
41123         * gnulib-tool (func_import): Fix reversed $symbolic logic.
41124
41125 2005-09-03  Simon Josefsson  <jas@extundo.com>
41126
41127         * gnulib-tool: Fix typo.
41128
41129 2005-09-03  Simon Josefsson  <jas@extundo.com>
41130
41131         * config/srclist.txt: Add glibc bug 1293.
41132
41133 2005-09-03  Derek Price  <derek@ximbiot.com>
41134
41135         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
41136         From Larry Jones <lawrence.jones@ugs.com>.
41137
41138 2005-09-02  Simon Josefsson  <jas@extundo.com>
41139
41140         * modules/socklen: New file.
41141
41142 2005-09-02  Simon Josefsson  <jas@extundo.com>
41143
41144         * modules/havelib: New module.
41145
41146         * modules/gettext, modules/iconv, modules/lock, modules/readline:
41147         Use havelib.
41148
41149 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
41150
41151         Check for arithmetic overflow when calculating sizes, to prevent
41152         some buffer-overflow issues.  These patches are conservative, in the
41153         sense that when I couldn't determine whether an overflow was possible,
41154         I inserted a run-time check.
41155         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
41156         macros.
41157         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
41158         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
41159         (re_xnrealloc, re_x2nrealloc): New inline functions.
41160         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
41161         parse_bracket_exp):
41162         (build_equiv_class, build_charclass): Check for arithmetic overflow
41163         in size expression calculations.
41164         * lib/regex_internal.c (re_string_realloc_buffers):
41165         (build_wcs_upper_buffer, re_node_set_add_intersect):
41166         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
41167         (re_dfa_add_node, register_state): Likewise.
41168         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
41169         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
41170         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
41171         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
41172
41173 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
41174
41175         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
41176         m4/ulonglong.m4.  Problem reported by Martin Lambers.
41177
41178 2005-09-02  Bruno Haible  <bruno@clisp.org>
41179
41180         Support for lib vs. lib64 distinction on biarch platforms.
41181         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
41182         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
41183         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
41184
41185 2005-09-02  Bruno Haible  <bruno@clisp.org>
41186
41187         * gnulib-tool (import): In the other first-use case, provide defaults
41188         as well.
41189
41190 2005-09-02  Bruno Haible  <bruno@clisp.org>
41191
41192         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
41193         patches not yet found in the latest gettext release.
41194
41195 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
41196
41197         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
41198         to avoid a collision with bits/local_lim.h in glibc.
41199         All uses changed.  Problem reported by Dmitry V. Levin in
41200         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
41201
41202         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
41203         bugs in int versus size_t comparisons.
41204         (re_string_context_at): Fix bug where the code assumed that
41205         Idx is signed.
41206
41207         Use bool where appropriate.
41208         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
41209         All callers changed.
41210         (calc_eclosure_iter): Likewise, for ROOT arg.
41211         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
41212         (build_charclass_op): Likewise, for NON_MATCH arg.
41213         * lib/regex_internal.c (re_string_allocate, re_string_construct):
41214         (re_string_construct_common): Likewise, for ICASE arg.
41215         * lib/regexec.c (re_search_2_stub, re_search_stub):
41216         Likewise, for RET_LEN arg.
41217         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
41218         (set_regs): Likewise, for FL_BACKTRACK arg.
41219         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
41220         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
41221         (calc_eclosure_iter, parse_bracket_exp):
41222         Use bool for internal variables that are booleans.
41223         * lib/regexec.c (re_search_internal, check_matching,
41224         proceed_next_node):
41225         (set_regs, build_sifted_states, sift_states_bkref):
41226         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
41227         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
41228         (find_collation_sequence_value):
41229         Likewise.
41230         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
41231         (re_node_set_compare):
41232         Return bool, not int. All callers changed.
41233         * lib/regexec.c (check_halt_node_context, check_dst_limits):
41234         (build_trtable, check_node_accept): Likewise.
41235         * lib/regex_internal.h: Include stdbool.h.
41236
41237         Fix bugs uncovered when converting to bool.
41238         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
41239         failure instead of charging ahead blindly.
41240         * lib/regex_internal.c (register_state): Likewise.
41241         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
41242         for freeing internal storage.
41243         (group_nodes_into_DFA_states): Use unsigned int, not int, for
41244         bitset pieces used as boolean, to avoid undefined behavior
41245         on hosts that do int overflow checking.
41246
41247 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
41248
41249         * config/srclist.txt: Add glibc bugs 1285-1287.
41250
41251 2005-09-01  Jim Meyering  <jim@meyering.net>
41252
41253         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
41254         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
41255         Require gl_STAT_MACROS, too.
41256
41257 2005-09-01  Bruno Haible  <bruno@clisp.org>
41258
41259         * gnulib-tool (import): In the first-use case, provide defaults.
41260
41261 2005-09-01  Bruno Haible  <bruno@clisp.org>
41262
41263         * gnulib-tool (func_import): Remove the .tmp files.
41264
41265 2005-09-01  Bruno Haible  <bruno@clisp.org>
41266
41267         * gnulib-tool (func_import): Fix handling of symbolic links.
41268
41269 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
41270
41271         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
41272         old glibc regex code mishandles strings longer than 2**31 bytes.
41273         This patch fixes this when the regex code is used in gnulib
41274         (i.e., outside glibc).
41275
41276         This patch should not affect the use of the regex code inside
41277         glibc.  No doubt this problem also needs to be handled for glibc
41278         as well, but the result will be an incompatible change to the
41279         glibc ABI, and the old ABI will have to be supported too.  That
41280         can be the the subject for another patch.
41281
41282         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
41283         governing whether the rest of this patch is active.  By default,
41284         the macro is disabled and the patch has no effect.
41285         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
41286         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
41287         (struct re_pattern_buffer, re_search, re_search_2, re_match):
41288         (re_match_2, re_set_registers): Use the new types.
41289         * lib/regex_internal.h (Idx, re_hashval_t): New types.
41290         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
41291         New macros.
41292         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
41293         (re_string_context_at, bin_tree_t, re_dfastate_t):
41294         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
41295         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
41296         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
41297         (re_string_char_size_at, re_string_wchar_at):
41298         (re_string_elem_size_at):
41299         Use the new types and macros to port to 64-bit hosts.
41300         Use unsigned types for internal values, so that the code
41301         mostly works even for arrays larger than SSIZE_MAX.
41302         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
41303         (search_duplicated_node, calc_eclosure_iter, fetch_number):
41304         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
41305         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
41306         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
41307         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
41308         (calc_inveclosure, parse_dup_op, build_range_exp):
41309         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
41310         (fetch_number, create_token_tree, mark_opt_subexp):
41311         Likewise.
41312         * lib/regex_internal.c (re_string_construct_common,
41313         create_ci_newstate):
41314         (create_cd_newstate, re_string_allocate, re_string_construct):
41315         (re_string_realloc_buffers, build_wcs_upper_buffer):
41316         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
41317         (re_string_reconstruct, re_string_peek_byte_case):
41318         (re_string_fetch_byte_case, re_string_context_at):
41319         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
41320         (re_node_set_init_copy, re_node_set_add_intersect):
41321         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
41322         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
41323         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
41324         (re_acquire_state, re_acquire_state_context, register_state):
41325         Likewise.
41326         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
41327         search_cur_bkref_entry):
41328         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
41329         (re_search_internal, re_search_2_stub, re_search_stub)
41330         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
41331         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
41332         (update_cur_sifted_state, check_dst_limits):
41333         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
41334         (check_subexp_limits, sift_states_bkref, merge_state_array):
41335         (check_subexp_matching_top, get_subexp, get_subexp_sub):
41336         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
41337         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
41338         (expand_bkref_cache, check_node_accept_bytes):
41339         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
41340         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
41341         (acquire_init_state_context, check_halt_node_context):
41342         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
41343         (sift_states_backward, clean_state_log_if_needed):
41344         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
41345         (find_recover_state, transit_state_sb, transit_state_mb):
41346         (transit_state_bkref, build_trtable, match_ctx_clean):
41347         Likewise.
41348         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
41349         to work around an assumption that REG_MISSING is negative.
41350
41351         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
41352         (seek_collating_symbol_entry) [defined _LIBC]:
41353         (lookup_collation_sequence_value) [defined _LIBC]:
41354         (build_range_exp, build_collating_symbol) [defined _LIBC]:
41355         Use prototypes rather than old-style function definitions.
41356         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
41357         (transit_state_sb) [0]:
41358         (find_collation_sequence_value) [defined _LIBC]: Likewise.
41359
41360         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
41361         rm_eo.
41362
41363         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
41364         (optimize_subexps, lower_subexp):
41365         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
41366         since the signed shift might overflow.  Use 1u<<31 instead.
41367         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
41368         Likewise.
41369         * lib/regexec.c (check_dst_limits_calc_pos_1,
41370         check_subexp_matching_top): Likewise.
41371
41372         * lib/regcomp.c (optimize_subexps, lower_subexp):
41373         Use CHAR_BIT rather than 8, for clarity.
41374         * lib/regexec.c (check_dst_limits_calc_pos_1):
41375         (check_subexp_matching_top): Likewise.
41376         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
41377         have to worry about portability issues when shifting it left.
41378         Remove no-longer-needed test for table_size > 0.
41379         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
41380         in a word, as the resulting behavior is undefined.
41381         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
41382         in one case, a <= should have been an <, and in another case the
41383         whole test was missing.
41384         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
41385         the standard name CHAR_BIT.
41386         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
41387         this is not true on one's complement and signed-magnitude hosts.
41388
41389         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
41390         next_last_offset.
41391         (struct re_dfa_t): Remove unused member states_alloc.
41392         * lib/regcomp.c (init_dfa): Don't initialize unused members.
41393
41394 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
41395
41396         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
41397         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
41398         and large-file glibc and in 32-bit large-file Solaris.
41399
41400 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
41401
41402         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
41403         lengths fit in regoff_t; this isn't true if regoff_t is the same
41404         width as size_t.
41405         * lib/regex.c (re_search_internal): 5th arg is LAST_START
41406         (= START + RANGE) instead of RANGE.  This avoids overflow
41407         problems when regoff_t is the same width as size_t.
41408         All callers changed.
41409         (re_search_2_stub): Check for overflow when adding the
41410         sizes of the two strings.
41411         (re_search_stub): Check for overflow when adding START
41412         to RANGE; if it occurs, substitute the extreme value.
41413
41414 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
41415
41416         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
41417
41418 2005-08-31  Jim Meyering  <jim@meyering.net>
41419
41420         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
41421         a pointer-to-const.
41422         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
41423         (register_state): Likewise.
41424         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
41425         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
41426         (group_nodes_into_DFAstates): Likewise.
41427
41428 2005-08-31  Jim Meyering  <jim@meyering.net>
41429
41430         * check-module: Add a FIXME comment.
41431
41432 2005-08-31  Eric Blake  <ebb9@byu.net>
41433
41434         * modules/unistd-safer (Files): Add unistd--.h.
41435         * modules/stdio-safer (Files): Add stdio--.h.
41436
41437 2005-08-31  Derek Price  <derek@ximbiot.com>
41438
41439         * lib/getdelim.c (getdelim): Return EOF on EOF.
41440         Reported by Larry Jones <lawrence.jones@ugs.com>.
41441
41442 2005-08-31  Bruno Haible  <bruno@clisp.org>
41443
41444         Avoid unnecessary diffs in the generated lib/Makefile.am.
41445         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
41446         the generated files.
41447         (func_import): Don't set cmd.
41448
41449 2005-08-31  Bruno Haible  <bruno@clisp.org>
41450
41451         * lib/strstr.c: Include <stddef.h>, for NULL.
41452         * lib/strcasestr.c: Likewise.
41453         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
41454
41455 2005-08-31  Bruno Haible  <bruno@clisp.org>
41456
41457         * gnulib-tool: New option --macro-prefix.
41458         (func_import): Use macro_prefix.
41459         (import): Handle option --macro-prefix.
41460
41461 2005-08-31  Bruno Haible  <bruno@clisp.org>
41462
41463         * gnulib-tool (import): Rename most ac_* variables to cached_*.
41464         Also use new variables cached_lgpl, cached_libtool.
41465
41466 2005-08-31  Bruno Haible  <bruno@clisp.org>
41467
41468         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
41469         always instantiating them.
41470
41471 2005-08-31  Bruno Haible  <bruno@clisp.org>
41472
41473         * gnulib-tool (func_import): Read the previous cached settings
41474         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
41475         earlier added by gnulib but are now dropped. Warn when a gnulib file
41476         overwrites a non-gnulib file.
41477
41478 2005-08-31  Bruno Haible  <bruno@clisp.org>
41479
41480         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
41481         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
41482         projects that don't keep autogenerated files in CVS. Put into
41483         actioncmd only the specified modules, not the transitive closure.
41484
41485 2005-08-31  Bruno Haible  <bruno@clisp.org>
41486
41487         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
41488         Create directories that shall be filled.
41489         (import): Don't look for gl_* macros in configure.ac. Recurse across
41490         all directories containing a gnulib-cache.m4 files, if meaningful.
41491
41492 2005-08-31  Bruno Haible  <bruno@clisp.org>
41493
41494         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
41495         (import): Set seen_libtool when we see gl_LIBTOOL.
41496
41497 2005-08-31  Bruno Haible  <bruno@clisp.org>
41498
41499         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
41500         declaration macro definitions from generated gnulib.m4.
41501
41502 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
41503
41504         * lib/iconvme.h: Add prototype for iconv_alloc.
41505
41506 2005-08-29  Simon Josefsson  <jas@extundo.com>
41507
41508         * lib/iconvme.c: Fix errno.
41509
41510 2005-08-29  Bruno Haible  <bruno@clisp.org>
41511
41512         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
41513         that it works when the directory contains spaces.
41514
41515 2005-08-29  Bruno Haible  <bruno@clisp.org>
41516
41517         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
41518
41519 2005-08-29  Bruno Haible  <bruno@clisp.org>
41520
41521         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
41522         Emit more advice.
41523
41524 2005-08-29  Bruno Haible  <bruno@clisp.org>
41525         and Stepan Kasal  <kasal@ucw.cz>
41526
41527         * check-module: If more parameters are given, check each of them
41528         separately; add more exceptions, as noted by Jim Meyering.
41529         (check_module): New procedure.
41530         (%exempt_header): Now contains all exceptions.
41531
41532 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
41533
41534         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
41535
41536 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
41537
41538         * lib/iconvme.c: Split iconv_string into iconv_alloc.
41539
41540 2005-08-28  Bruno Haible  <bruno@clisp.org>
41541
41542         * m4/gnulib-tool.m4: New file.
41543
41544 2005-08-27  Jim Meyering  <jim@meyering.net>
41545
41546         * modules/unistd-safer (Files): Add pipe-safer.c.
41547         * modules/fcntl-safer (Files): Add creat-safer.c.
41548
41549 2005-08-27  Jim Meyering  <jim@meyering.net>
41550
41551         * m4/stdlib-safer.m4: New file.  From coreutils.
41552         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
41553         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
41554         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
41555         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
41556         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
41557
41558 2005-08-27  Jim Meyering  <jim@meyering.net>
41559
41560         * lib/fopen-safer.c: Merge minor changes from coreutils.
41561         * lib/dup-safer.c: Likewise.
41562         * lib/fd-safer.c: Likewise.
41563
41564         Merge from coreutils.
41565         * lib/stdio--.h: New file.
41566         * lib/stdlib--.h: New file.
41567         * lib/mkstemp-safer.c: New file.
41568
41569         GNU tar needs these.
41570         * lib/pipe-safer.c: New file.
41571         * lib/creat-safer.c: New file.
41572         * lib/fcntl--.h (creat): Define to creat_safer.
41573         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
41574         * lib/unistd--.h (pipe): Define to pipe_safer.
41575         * lib/unistd-safer.h: Declare pipe_safer.
41576
41577 2005-08-26  Simon Josefsson  <jas@extundo.com>
41578
41579         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
41580         Haible <bruno@clisp.org>.
41581
41582 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
41583
41584         * lib/regex_internal.h: Remove all references to
41585         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
41586         or better.
41587         (bitset_not, bitset_merge, bitset_not_merge):
41588         (bitset_mask, re_string_allocate, re_string_construct):
41589         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
41590         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
41591         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
41592         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
41593         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
41594         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
41595         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
41596         (re_acquire_state_context):
41597         Remove unnecessary forward decls.
41598         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
41599         Put __attribute at function definition,
41600         now that the function decl has been removed.
41601         * lib/regex_internal.c (re_string_peek_byte_case):
41602         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
41603         Likewise.
41604
41605 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
41606
41607         * m4/regex.m4: Add AC_PREREQ(2.50).
41608         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
41609
41610 2005-08-25  Simon Josefsson  <jas@extundo.com>
41611
41612         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
41613         __fsetlocking.
41614
41615 2005-08-25  Simon Josefsson  <jas@extundo.com>
41616
41617         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
41618         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
41619         GLIBC specific code.
41620
41621 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
41622
41623         Make regex safe for g++.  This fixes one real bug (an "err"
41624         that should have been "*err").  g++ problem reported by
41625         Sam Steingold.
41626         * lib/regex_internal.h (re_calloc): New macro, consistent with
41627         re_malloc etc.  All callers of calloc changed to use re_calloc.
41628         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
41629         not int.  All callers changed.
41630         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
41631         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
41632         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
41633         (find_recover_state): Change "err" to "*err"; this fixes what
41634         appears to be a real bug.
41635         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
41636         versus int.
41637
41638 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
41639
41640         * modules/regex (Depends-on): Add malloc, since the code
41641         assumes that !malloc(0) means failure.
41642
41643 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
41644
41645         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
41646
41647         alloca modernization/simplification for regex.
41648         * lib/regex.c: Remove portability cruft for alloca.  This no longer
41649         needs to be at the start of the file, and can be moved into
41650         regex_internal.h and simplified.
41651         * lib/regex_internal.h: Include <alloca.h>.
41652         (__libc_use_alloca) [!defined _LIBC]: New macro.
41653         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
41654         now works outside glibc.
41655
41656 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
41657
41658         * config/srclist.txt: Add glibc bugs 1241, 1245.
41659
41660 2005-08-25  Jim Meyering  <jim@meyering.net>
41661
41662         * lib/open-safer.c: Include <config.h>.
41663         Otherwise, we'd lose LARGEFILE support in any file using
41664         e.g. "fcntl--.h"
41665
41666 2005-08-25  Bruno Haible  <bruno@clisp.org>
41667
41668         * m4/minmax.m4: Require autoconf 2.52.
41669         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
41670         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
41671         alternatives of translit over the alphabet.
41672         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
41673
41674 2005-08-24  Simon Josefsson  <jas@extundo.com>
41675
41676         * tests/test-getpass.c: New file.
41677
41678 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
41679
41680         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
41681         for GNU regex features.
41682
41683 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
41684
41685         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
41686         * lib/regex.h (regerror): Likewise.
41687
41688         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
41689         requires this.  (The code never needed it.)
41690
41691         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
41692         All uses of recently-renamed identifiers changed to use the new,
41693         POSIX-compliant names.  The code will build and run just fine
41694         without these changes, but it's better to eat our own dog food
41695         and use the standard-conforming names.
41696
41697         * lib/regex.h: Fix a multitude of POSIX name space violations.
41698         These changes have an effect only for programs that define
41699         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
41700         do not change anything for programs compiled in the normal way.
41701         Also, there is no effect on the ABI.
41702
41703         (_REGEX_SOURCE): New macro.
41704         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
41705         defined and _GNU_SOURCE is not; this fixes a name space violation.
41706
41707         Rename the following macros to obey POSIX requirements.
41708         The old names are still visible as macros if _REGEX_SOURCE is defined.
41709         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
41710         RE_BACKSLASH_ESCAPE_IN_LISTS.
41711         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
41712         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
41713         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
41714         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
41715         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
41716         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
41717         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
41718         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
41719         (REG_INTERVALS): renamed from RE_INTERVALS.
41720         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
41721         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
41722         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
41723         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
41724         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
41725         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
41726         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
41727         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
41728         RE_UNMATCHED_RIGHT_PAREN_ORD.
41729         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
41730         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
41731         (REG_DEBUG): renamed from RE_DEBUG.
41732         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
41733         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
41734         unusual, since we can't clash with the POSIX REG_ICASE.
41735         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
41736         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
41737         (REG_NO_SUB): renamed from RE_NO_SUB.
41738         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
41739         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
41740         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
41741         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
41742         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
41743         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
41744         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
41745         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
41746         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
41747         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
41748         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
41749         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
41750         RE_SYNTAX_POSIX_MINIMAL_BASIC.
41751         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
41752         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
41753         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
41754         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
41755         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
41756         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
41757         (REG_FIXED): Renamed from REGS_FIXED.
41758         (REG_NREGS): Renamed from RE_NREGS.
41759
41760         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
41761         of other REG_* macros, since POSIX says the user is allowed to
41762         #undef these macros selectively.
41763
41764         (reg_errcode_t): Update comment stating what other tables need
41765         to be consistent.
41766
41767         Rename the following enum values to obey POSIX requirements.
41768         The old names are still visible as macros.
41769         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
41770         is not defined, since GNU is supposed to be a superset of POSIX as
41771         much as possible, and since we want reg_errcode_t to be a signed
41772         type for implementation consistency.
41773         (_REG_NOERROR): Renamed from REG_NOERROR.
41774         (_REG_NOMATCH): Renamed from REG_NOMATCH.
41775         (_REG_BADPAT): Renamed from REG_BADPAT.
41776         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
41777         (_REG_ECTYPE): Renamed from REG_ECTYPE.
41778         (_REG_EESCAPE): Renamed from REG_EESCAPE.
41779         (_REG_ESUBREG): Renamed from REG_ESUBREG.
41780         (_REG_EBRACK): Renamed from REG_EBRACK.
41781         (_REG_EPAREN): Renamed from REG_EPAREN.
41782         (_REG_EBRACE): Renamed from REG_EBRACE.
41783         (_REG_BADBR): Renamed from REG_BADBR.
41784         (_REG_ERANGE): Renamed from REG_ERANGE.
41785         (_REG_ESPACE): Renamed from REG_ESPACE.
41786         (_REG_BADRPT): Renamed from REG_BADRPT.
41787         (_REG_EEND): Renamed from REG_EEND.
41788         (_REG_ESIZE): Renamed from REG_ESIZE.
41789         (_REG_ERPAREN): Renamed from REG_ERPAREN.
41790         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
41791         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
41792         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
41793         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
41794
41795         (_REG_RE_NAME, _REG_RM_NAME): New macros.
41796         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
41797         changed.  But support the old name if the new one is not defined
41798         and if _REGEX_SOURCE.
41799
41800         Change the following member names in struct re_pattern_buffer.
41801         The old names are still supported if !_REGEX_SOURCE.
41802         The new names are always supported, regardless of _REGEX_SOURCE.
41803         (re_buffer): Renamed from buffer.
41804         (re_allocated): Renamed from allocated.
41805         (re_used): Renamed from used.
41806         (re_syntax): Renamed from syntax.
41807         (re_fastmap): Renamed from fastmap.
41808         (re_translate): Renamed from translate.
41809         (re_can_be_null): Renamed from can_be_null.
41810         (re_regs_allocated): Renamed from regs_allocated.
41811         (re_fastmap_accurate): Renamed from fastmap_accurate.
41812         (re_no_sub): Renamed from no_sub.
41813         (re_not_bol): Renamed from not_bol.
41814         (re_not_eol): Renamed from not_eol.
41815         (re_newline_anchor): Renamed from newline_anchor.
41816
41817         Change the following member names in struct re_registers.
41818         The old names are still supported if !_REGEX_SOURCE.
41819         The new names are always supported, regardless of _REGEX_SOURCE.
41820         (rm_num_regs): Renamed from num_regs.
41821         (rm_start): Renamed from start.
41822         (rm_end): Renamed from end.
41823
41824         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
41825         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
41826         Prepend __ to parameter names.
41827
41828         Undo yesterday's changes.
41829
41830 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
41831
41832         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
41833         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
41834         lib/regex.c.
41835
41836 2005-08-24  Jim Meyering  <jim@meyering.net>
41837
41838         Sync from coreutils.
41839         * m4/fcntl-safer.m4: New file.
41840
41841         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
41842         and object files for this module.
41843
41844 2005-08-24  Jim Meyering  <jim@meyering.net>
41845
41846         Sync from coreutils.
41847         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
41848
41849 2005-08-24  Jim Meyering  <jim@meyering.net>
41850
41851         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
41852         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
41853
41854 2005-08-24  Jim Meyering  <jim@meyering.net>
41855
41856         * modules/fcntl-safer: New module.
41857         * modules/fts (Depends-on): Add fcntl-safer.
41858         * MODULES.html.sh (File descriptor based Input/Output):
41859         Add fcntl-safer.
41860
41861 2005-08-24  Bruno Haible  <bruno@clisp.org>
41862
41863         Support for unit test modules.
41864         * modules/README: Mention tests modules.
41865         * modules/TEMPLATE-TESTS: New file.
41866         * gnulib-tool: New options --extract-tests-module, --with-tests and
41867         --tests-base (unused for the moment).
41868         (testsbase, inctests): New variables.
41869         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
41870         (func_verify_module): Exclude TEMPLATE-TESTS.
41871         (func_verify_nontests_module, func_verify_tests_module): New functions.
41872         (func_get_dependencies): Add implicit dependency for tests modules.
41873         (func_get_tests_module): New function.
41874         (func_modules_transitive_closure): When --with-tests was specified,
41875         include the unit tests as well, unless explicitly avoided.
41876         (func_emit_lib_Makefile_am): Ignore the tests modules here.
41877         (func_emit_tests_Makefile_am): New function.
41878         (func_create_testdir): When --with-tests was specified, emit a
41879         tests/ directory.
41880         * MODULES.html.sh (Future developments): Update.
41881
41882 2005-08-24  Bruno Haible  <bruno@clisp.org>
41883
41884         * modules/tls-tests: New file.
41885         * tests/test-tls.c: New file, from GNU gettext.
41886
41887 2005-08-24  Bruno Haible  <bruno@clisp.org>
41888
41889         * modules/lock-tests: New file.
41890         * tests/test-lock.c: New file, from GNU gettext.
41891
41892 2005-08-24  Bruno Haible  <bruno@clisp.org>
41893
41894         * lib/lock.h: Add multiple inclusion guard.
41895         * lib/tls.h: Add multiple inclusion guard.
41896
41897 2005-08-24  Bruno Haible  <bruno@clisp.org>
41898
41899         * gnulib-tool: Add support for the --aux-dir option to
41900         --create-testdir, --create-megatestdir, --test, --megatest.
41901         (func_create_testdir, func_create_megatestdir): Optionally emit a
41902         AC_CONFIG_AUX_DIR directive.
41903         (create-testdir, create-megatestdir, test, megatest): Provide a
41904         default value for $auxdir.
41905
41906 2005-08-24  Bruno Haible  <bruno@clisp.org>
41907
41908         * gnulib-tool (import): Use compound statement instead of subshell
41909         where possible.
41910
41911 2005-08-24  Bruno Haible  <bruno@clisp.org>
41912
41913         * gnulib-tool (import): Change --aux-dir default to "build-aux".
41914
41915 2005-08-24  Bruno Haible  <bruno@clisp.org>
41916
41917         * gnulib-tool (func_version): Update.
41918
41919 2005-08-24  Bruno Haible  <bruno@clisp.org>
41920
41921         * gnulib-tool (func_import, func_create_testdir,
41922         func_create_megatestdir): Quote all autoconf macro arguments.
41923
41924 2005-08-24  Bruno Haible  <bruno@clisp.org>
41925
41926         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
41927         option --force, because --force causes the aclocal.m4 of each
41928         subdirectory to be newer than the corresponding config.h.in.
41929
41930 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
41931
41932         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
41933         All contents moved to gl_REGEX.
41934         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
41935         assume that it does.
41936
41937 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
41938
41939         * lib/regex.h (REG_NOSYS)
41940         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
41941         Define, since POSIX requires it as of 2001.
41942         (_REG_ENOSYS)
41943         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
41944         New private symbol, used to keep the enum signed in all cases.
41945         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
41946         Youngman in
41947         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
41948
41949         * lib/regex_internal.c (re_string_skip_chars, register_state):
41950         (calc_state_hash):
41951         Remove forward decls; no longer needed now that we use prototypes.
41952         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
41953         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
41954         (clean_state_log_if_needed): Likewise.
41955
41956 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
41957
41958         * config/srclist.txt: Add glibc bugs 1231-1233.
41959
41960 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
41961
41962         Fix problems reported by Sam Steingold in
41963         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
41964         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
41965         assumed that reg_errcode_t is a signed type, which is not
41966         necessarily true if _XOPEN_SOURCE is not defined.
41967         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
41968         since some compilers warn about it otherwise.
41969
41970 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
41971
41972         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
41973         (init_word_char, create_initial_state, duplicate_node_closure):
41974         (fetch_token, peek_token_bracket, build_range_exp):
41975         (build_collating_symbol): Remove forward decls; no longer needed
41976         now that we use prototypes.
41977
41978         * lib/regcomp.c:
41979         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
41980         (re_compile_fastmap_iter, regcomp, regerror, regfree):
41981         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
41982         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
41983         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
41984         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
41985         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
41986         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
41987         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
41988         (build_range_exp, build_collating_symbol, parse_bracket_exp):
41989         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
41990         (build_charclass, build_charclass_op, fetch_number, create_tree):
41991         (create_token_tree, mark_opt_subexp, duplicate_tree):
41992         Use prototypes rather than old-style definitions.
41993
41994         * lib/regex_internal.c:
41995         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
41996         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
41997         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
41998         (re_string_reconstruct, re_string_peek_byte_case):
41999         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
42000         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
42001         (re_node_set_init_copy, re_node_set_add_intersect):
42002         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
42003         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
42004         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
42005         (re_acquire_state, re_acquire_state_context, register_state):
42006         (create_ci_newstate, create_cd_newstate, free_state):
42007         Likewise.
42008         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
42009         re_search_2):
42010         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
42011         (re_search_internal, prune_impossible_nodes):
42012         (acquire_init_state_context, check_matching, static):
42013         (check_halt_node_context, check_halt_state_context, proceed_next_node):
42014         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
42015         (update_regs, sift_states_backward, build_sifted_states):
42016         (clean_state_log_if_needed, merge_state_array):
42017         (update_cur_sifted_state, add_epsilon_src_nodes):
42018         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
42019         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
42020         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
42021         (find_recover_state, check_subexp_matching_top, transit_state_mb):
42022         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
42023         (check_arrival, check_arrival_add_next_nodes):
42024         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
42025         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
42026         (check_node_accept_bytes, check_node_accept, extend_buffers):
42027         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
42028         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
42029         (sift_ctx_init):
42030         Likewise.
42031
42032         * lib/regex_internal.h:
42033         (re_string_allocate, re_string_construct, re_string_reconstruct):
42034         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
42035         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
42036         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
42037         (re_string_context_at, re_string_peek_byte_case):
42038         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
42039         is defined, since we now use prototypes always.
42040
42041         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
42042         C89 or better.  All uses removed.
42043
42044 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
42045
42046         * config/srclist.txt: Add glibc bugs 1220-1227.
42047
42048 2005-08-20  Jim Meyering  <jim@meyering.net>
42049
42050         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
42051         of unused local, dfa.
42052
42053 2005-08-20  Bruno Haible  <bruno@clisp.org>
42054
42055         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
42056
42057 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
42058
42059         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
42060         (re_node_set_insert_last, re_dfa_add_node):
42061         Rename local variables to avoid GCC shadowing warnings.
42062
42063 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
42064
42065         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
42066         [defined lint]: Suppress bogus uninitialized-variable warnings.
42067
42068         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
42069         and let the caller return REG_ESPACE if out of space.  This
42070         removes an uninitialied-variable warning with GCC 4.0.1, and also
42071         avoids taking the address of a local variable.  All callers
42072         changed.
42073
42074 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
42075
42076         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
42077         $LIBCSRC/posix/regexec.c.
42078         Add glibc bug 1217 for regcomp.c.
42079
42080 2005-08-19  Jim Meyering  <jim@meyering.net>
42081
42082         * lib/regexec.c (proceed_next_node): Redo local variables to
42083         avoid GCC shadowing warnings.
42084
42085 2005-08-18  Bruno Haible  <bruno@clisp.org>
42086
42087         * lib/strstr.c (strstr): Fix return value in multibyte case.
42088         * lib/strcasestr.c (strcasestr): Likewise.
42089
42090 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
42091
42092         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
42093
42094 2005-08-17  Jim Meyering  <jim@meyering.net>
42095
42096         Make the %s format (seconds since the epoch) work for a negative
42097         number and when used with a zero-padded field width, e.g. %015s.
42098
42099         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
42100         label so that it precedes the code to set `digits'.  Otherwise,
42101         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
42102         print `00-22'.  Now, it prints `-0022', as it should.
42103
42104 2005-08-17  Bruno Haible  <bruno@clisp.org>
42105
42106         * modules/strstr (Files): Add m4/mbrtowc.m4.
42107         (Depends-on): Add mbuiter.
42108
42109 2005-08-17  Bruno Haible  <bruno@clisp.org>
42110
42111         * modules/strcasestr: New file.
42112         * MODULES.html.sh (String handling, based on ANSI C 89): Add
42113         strcasestr.
42114
42115 2005-08-17  Bruno Haible  <bruno@clisp.org>
42116
42117         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
42118
42119 2005-08-17  Bruno Haible  <bruno@clisp.org>
42120
42121         * modules/mbuiter: New file.
42122         * MODULES.html.sh (Extended multibyte and wide character utilities):
42123         Add mbuiter.
42124
42125 2005-08-17  Bruno Haible  <bruno@clisp.org>
42126
42127         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
42128         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
42129
42130 2005-08-17  Bruno Haible  <bruno@clisp.org>
42131
42132         * m4/strcasestr.m4: New file.
42133
42134 2005-08-17  Bruno Haible  <bruno@clisp.org>
42135
42136         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
42137         * lib/strstr.c: Completely rewritten, with multibyte locale support.
42138
42139 2005-08-17  Bruno Haible  <bruno@clisp.org>
42140
42141         * lib/strcasestr.h: New file.
42142         * lib/strcasestr.c: New file.
42143
42144 2005-08-17  Bruno Haible  <bruno@clisp.org>
42145
42146         * lib/strcasecmp.c: Use mbuiter.h.
42147
42148 2005-08-17  Bruno Haible  <bruno@clisp.org>
42149
42150         * lib/mbuiter.h: New file.
42151
42152 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
42153
42154         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
42155         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
42156         and gl_GETOPT are both invoked via different paths (as happens
42157         with GNU tar CVS because it uses both argp and getopt), the former
42158         wins.
42159
42160 2005-08-16  Bruno Haible  <bruno@clisp.org>
42161
42162         * modules/tls: New file.
42163         * MODULES.html.sh (Multithreading): Add tls.
42164
42165 2005-08-16  Bruno Haible  <bruno@clisp.org>
42166
42167         * modules/strnlen1: New file.
42168         * MODULES.html.sh (String handling): Add strnlen1.
42169
42170 2005-08-16  Bruno Haible  <bruno@clisp.org>
42171
42172         * modules/strcase (Files): Add m4/mbrtowc.m4.
42173         (Depends-on): Add strnlen1, mbchar.
42174
42175 2005-08-16  Bruno Haible  <bruno@clisp.org>
42176
42177         * modules/mbiter: New file.
42178         * MODULES.html.sh (Extended multibyte and wide character utilities):
42179         Add mbiter.
42180
42181 2005-08-16  Bruno Haible  <bruno@clisp.org>
42182
42183         * modules/mbfile: New file.
42184         * MODULES.html.sh (Extended multibyte and wide character utilities):
42185         Add mbfile.
42186
42187 2005-08-16  Bruno Haible  <bruno@clisp.org>
42188
42189         * modules/mbchar: New file.
42190         * MODULES.html.sh (Extended multibyte and wide character utilities):
42191         New section.
42192
42193 2005-08-16  Bruno Haible  <bruno@clisp.org>
42194
42195         * m4/tls.m4: New file, from GNU gettext.
42196
42197 2005-08-16  Bruno Haible  <bruno@clisp.org>
42198
42199         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
42200         always.
42201         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
42202
42203 2005-08-16  Bruno Haible  <bruno@clisp.org>
42204
42205         * m4/mbiter.m4: New file.
42206
42207 2005-08-16  Bruno Haible  <bruno@clisp.org>
42208
42209         * m4/mbfile.m4: New file.
42210
42211 2005-08-16  Bruno Haible  <bruno@clisp.org>
42212
42213         * m4/mbchar.m4: New file.
42214
42215 2005-08-16  Bruno Haible  <bruno@clisp.org>
42216
42217         * lib/tls.h: New file, from GNU gettext.
42218         * lib/tls.c: New file, from GNU gettext.
42219
42220 2005-08-16  Bruno Haible  <bruno@clisp.org>
42221
42222         * lib/strnlen1.h: New file.
42223         * lib/strnlen1.c: New file.
42224
42225 2005-08-16  Bruno Haible  <bruno@clisp.org>
42226
42227         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
42228         (mbi_init): Update.
42229         (mbi_avail, mbi_advance): Let the iteration end before the terminating
42230         NUL byte, not after it.
42231
42232 2005-08-16  Bruno Haible  <bruno@clisp.org>
42233
42234         * lib/strcase.h (strcasecmp): Add note in comments.
42235         * lib/strncasecmp.c: Use code from strcasecmp.c.
42236         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
42237         (strcasecmp): Work correctly in multibyte locales.
42238
42239 2005-08-16  Bruno Haible  <bruno@clisp.org>
42240
42241         * lib/mbiter.h: New file.
42242
42243 2005-08-16  Bruno Haible  <bruno@clisp.org>
42244
42245         * lib/mbfile.h: New file.
42246
42247 2005-08-16  Bruno Haible  <bruno@clisp.org>
42248
42249         * lib/mbchar.h: New file.
42250         * lib/mbchar.c: New file.
42251
42252 2005-08-16  Bruno Haible  <bruno@clisp.org>
42253
42254         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
42255         the valid ones. Makes the comparison operations transitive:
42256         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
42257         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
42258
42259 2005-08-15  Simon Josefsson  <jas@extundo.com>
42260
42261         * modules/ssize_t (License): Change to 'unlimited'.
42262
42263         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
42264
42265 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
42266
42267         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
42268         Add comments for each pending glibc patch.
42269
42270 2005-08-15  Bruno Haible  <bruno@clisp.org>
42271
42272         * lib/regex.h (__restrict_arr): Don't define to __restrict if
42273         __cplusplus is defined.
42274
42275 2005-08-14  Jim Meyering  <jim@meyering.net>
42276
42277         Sync from coreutils.
42278
42279         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
42280         Use the hash-table-based cycle-detection code not just when
42281         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
42282         Reported by James Youngman in
42283         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
42284         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
42285         FTS_TIGHT_CYCLE_CHECK.
42286         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
42287         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
42288         once again.
42289         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
42290         * lib/fts.c (fd_safer): Remove decl.
42291         Include fcntl--.h rather than unistd-safer.h
42292         (fts_safe_changedir): Don't call fd_safer; no longer needed
42293         now that we include fcntl--.h.
42294
42295 2005-08-12  Simon Josefsson  <jas@extundo.com>
42296
42297         * modules/getndelim2: Use ssize_t module.
42298         * modules/getnline: Likewise.
42299         * modules/safe-read: Likewise.
42300         * modules/xreadlink: Likewise.
42301
42302         * modules/ssize_t: New file.
42303
42304 2005-08-12  Simon Josefsson  <jas@extundo.com>
42305
42306         * m4/readline.m4: Look for termcap, curses or ncurses if required.
42307
42308 2005-08-12  Simon Josefsson  <jas@extundo.com>
42309
42310         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
42311         ssize_t.
42312
42313 2005-08-12  Simon Josefsson  <jas@extundo.com>
42314
42315         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
42316         readline, getdelim and check_version.
42317         (Support for systems lacking ISO C 99: Sizes of integer types):
42318         Add size_max.
42319
42320 2005-08-12  Bruno Haible  <bruno@clisp.org>
42321
42322         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
42323
42324 2005-08-11  Simon Josefsson  <jas@extundo.com>
42325
42326         * modules/readline: New file.
42327
42328         * modules/strnlen (Files): Add strnlen.h.
42329
42330 2005-08-11  Simon Josefsson  <jas@extundo.com>
42331
42332         * m4/readline.m4: New file.
42333
42334 2005-08-11  Simon Josefsson  <jas@extundo.com>
42335
42336         * lib/readline.h, readline.c: New file.
42337
42338 2005-08-11  Simon Josefsson  <jas@extundo.com>
42339
42340         * doc/gnulib.texi (Initial import, Finishing touches): Mention
42341         gl_AVOID.
42342
42343 2005-08-11  Bruno Haible  <bruno@clisp.org>
42344
42345         * lib/strnlen.h (strnlen): Change parameter name to match comment.
42346
42347 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
42348
42349         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
42350
42351 2005-08-10  Simon Josefsson  <jas@extundo.com>
42352
42353         * tests/test-iconvme.c: New file.
42354
42355 2005-08-10  Simon Josefsson  <jas@extundo.com>
42356
42357         * m4/strnlen.m4: New file.
42358
42359         * m4/strndup.m4: Don't check for strnlen declaration, done in
42360         strnlen.m4.
42361
42362 2005-08-10  Simon Josefsson  <jas@extundo.com>
42363
42364         * lib/strndup.c: Use strnlen.h.
42365
42366         * lib/strnlen.h: New file.
42367
42368 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
42369
42370         * README: Typos.
42371
42372 2005-08-02  Simon Josefsson  <jas@extundo.com>
42373
42374         * modules/readline: New file.
42375
42376 2005-08-02  Simon Josefsson  <jas@extundo.com>
42377
42378         * modules/getdelim: New file.
42379
42380         * modules/getline: Rewrite, don't use getndelim2.
42381
42382 2005-08-02  Simon Josefsson  <jas@extundo.com>
42383
42384         * m4/getline.m4: Separate out getdelim stuff into separate module.
42385
42386         * m4/getdelim.m4: New file.
42387
42388 2005-08-02  Simon Josefsson  <jas@extundo.com>
42389
42390         * lib/getline.h, getline.c: Rewrite.
42391
42392         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
42393
42394 2005-07-31  Bruno Haible  <bruno@clisp.org>
42395
42396         * lib/lock.h (gl_lock_initializer): New macro.
42397         (gl_lock_define_initialized): Use it.
42398         (gl_rwlock_initializer): New macro.
42399         (gl_rwlock_define_initialized): Use it.
42400         (gl_recursive_lock_initializer): New macro.
42401         (gl_recursive_lock_define_initialized): Use it.
42402
42403 2005-07-30  Karl Berry  <karl@gnu.org>
42404
42405         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
42406         Report from Ben Pfaff, regarding getopt.
42407
42408 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
42409
42410         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
42411         normal way.
42412         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
42413         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
42414         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
42415         (gl_GETOPT): Use the new macros.  Most of the implementation
42416         is moved to the new macros.  This is for programs like Emacs
42417         that don't want all the functionality of gl_GETOPT.
42418
42419 2005-07-26  Bruno Haible  <bruno@clisp.org>
42420
42421         * m4/lock.m4: Update from GNU gettext.
42422
42423 2005-07-26  Bruno Haible  <bruno@clisp.org>
42424
42425         * lib/lock.h: Update from GNU gettext.
42426         * lib/lock.c: Update from GNU gettext.
42427
42428 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
42429
42430         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
42431         obsolescent AC_TRY_RUN.  Include the default includes files, for
42432         'exit'.
42433
42434 2005-07-24  Bruno Haible  <bruno@clisp.org>
42435
42436         * modules/visibility: New file.
42437         * MODULES.html.sh (Misc): Add visibility.
42438
42439 2005-07-24  Bruno Haible  <bruno@clisp.org>
42440
42441         * m4/visibility.m4: New file.
42442
42443 2005-07-24  Bruno Haible  <bruno@clisp.org>
42444
42445         * doc/visibility.texi: New file.
42446
42447 2005-07-22  Bruno Haible  <bruno@clisp.org>
42448
42449         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
42450         $(ALLOCA_H), redundant through BUILT_SOURCES.
42451         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
42452         redundant through BUILT_SOURCES.
42453         * modules/byteswap (Makefile.am): Remove explicit dependency on
42454         $(BYTESWAP_H), redundant through BUILT_SOURCES.
42455         * modules/fnmatch (Makefile.am): Remove explicit dependency on
42456         $(FNMATCH_H), redundant through BUILT_SOURCES.
42457         * modules/getopt (Makefile.am): Remove explicit dependency on
42458         $(GETOPT_H), redundant through BUILT_SOURCES.
42459         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
42460         redundant through BUILT_SOURCES.
42461         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
42462         redundant through BUILT_SOURCES.
42463         * modules/stdbool (Makefile.am): Remove explicit dependency on
42464         $(STDBOOL_H), redundant through BUILT_SOURCES.
42465         * modules/stdint (Makefile.am): Remove explicit dependency on
42466         $(STDINT_H), redundant through BUILT_SOURCES.
42467         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
42468         Remove explicit dependency on $(SYSEXITS_H).
42469         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
42470
42471 2005-07-18  Simon Josefsson  <jas@extundo.com>
42472
42473         * lib/check-version.c (check_version): Accept identical versions too.
42474
42475 2005-07-18  Bruno Haible  <bruno@clisp.org>
42476
42477         * modules/lock: New file.
42478         * MODULES.html.sh (Multithreading): New section.
42479
42480 2005-07-18  Bruno Haible  <bruno@clisp.org>
42481
42482         * m4/lock.m4: New file, from GNU gettext.
42483
42484 2005-07-18  Bruno Haible  <bruno@clisp.org>
42485
42486         * lib/lock.h: New file, from GNU gettext.
42487         * lib/lock.c: New file, from GNU gettext.
42488
42489 2005-07-18  Bruno Haible  <bruno@clisp.org>
42490
42491         * lib/lock.h (gl_once_t): New type.
42492         (gl_once_define, gl_once): New macros.
42493         * lib/lock.c (fresh_once): New variable.
42494         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
42495         functions.
42496
42497 2005-07-16  Simon Josefsson  <jas@extundo.com>
42498
42499         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
42500         workaround, suggested by Bruno.
42501
42502 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
42503
42504         * modules/xalloc (Depends-on): Add xalloc-die.
42505         * modules/xvasprintf (Depends-on): Add xalloc-die.
42506
42507 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
42508
42509         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
42510         with a minor change.
42511
42512 2005-07-15  Bruno Haible  <bruno@clisp.org>
42513
42514         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
42515         When using lib/poll.c, define poll as rpl_poll.
42516
42517 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
42518
42519         * modules/argp (Depends-on): Remove unlocked-io.
42520
42521 2005-07-14  Derek Price  <derek@ximbiot.com>
42522
42523         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
42524         for glob symlink bug.
42525
42526 2005-07-14  Bruno Haible  <bruno@clisp.org>
42527
42528         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
42529         Instead, test for *_unlocked function declarations directly.
42530
42531 2005-07-11  Simon Josefsson  <jas@extundo.com>
42532
42533         * modules/size_max: New file.
42534
42535         * modules/xsize: Depend on size_max module for size_max.m4.
42536
42537 2005-07-11  Simon Josefsson  <jas@extundo.com>
42538
42539         * lib/size_max.h: New file.
42540
42541 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
42542
42543         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
42544         copyright symbol and the year.
42545         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
42546         (version_etc_va): Use parameterized copyright notice.
42547         Reword to conform to the current GNU coding standards.
42548
42549 2005-07-11  Karl Berry  <karl@gnu.org>
42550
42551         * doc/gnulib.texi (Quoting): new node.
42552         (Initial import): more info, from Patrice.
42553
42554 2005-07-11  Bruno Haible  <bruno@clisp.org>
42555
42556         * gnulib-tool (func_usage): Document option --avoid.
42557         (Command line options): Handle --avoid.
42558         (func_acceptable): New function.
42559         (func_modules_transitive_closure): Use it.
42560
42561 2005-07-11  Bruno Haible  <bruno@clisp.org>
42562
42563         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
42564         Reported by Jim Meyering.
42565
42566 2005-07-10  Bruno Haible  <bruno@clisp.org>
42567
42568         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
42569         Needed when size_t is smaller than 'unsigned int'.
42570         Reported by Paul Eggert.
42571
42572 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42573
42574         * modules/argp (Depends-on): Add unlocked-io
42575
42576 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
42577
42578         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
42579         block of defines.
42580
42581 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
42582
42583         * config/srclist.txt: Comment out regcomp.c, since we have a porting
42584         fix now.
42585
42586 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
42587         and Paul Eggert  <eggert@cs.ucla.edu>
42588
42589         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
42590         in wint_t, not wchar_t.  Remove now-unnecessary cast.
42591
42592 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
42593
42594         * modules/regex (Files): Add lib/regex_internal.c,
42595         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
42596         (Depends-on): Add extensions.
42597         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
42598
42599 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
42600
42601         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
42602         pathconf.
42603         * m4/same.m4 (gl_SAME): Likewise.
42604         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
42605
42606         * m4/regex.m4: Adjust to new libc regex implementation.
42607         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
42608         all the .c and .h parts of (the new) regex.
42609         Quote the m4 stuff better.
42610         Check for RE_ICASE bug of old gnulib.
42611         Check for REG_STARTEND of recent libc.
42612         Rename local variables from jm_* to gl_*.
42613         Quote operand of "test -f".
42614         Say "recent enough" version of libc, not "version 2".
42615         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
42616         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
42617         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
42618         Remove check for btowc, isascii.
42619         Require AM_LANGINFO_CODESET.
42620
42621 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
42622
42623         * lib/regex.c, regex.h: Sync from libc.
42624         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
42625         * lib/regexec.c:
42626         New files, synced from libc, except that regex_internal.h
42627         currently has a small porting fix.
42628
42629 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
42630
42631         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
42632         regex_internal.c, regexec.c.
42633         Add regex_internal.h too, but as a comment, since the libc version
42634         is currently broken in gnulib mode.
42635
42636 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
42637
42638         Support programs like Emacs that use gnulib but not gettext.
42639         * MODULES.html.sh (Internationalization functions): Add gettext-h.
42640         * modules/gettext-h: New file.
42641         * modules/gettext (Files): Remove lib/gettext.h.
42642         (Depends-on): Add gettext-h.
42643         (Makefile.am): Remove lib_SOURCES.
42644         * modules/argmatch, modules/c-stack, modules/closeout:
42645         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
42646         * modules/execute, modules/file-type, modules/getaddrinfo:
42647         * modules/getopt, modules/human, modules/javacomp:
42648         * modules/javaexec, modules/mkdir-p, modules/obstack:
42649         * modules/openat, modules/pagealign_alloc, modules/pipe:
42650         * modules/quotearg, modules/regex, modules/rpmatch:
42651         * modules/unicodeio, modules/userspec, modules/version-etc:
42652         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
42653         * modules/xsetenv:
42654         Depend on gettext-h, not gettext.
42655
42656 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
42657
42658         * gnulib-tool (func_import): Add support for 'public domain' license.
42659         * modules/alloca, modules/atexit, modules/memmove:
42660         Now public domain, not GPL.
42661         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
42662         * modules/realloc, modules/strerror, modules/strtod:
42663         Now LGPL, not GPL.
42664
42665 2005-07-05  Bruno Haible  <bruno@clisp.org>
42666
42667         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
42668         autoconf CVS. Needed for mingw.
42669
42670 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
42671
42672         Remove the dependency of the strftime module on the tzset module.
42673         * modules/strftime (Depends-on): Remove dependency on tzset.
42674
42675 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
42676
42677         Remove the dependency of the strftime module on the tzset module.
42678         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
42679         gl_FUNC_TZSET_CLOBBER.
42680
42681 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
42682
42683         Remove the dependency of the strftime module on the tzset module.
42684         * lib/strftime.c (my_strftime)
42685         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
42686         Copy the input structure, to work around some of the bug with
42687         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
42688         Solaris releases, you should also use the tzset module, but we won't
42689         require it as a dependency any more since we don't want LGPLed code
42690         to depend on GPLed code.
42691
42692 2005-07-02  Jim Meyering  <jim@meyering.net>
42693
42694         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
42695         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
42696         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
42697         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
42698
42699 2005-07-02  Jim Meyering  <jim@meyering.net>
42700
42701         * lib/backupfile.c (backup_args): Change a `0' to NULL.
42702
42703 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
42704
42705         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
42706         declares only 'struct timespec;' (!).
42707
42708 2005-07-01  Jim Meyering  <jim@meyering.net>
42709
42710         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
42711         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
42712         * lib/save-cwd.c, tempname.c:
42713         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
42714         and don't include <sys/file.h>).
42715
42716 2005-06-29  Jim Meyering  <jim@meyering.net>
42717
42718         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
42719         type name.  Use the variable name instead.
42720         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
42721         Likewise.
42722
42723 2005-06-28  Simon Josefsson  <jas@extundo.com>
42724
42725         * modules/check-version (Files): Add check-version.m4.
42726
42727 2005-06-28  Simon Josefsson  <jas@extundo.com>
42728
42729         * m4/check-version.m4: New file, suggested by Jim Meyering
42730         <jim@meyering.net>.
42731
42732 2005-06-28  Simon Josefsson  <jas@extundo.com>
42733
42734         * lib/check-version.h, lib/check-version.c: New files.
42735
42736 2005-06-28  Simon Josefsson  <jas@extundo.com>
42737
42738         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
42739         collision with global variable.  Better indentation.  Don't
42740         increment buffer pointer beyond buffer end.  Based on comments
42741         from Paul Eggert <eggert@cs.ucla.edu>.
42742
42743         * lib/base64.h: Indent.
42744
42745 2005-06-28  Simon Josefsson  <jas@extundo.com>
42746
42747         * doc/gnulib.texi (Library version handling): New section.
42748
42749 2005-06-28  Jim Meyering  <jim@meyering.net>
42750
42751         * check-module (find_included_lib_files): Hard-code another
42752         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
42753         but modules/fts-lgpl (correctly) does not list those files.
42754
42755         * modules/canonicalize (Files): Add lib/pathmax.h.
42756
42757 2005-06-25  Simon Josefsson  <jas@extundo.com>
42758
42759         * modules/check-version: New file.
42760
42761 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
42762
42763         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
42764         initializer of struct addrinfo, as an indication that we don't
42765         care how many members the structure has.
42766
42767 2005-06-24  Derek Price  <derek@ximbiot.com>
42768         and Bruno Haible  <bruno@clisp.org>
42769
42770         Remove stat module & update lstat.
42771         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
42772         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
42773         * m4/stat.m4: Remove this file.
42774
42775 2005-06-24  Derek Price  <derek@ximbiot.com>
42776         and Bruno Haible  <bruno@clisp.org>
42777
42778         Remove stat module & update lstat.
42779         * lib/stat.c: Remove this file...
42780         (slash_aware_lstat): ...moving this content and its support...
42781         * lib/lstat.c (rpl_lstat): ...into here.
42782         * lib/lstat.h: New file.
42783
42784 2005-06-24  Derek Price  <derek@ximbiot.com>
42785         and Bruno Haible  <bruno@clisp.org>
42786
42787         Remove stat module & update lstat.
42788         * config/srclist.txt (libc sources): Remove stat.
42789
42790 2005-06-24  Derek Price  <derek@ximbiot.com>
42791         and Bruno Haible  <bruno@clisp.org>
42792
42793         Remove stat module & update lstat.
42794         * MODULES.html.sh (stat): Remove.
42795         * MODULES.html: Regenerated.
42796         * modules/lstat (Description): Correct function name.
42797         (Files): Add "lstat.h".
42798         (Depends-on): Remove stat, add xalloc, stat-macros.
42799         * modules/stat: Remove this file.
42800         (Include): Add "lstat.h", remove <sys/stat.h>.
42801
42802 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
42803
42804         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
42805         (ranged_convert): Don't save conversion in a temporary struct.
42806         This causes a warning with GCC 4.0.0, and anyway in the typical
42807         case it's not worth the extra 100 bytes or so of code.
42808         (ranged_convert, __mktime_internal): When calling a function via a
42809         pointer P, use P () rather than (*P) (), as we now assume C89 or
42810         better.
42811
42812 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42813
42814         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
42815         "who -r" failed to give output.  Problem reported by Tim Waugh.
42816
42817         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
42818         (xcalloc): Use it to avoid needless tests.
42819         Problem reported by Jim Meyering.
42820
42821 2005-06-20  Derek Price  <derek@ximbiot.com>
42822
42823         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
42824         unnecessary for Autoconfs > 2.59c.
42825
42826 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
42827
42828         * lib/argp.h (__option_is_short): Check upper limit of
42829         __key. Isprint() requires its argument to have the value
42830         of an unsigned char or EOF.
42831
42832 2005-06-16  Jim Meyering  <jim@meyering.net>
42833
42834         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
42835         when either N or S is zero.
42836
42837 2005-06-16  Derek Price  <derek@ximbiot.com>
42838
42839         * m4/bison.m4: Declare YACC & YFLAGS precious.
42840
42841 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
42842
42843         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
42844         multibyte string or pattern, fall back on unibyte matching.
42845         Problem reported by James Youngman.
42846
42847 2005-06-08  Bruno Haible  <bruno@clisp.org>
42848
42849         * modules/csharpcomp: New file.
42850         * MODULES.html.sh (C#): Add csharpcomp.
42851
42852 2005-06-08  Bruno Haible  <bruno@clisp.org>
42853
42854         * m4/csharpcomp.m4: New file, from GNU gettext.
42855
42856 2005-06-08  Bruno Haible  <bruno@clisp.org>
42857
42858         * lib/csharpcomp.h: New file, from GNU gettext.
42859         * lib/csharpcomp.c: New file, from GNU gettext.
42860         * lib/csharpcomp.sh.in: New file, from GNU gettext.
42861
42862 2005-06-08  Bruno Haible  <bruno@clisp.org>
42863
42864         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
42865         warning on mingw.
42866
42867 2005-06-07  Derek Price  <derek@ximbiot.com>
42868
42869         Sync from CVS.
42870         * lib/glob_.h: Indent nested #ifdef.
42871
42872 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
42873
42874         Sync from coreutils.
42875         Use "file name" when talking about file names, instead of "filename"
42876         or "path", as per the GNU coding standards.
42877         * lib/mkdir-p.c: Renamed from makepath.c.
42878         (make_dir_parents): Renamed from make_path.  All callers changed.
42879         * lib/mkdir-p.h: Likewise.  All includers changed.
42880         * lib/filenamecat.c: Renamed from path-concat.c.
42881         (file_name_concat): Renamed from path_concat.  All callers changed.
42882         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
42883         * lib/filenamecat.h: Likewise.  All includers changed.
42884         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
42885         in comments or local variable names.
42886         * lib/basename.c: Likewise.
42887         * lib/canonicalize.c, canonicalize.h: Likewise.
42888         * lib/dirname.c, dirname.h: Likewise.
42889         * lib/euidaccess.c: Likewise.
42890         * lib/exclude.c: Likewise
42891         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
42892         * lib/fsusage.c, fsuage.h: Likewise.
42893         * lib/fts.c, fts_.h: Likewise.
42894         * lib/getcwd.c: Likewise.
42895         * lib/getloadavg.c: Likewise.
42896         * lib/mkstemp.c: Likewise.
42897         * lib/mountlist.c, mountlist.h: Likewise.
42898         * lib/openat.c, openat.h: Likewise.
42899         * lib/readlink-stub.c: Likewise.
42900         * lib/readutmp.c, readutmp.h: Likewise.
42901         * lib/rename.c: Likewise.
42902         * lib/rmdir.c: Likewise.
42903         * lib/same.c: Likewise.
42904         * lib/savedir.c: Likewise.
42905         * lib/stripslash.c: Likewise.
42906         * lib/tempname.c: Likewise.
42907         * lib/xreadlink.c: Likewise.
42908         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
42909         All uses changed.
42910         * lib/exclude.h: Likewise.
42911
42912         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
42913         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
42914         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
42915         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
42916         * lib/pathmax.h: Include <limits.h> unconditionally, since other
42917         files have been getting away with it for years (MORE/BSD 4.3
42918         is extinct now).
42919         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
42920         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
42921
42922         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
42923         Define to 256, not 255, as per modern POSIX.
42924
42925 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
42926
42927         Sync from coreutils.
42928         Use "file name" when talking about file names, instead of "filename"
42929         or "path", as per the GNU coding standards.
42930         * MODULES.html.sh: mkdir-p renamed from makepath.
42931         filenamecat renamed from path-concat.
42932         * modules/filenamecat: Renamed from modules/path-concat.
42933         (Files): filenamecat.h and filenamecat.c renamed from
42934         path-concat.h and path-concat.c.
42935         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
42936         (Include): filenamecat.h, not path-concat.h.
42937         * modules/mkdir-p: Renamed from modules/makepath.
42938         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
42939         makepath.c.
42940         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
42941         (Include): mkdir-p.h, not makepath.h.
42942
42943 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
42944
42945         Sync from coreutils.
42946         * m4/mkdir-p.m4: Renamed from makepath.m4.
42947         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
42948         Rename files from makepath.c to mkdir-p.c, and from
42949         makepath.h to mkdir-p.h.
42950         * m4/filenamecat.m4: Renamed from path-concat.m4.
42951         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
42952         Rename files from path-concat.c to filenamecat.c,
42953         and from path-concat.h to filenamecat.h.
42954         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
42955         "file name" in local variables or comments.
42956         * m4/rename.m4: Likewise.
42957
42958 2005-06-01  Bruno Haible  <bruno@clisp.org>
42959
42960         * modules/csharpexec: New file.
42961         * MODULES.html.sh (C#): New section.
42962
42963 2005-06-01  Bruno Haible  <bruno@clisp.org>
42964
42965         * m4/csharp.m4: New file, from GNU gettext.
42966         * m4/csharpexec.m4: New file, from GNU gettext.
42967
42968 2005-06-01  Bruno Haible  <bruno@clisp.org>
42969
42970         * lib/csharpexec.h: New file, from GNU gettext.
42971         * lib/csharpexec.c: New file, from GNU gettext.
42972         * lib/csharpexec.sh.in: New file, from GNU gettext.
42973
42974 2005-05-31  Derek Price  <derek@ximbiot.com>
42975             Paul Eggert  <eggert@cs.ucla.edu>
42976
42977         Sync from cvs.
42978         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
42979
42980 2005-05-31  Derek Price  <derek@ximbiot.com>
42981             Paul Eggert  <eggert@cs.ucla.edu>
42982
42983         Sync from cvs.
42984         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
42985
42986 2005-05-29  Derek Price  <derek@ximbiot.com>
42987
42988         * config/srclist.txt (glob_.h, glob.c): Add these files.
42989
42990 2005-05-29  Derek Price  <derek@ximbiot.com>
42991
42992         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
42993         * modules/glob: New file.
42994         * modules/getlogin_r: Add link to POSIX spec in description.
42995
42996 2005-05-29  Derek Price  <derek@ximbiot.com>
42997             Paul Eggert  <eggert@cs.ucla.edu>
42998
42999         * m4/glob.m4: New file.
43000
43001 2005-05-29  Derek Price  <derek@ximbiot.com>
43002             Paul Eggert  <eggert@cs.ucla.edu>
43003
43004         * lib/glob_.h, lib/glob.c: New files.
43005
43006 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
43007
43008         * modules/fts (Files): Remove m4/inttypes-pri.m4.
43009         * modules/fts-lgpl (Depends-on): Remove gettext.
43010
43011 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
43012
43013         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
43014         and don't require gt_INTTYPES_PRI.
43015
43016 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
43017
43018         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
43019
43020         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
43021         the configuration hassle isn't worth it.
43022         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
43023         (LONGEST_MODIFIER, PRIuMAX): Remove.
43024
43025 2005-05-27  Bruno Haible  <bruno@clisp.org>
43026
43027         * lib/getlogin_r.h: Remove second include of <stddef.h>.
43028
43029 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
43030
43031         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
43032         _POSIX_PTHREAD_SEMANTICS for Solaris.
43033
43034 2005-05-25  Derek Price  <derek@ximbiot.com>
43035
43036         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
43037
43038 2005-05-25  Derek Price  <derek@ximbiot.com>
43039             Paul Eggert  <eggert@cs.ucla.edu>
43040
43041         * modules/getlogin_r, m4/getlogin_r.m4: New files.
43042         * lib/getlogin_r.c, getlogin_r.h: New files.
43043
43044 2005-05-25  Bruno Haible  <bruno@clisp.org>
43045             Derek Price  <derek@ximbiot.com>
43046
43047         * lib/getlogin_r.h: Simplify API documentation.
43048
43049 2005-05-23  Derek Price  <derek@ximbiot.com>
43050
43051         * modules/minmax (Files): Add m4/minmax.m4.
43052         (configure.ac): Add gl_MINMAX.
43053
43054 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
43055
43056         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
43057         so that unistd-safer.h (GPL'ed code) need not be included.
43058
43059 2005-05-22  Bruno Haible  <bruno@clisp.org>
43060
43061         * m4/minmax.m4: New file.
43062         Based on a patch by Derek Price <derek@ximbiot.com>.
43063
43064 2005-05-22  Bruno Haible  <bruno@clisp.org>
43065
43066         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
43067         (INT64_MIN): Fix definition.
43068         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
43069
43070         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
43071         NEED_SIGNED_INT_TYPES.
43072
43073         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
43074         HAVE_SYSTEM_INTTYPES.
43075
43076 2005-05-22  Bruno Haible  <bruno@clisp.org>
43077
43078         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
43079         Also include <sys/param.h> if it defines MIN, MAX.
43080         Based on a patch by Derek Price <derek@ximbiot.com>.
43081
43082 2005-05-21  Jim Meyering  <jim@meyering.net>
43083
43084         * modules/fts (Files): Add m4/inttypes-pri.m4.
43085         (Depends-on): Add lstat and remove gettext.  Alphabetize.
43086
43087 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
43088
43089         New fts module.
43090         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
43091         (setup_dir, free_dir): New functions.
43092         (enter_dir, leave_dir): Define trivial
43093         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
43094         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
43095         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
43096         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
43097         Move to fts-cycle.c.
43098         (fts_open): Use setup_dir.
43099         (fts_close): Use free_dir.
43100         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
43101         This adds a label and some gotos, but the alternatives were messier.
43102         Check for memory allocation failure when entering a dir.
43103         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
43104         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
43105         (FTS): New member fts_cycle, that is a union that contains the
43106         old active_dir_ht and cycle_state.  All uses changed to mention
43107         fts_cycle.ht and fts_cycle.state.
43108         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
43109         fts.c, with the following changes:
43110         (setup_dir, free_dir): New functions.
43111         (enter_dir): Now returns bool.  Return true if successful, false
43112         if memory exhausted.  All callers changed.
43113         Do not bother partly cleaning up on
43114         memory allocation failure; that is free_dir's job.
43115         However, free ad if hash_insert fails, to avoid memory leak.
43116         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
43117         fts->fts_options to see which union member to use.
43118
43119 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
43120
43121         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
43122         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
43123
43124 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
43125
43126         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
43127
43128 2005-05-20  Jim Meyering  <jim@meyering.net>
43129
43130         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
43131         Now a macro, to pacify GCC.
43132
43133 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
43134
43135         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
43136         of -1.
43137
43138 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
43139
43140         * lib/chown.c (rpl_chown): Return -1 on failure.
43141
43142 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
43143
43144         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
43145         Don't check for stddef.h.
43146         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
43147         don't use its results.
43148         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
43149         since we include them unconditionally.  Don't require
43150         AM_STDBOOL_H, since stdbool is a prerequisite.
43151         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
43152         since we assume C89 or better.
43153         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
43154         as we don't use their results.
43155         Don't check for fchdir, memmove, memset, strrchr, as we use
43156         them unconditionally.
43157         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
43158         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
43159
43160 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
43161
43162         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
43163         Include <stddef.h> unconditionally, since we assume C89 now.
43164         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
43165         * lib/fts.c: Include fts_.h first, to check interface.
43166         Do not include intprops.h; no longer needed.
43167         Include cycle-check.h and hash.h, since fts_.h no longer does.
43168         Remove unnecessary casts of closedir to void.
43169         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
43170         decide whether to decrement nlinks.
43171         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
43172         (FTS): Use struct hash_table * instead of Hash_table, so that
43173         we no longer need to include hash.h here.
43174
43175 2005-05-18  Jim Meyering  <jim@meyering.net>
43176
43177         * modules/dirfd (License): Change to LGPL.  Most of the code
43178         is already in the public domain.
43179
43180 2005-05-18  Jim Meyering  <jim@meyering.net>
43181
43182         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
43183         Reported by Yoann Vandoorselaere.
43184
43185 2005-05-17  Jim Meyering  <jim@meyering.net>
43186
43187         * m4/fts.m4: New file, from coreutils.
43188
43189 2005-05-17  Jim Meyering  <jim@meyering.net>
43190
43191         * lib/fts.c, lib/fts_.h: New files, from coreutils.
43192
43193 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
43194
43195         Sync from coreutils.
43196         * m4/unlinkdir.m4: New file.
43197
43198 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
43199
43200         Sync from coreutils.
43201         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
43202         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
43203         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
43204         White space changes only.
43205         * lib/makepath.c (make_path): Port to hosts where leading "//" is
43206         special.
43207         * lib/yesno.c: Include getline.h, not ctype.h.
43208         (yesno): Don't remove leading white space; POSIX doesn't allow it.
43209         Use getline to remove arbitrary restriction on response length.
43210
43211 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
43212
43213         * config/srclist-update: Spell out "Street" in FSF postal
43214         mail address; this is the style the FSF seems to prefer.
43215
43216         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
43217         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
43218         this updates FSF postal mail address.
43219
43220         Sync from coreutils.
43221         * modules/unlinkdir: New file.
43222         * modules/yesno (Depends-on): Add getline.
43223         * MODULES.html.sh (File system functions): Add unlinkdir.
43224
43225 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
43226
43227         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
43228         lib/strsep.h:
43229         Change the initial comment to refer to GPL, not LGPL.
43230         gnulib-tool will change it to LGPL as needed.
43231
43232         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
43233         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
43234         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
43235         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
43236         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
43237         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
43238         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
43239         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
43240         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
43241         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
43242         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
43243         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
43244         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
43245         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
43246         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
43247         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
43248         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
43249         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
43250         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
43251         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
43252         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
43253         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
43254         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
43255         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
43256         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
43257         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
43258         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
43259         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
43260         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
43261         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
43262         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
43263         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
43264         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
43265         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
43266         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
43267         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
43268         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
43269         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
43270         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
43271         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
43272         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
43273         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
43274         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
43275         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
43276         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
43277         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
43278         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
43279         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
43280         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
43281         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
43282         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
43283         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
43284         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
43285         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
43286         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
43287         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
43288         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
43289         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
43290         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
43291         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
43292         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
43293         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
43294         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
43295         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
43296         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
43297         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
43298         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
43299         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
43300         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
43301         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
43302         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
43303         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
43304         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
43305         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
43306         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
43307         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
43308         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
43309         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
43310         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
43311         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
43312         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
43313         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
43314         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
43315         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
43316         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
43317         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
43318         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
43319         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
43320         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
43321         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
43322         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
43323         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
43324         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
43325         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
43326         lib/yesno.c, lib/yesno.h:
43327         Update FSF postal mail address.
43328
43329 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
43330
43331         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
43332         tests/test-memmem.c, tests/test-stpncpy.c:
43333         Update FSF postal mail address.
43334
43335 2005-05-13  Bruno Haible  <bruno@clisp.org>
43336
43337         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
43338         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
43339         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
43340         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
43341         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
43342         Add support for 64-bit integers in the MSVC compiler.
43343
43344 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
43345
43346         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
43347
43348 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
43349
43350         * gnulib-tool (func_import): Sort and uniquify recommended includes.
43351
43352 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
43353
43354         * doc/getdate.texi (General date syntax): Don't say that date
43355         date --iso-8601=ns generates acceptable dates; it doesn't yet.
43356         Problem reported by Nic Ferrier.
43357
43358 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
43359
43360         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
43361         specified in ai_socktype. Fix invalid ai_protocol
43362         check. ai_protocol is usually set to 0 or depending on
43363         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
43364         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
43365         ai_socktype / ai_protocol in the returned addrinfo structure.
43366
43367 2005-05-10  Simon Josefsson  <jas@extundo.com>
43368
43369         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
43370         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
43371
43372 2005-05-10  Karl Berry  <karl@gnu.org>
43373
43374         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
43375         (from http://www.gnu.org/licenses).
43376         * doc/COPYING.LIB: also rename to COPYING.LESSER.
43377         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
43378         fdl.texi suffices.
43379
43380 2005-05-10  Karl Berry  <karl@gnu.org>
43381
43382         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
43383         (COPYING.DOC): remove.
43384
43385         * config/srclist-update: new FSF address.
43386
43387 2005-05-10  Derek Price  <derek@ximbiot.com>
43388
43389         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
43390         possible.
43391
43392 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
43393             Bruno Haible  <bruno@clisp.org>
43394
43395         * modules/inet_ntop: New file.
43396         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
43397         inet_ntop.
43398
43399 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
43400             Bruno Haible  <bruno@clisp.org>
43401
43402         * m4/inet_ntop.m4: New file.
43403
43404 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
43405             Bruno Haible  <bruno@clisp.org>
43406
43407         * lib/inet_ntop.h: New file.
43408         * lib/inet_ntop.c: New file, from glibc with modifications.
43409
43410 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
43411
43412         * modules/time_r (License): Change to LGPL.
43413         * modules/extensions (License): Change to LGPL.  Actually,
43414         the license is more permissive than that, but currently gnulib-tool
43415         doesn't know how to handle more-permissive licenses.
43416
43417         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
43418         Problem reported by Dave Love.
43419
43420 2005-05-08  Jim Meyering  <jim@meyering.net>
43421
43422         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
43423         blank.
43424
43425 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
43426
43427         * modules/argmatch (Depends-on): Add stdbool.
43428         * modules/backupfile (Depends-on): Likewise.
43429         * modules/chdir-long (Depends-on): Likewise.
43430         * modules/closeout (Depends-on): Likewise.
43431         * modules/cycle-check (Depends-on): Likewise.
43432         * modules/dirname (Depends-on): Likewise.
43433         * modules/fnmatch (Depends-on): Likewise.
43434         * modules/fsusage (Depends-on): Likewise.
43435         * modules/fwriteerror (Depends-on): Likewise.
43436         * modules/getcwd (Depends-on): Likewise.
43437         * modules/getloadavg (Depends-on): Likewise.
43438         * modules/hard-locale (Depends-on): Likewise.
43439         * modules/makepath (Depends-on): Likewise.
43440         * modules/mountlist (Depends-on): Likewise.
43441         * modules/nanosleep (Depends-on): Likewise.
43442         * modules/posixtm (Depends-on): Likewise.
43443         * modules/quotearg (Depends-on): Likewise.
43444         * modules/readtokens (Depends-on): Likewise.
43445         * modules/readtokens0 (Depends-on): Likewise.
43446         * modules/readutmp (Depends-on): Likewise.
43447         * modules/save-cwd (Depends-on): Likewise.
43448         * modules/strftime (Depends-on): Likewise.
43449         * modules/userspec (Depends-on): Likewise.
43450         * modules/utimecmp (Depends-on): Likewise.
43451         * modules/xgetcwd (Depends-on): Likewise.
43452         * modules/xnanosleep (Depends-on): Likewise.
43453         * modules/xstrtod (Depends-on): Likewise.
43454         * modules/yesno (Depends-on): Likewise.
43455
43456 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
43457
43458         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
43459         needless checks.
43460
43461 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
43462
43463         Merge from coreutils.  Among other things,
43464         add bulletproofing for cases where stdin, stdout, or stderr are closed.
43465         * lib/fd-safer.c: New file.
43466         * lib/fcntl-safer.h, open-safer.c: Remove.
43467         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
43468         * lib/dup-safer.c: Include unistd-safer.h first.
43469         Don't include errno.h.
43470         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
43471         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
43472         * lib/file-type.c: Rely on file-type.h change.
43473         * lib/getloadavg.c: Include unistd-safer.h.
43474         (getloadavg): Use safer open.
43475         * lib/getusershell.c: Include "stdio-safer.h".
43476         (getusershell): Use safer fopen.
43477         * lib/long-options.c (long_options): Use NULL rather than 0.
43478         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
43479         'free'.
43480         * lib/modechange.c: Likewise.
43481         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
43482         (MODE_DONE): New constant.
43483         (struct mode_change): Remove 'next' member.
43484         (make_node_op_equals): New function; like the old one of the
43485         same name, except it allocates an array.
43486         (mode_compile, mode_create_from_ref): Use it.
43487         (mode_compile): Allocate result as an array, not a linked list.
43488         Parse octal string ourself, so that we catch mistakes like "+0".
43489         (mode_adjust): Arg is an array, not a linked list.
43490         * lib/modechange.c: Include stat-macros.h, xalloc.h.
43491         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
43492         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
43493         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
43494         Remove.  This is now stat-macros.h's job.
43495         (talloc): Remove.  All callers replaced by xalloc, so that
43496         our invokers don't have to worry about reporting memory failures.
43497         (make_node_op_equals): Remove.
43498         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
43499         New constants.
43500         (struct mode_change): Moved here from modechange.h.
43501         (mode_append_entry): Remove.
43502         (mode_compile): Remove MASKED_OPS arg, since it encouraged
43503         apps to have incorrect behavior.  Use simpler algorithm for head
43504         and tail.  Don't futz with umask; that's now the job of mode_adjust.
43505         Detect more invalid usages rather than having somewhat-random behavior.
43506         Don't insert an "a=" action, as that leads to incorrect behavior.
43507         (mode_compile, mode_create_from_ref): Return NULL on error instead
43508         of an enum, since now there's only one way to have an error.  All
43509         callers changed.
43510         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
43511         at the correct time.  Simplify calculation of "+u" and its ilk.
43512         Don't mishandle "+X".
43513         (mode_free): Remove "register" and localize decls.
43514         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
43515         (struct mode_change): Move to modechange.c; callers don't
43516         need to see this stuff.
43517         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
43518         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
43519         (mode_change, mode_adjust): Reflect the new signatures noted above.
43520         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
43521         that might redefine system include files.
43522         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
43523         (my_usleep): Use NULL rather than (void *) 0.
43524         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
43525         Use siginterrupt to specify that system calls should be interrupted.
43526         (rpl_nanosleep): Move initialization of suspended closer to call of
43527         my_usleep.
43528         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
43529         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
43530         (desirable_utmp_entry): New function.
43531         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
43532         using x2nrealloc, to simplify logic.
43533         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
43534         size calculation.  Do not assume utmp file is a regular file.
43535         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
43536         (READ_UTMP_CHECK_PIDS): New constant.
43537         * lib/save-cwd.c: Include unistd-safer.h.
43538         (save_cwd): Use fd_safer.
43539         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
43540         [!_LIBC] Include "stat-macros.h" instead.
43541         * lib/unistd-safer.h (fd_safer): New decl.
43542
43543 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
43544
43545         * modules/getloadavg (Depends-on): Add unistd-safer.
43546         * modules/getusershell (Depends-on): Add stdio-safer.
43547         * modules/lstat (Depends-on): Remove xalloc.
43548         * modules/mkstemp (Depends-on): Add stat-macros.
43549         * modules/modechange (Depends-on): Remove xstrtol.
43550         Add stat-macros, xalloc.
43551         * modules/save-cwd (Depends-on): Add unistd-safer.
43552         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
43553         * modules/unistd-safer (Files): Add lib/fd-safer.c
43554         (Makefile.am): Remove lib_SOURCES.
43555
43556         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
43557         Remove fcntl-safer; unistd-safer supersedes it.
43558
43559 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
43560
43561         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
43562         AC_HEADER_STAT.
43563         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
43564         (gl_PREREQ_CHOWN): Remove.
43565         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
43566         it.  Don't require AC_HEADER_STAT.
43567         (gl_PREREQ_LSTAT): Remove.
43568         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
43569         Don't require AC_HEADER_STAT.
43570         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
43571         (gl_PREREQ_RMDIR): Remove.
43572         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
43573         mention stat-macros.h or AC_HEADER_STAT, since we'll make
43574         the stat-macros module a prerequisite.
43575         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
43576         * m4/filemode.m4 (gl_FILEMODE): Likewise.
43577         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
43578         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
43579         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
43580         variable names.
43581         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
43582         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
43583         variable prefixes.
43584         * m4/fcntl-safer.m4: Remove.
43585         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
43586         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
43587         Invoke gl_PREREQ_FD_SAFER.
43588         (gl_PREREQ_FD_SAFER): New macro.
43589         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
43590         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
43591         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
43592         Remove duplicate call to AC_LIBOBJ(readutmp).
43593         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
43594
43595         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
43596         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
43597
43598 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
43599
43600         * MODULES.html.sh (Misc): Add byteswap.
43601
43602 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
43603
43604         * modules/getcwd (Depends-on): Add extensions.
43605         * modules/openat (Depends-on): Likewise.
43606
43607 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
43608
43609         * modules/byteswap: New file.
43610
43611 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
43612
43613         * m4/byteswap.m4: New file.
43614
43615 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
43616
43617         * lib/byteswap_.h: New file.
43618
43619 2005-04-25  Karl Berry  <karl@gnu.org>
43620
43621         * m4/gettext.m4: Update from GNU gettext 0.14.4.
43622
43623 2005-04-25  Albert Chin  <china@thewrittenword.com>
43624
43625         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
43626         Toolkit C bug.
43627
43628 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
43629
43630         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
43631         (func_ln_if_changed) Remove forcibly for no error message
43632         in case file does not exist.
43633
43634 2005-04-19  Simon Josefsson  <jas@extundo.com>
43635
43636         * gnulib-tool (Options): Make --symlink mean --symbolic.
43637
43638 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
43639
43640         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
43641
43642 2005-04-16  Simon Josefsson  <jas@extundo.com>
43643
43644         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
43645
43646 2005-04-15  Simon Josefsson  <jas@extundo.com>
43647
43648         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
43649
43650 2005-04-15  Simon Josefsson  <jas@extundo.com>
43651
43652         * gnulib-tool: Rename --symlink to --symbolic.
43653
43654 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
43655
43656         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
43657         symbolic links to files instead of copying/moving.  Add --aux-dir,
43658         specifying directory relative --dir where auxiliary build tools
43659         are placed.
43660
43661 2005-04-14  Bruno Haible  <bruno@clisp.org>
43662
43663         * modules/allocsa (License): Change to LGPL.
43664         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
43665
43666 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
43667
43668         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
43669         that "UTC +1 second" continues to work.  Problem reported
43670         by Dmitry V. Levin.
43671         (relunit_snumber): New rule.
43672         (relunit): Use it.
43673
43674 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
43675
43676         * lib/getdate.y (universal_time_zone_table): New constant.
43677         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
43678         universal_time_zone_table.
43679         (lookup_zone): Prefer universal_time_zone_table to
43680         local_time_zone_table, so that "GMT" time stamps are allowed in
43681         London during the summer.  Problem reported by Ian Abbott.
43682
43683 2005-04-12  Jim Meyering  <jim@meyering.net>
43684
43685         * lib/human.c (humblock): Set *options even when returning due to
43686         xstrtoumax conversion failure.  Thanks to a used-uninitialized
43687         warning from gcc-4.
43688
43689 2005-04-09  Jim Meyering  <jim@meyering.net>
43690
43691         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
43692         -Wuninitialized: initialize tm0.tm_year.
43693
43694 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
43695
43696         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
43697         count, since there's no maximum.  All uses changed.
43698         Add member dsts_seen.
43699         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
43700         not being INT_MAX.
43701         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
43702         Use pc_rels_seen to decide whther a date is absolute.
43703
43704         * lib/getdate.y (number): Don't overwrite year.
43705         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
43706         check.
43707
43708 2005-04-02  Simon Josefsson  <jas@extundo.com>
43709
43710         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
43711         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
43712
43713 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
43714
43715         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
43716         where no absolute path name can be longer than PATH_MAX.
43717
43718 2005-03-27  Jim Meyering  <jim@meyering.net>
43719
43720         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
43721
43722 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
43723
43724         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
43725         "one's complement" -> "ones' complement" in comment, as per Knuth.
43726         "value of type" -> "type or expression" in comment.
43727         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
43728
43729 2005-03-26  Jim Meyering  <jim@meyering.net>
43730
43731         Comment nits.
43732         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
43733         Correct typos: s/or/of/.
43734
43735 2005-03-26  Jim Meyering  <jim@meyering.net>
43736
43737         * modules/check-include-files: Move to ../ and rename to...
43738         * check-module: ...this.
43739
43740 2005-03-25  Jim Meyering  <jim@meyering.net>
43741
43742         * modules/xvasprintf (Files): Add xalloc.h.
43743
43744 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
43745
43746         * modules/gettext (Files): config/config.rpath ->
43747         build-aux/config.rpath
43748         * modules/iconv (Files): Likewise.
43749         Problem reported by Oskar Liljeblad.
43750
43751 2005-03-23  Jim Meyering  <jim@meyering.net>
43752
43753         * modules/check-include-files: New script to check for
43754         missing dependencies, multiple includes, etc.
43755
43756         * modules/c-strtold (Depends-on): Add xalloc.
43757         * modules/c-strtod (Depends-on): Add xalloc.
43758         * modules/hash (Depends-on): Add xalloc.
43759         (Files): Remove lib/xalloc.h.
43760
43761         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
43762         * modules/userspec (Files): Add lib/inttostr.h.
43763
43764 2005-03-23  Jim Meyering  <jim@meyering.net>
43765
43766         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
43767
43768 2005-03-22  Jim Meyering  <jim@meyering.net>
43769
43770         * modules/stat-macros: New module.
43771         * modules/canonicalize, modules/euidaccess, modules/file-type,
43772         * modules/filemode, modules/lchown, modules/makepath,
43773         * modules/rmdir, modules/stat: Depend on new stat-macros module
43774         rather than listing lib/stat-macros.h manually.
43775         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
43776
43777 2005-03-22  Jim Meyering  <jim@meyering.net>
43778
43779         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
43780
43781 2005-03-22  Bruno Haible  <bruno@clisp.org>
43782
43783         * config/srclist.txt: Replace target directory 'config' with
43784         'build-aux'.
43785         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
43786         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
43787         ../build-aux/.
43788
43789 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
43790
43791         * modules/chdir-long (Depends-on): Add mempcpy.
43792
43793         * modules/acl, modules/backupfile, modules/c-strtod,
43794         modules/c-strtold, modules/canon-host, modules/canonicalize,
43795         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
43796         modules/exclude, modules/exitfail, modules/file-type,
43797         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
43798         modules/getdate, modules/getline, modules/getpagesize,
43799         modules/getpass, modules/getugroups, modules/group-member,
43800         modules/hard-locale, modules/hash, modules/human, modules/idcache,
43801         modules/inttostr, modules/long-options, modules/makepath,
43802         modules/md5, modules/memcasecmp, modules/memcoll,
43803         modules/modechange, modules/mountlist, modules/path-concat,
43804         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
43805         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
43806         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
43807         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
43808         modules/strftime, modules/strndup, modules/strverscmp,
43809         modules/timespec, modules/unlocked-io, modules/userspec,
43810         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
43811         modules/yesno:
43812         Remove lib_SOURCES line from Makefile.am section, as this is now
43813         done automatically by the corresponding Autoconf macro.
43814
43815 2005-03-21  Jim Meyering  <jim@meyering.net>
43816
43817         Changes imported from coreutils.
43818
43819         * lib/cycle-check.c: Don't include xalloc.h.
43820
43821         * lib/path-concat.c: Don't include assert.h.
43822         (path_concat): Remove assertion that would have triggered
43823         for ABASE starting with more than one slash.
43824         Reported by Andreas Schwab.
43825
43826         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
43827         properly when ABASE is an absolute file name.
43828         Correct the description of this function.
43829         Include <assert.h>.
43830         Add an assertion and a test driver.
43831         This fixes a bug introduced on 2004-07-02.
43832         Andreas Schwab reported the resulting failure of cp --parents:
43833         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
43834
43835 2005-03-21  Jim Meyering  <jim@meyering.net>
43836
43837         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
43838         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
43839
43840 2005-03-21  Jim Meyering  <jim@meyering.net>
43841         and  Paul Eggert  <eggert@cs.ucla.edu>
43842
43843         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
43844         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
43845         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
43846         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
43847         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
43848         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
43849         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
43850         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
43851         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
43852         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
43853         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
43854         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
43855         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
43856         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
43857         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
43858         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
43859         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
43860         for these modules.
43861
43862 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
43863
43864         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
43865         (which shouldn't happen), generate nothing instead of returning 0
43866         immediately, so that nstrftime (NULL, ...) doesn't return 0.
43867
43868 2005-03-16  Bruno Haible  <bruno@clisp.org>
43869
43870         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
43871         HAVE_LONGLONG_64BIT.
43872
43873 2005-03-16  Bruno Haible  <bruno@clisp.org>
43874
43875         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
43876         HAVE_LONGLONG_64BIT.
43877
43878 2005-03-16  Bruno Haible  <bruno@clisp.org>
43879
43880         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
43881         HAVE_LONGLONG_64BIT.
43882
43883 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
43884
43885         * lib/strftime.c (my_strftime): Prepend space to format so that we can
43886         reliably distinguish strftime failure from empty output on POSIX
43887         hosts.
43888
43889 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
43890
43891         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
43892         (iconv_string): Don't guess a size-zero buffer, as that might cause
43893         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
43894         result would be 'too large', where 'too large' is (heuristically)
43895         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
43896         overflow concerns.  This will prevent some unwanted malloc failures
43897         when the inputs are very large.
43898
43899 2005-03-15  Karl Berry  <karl@gnu.org>
43900
43901         * config/srclist.txt (config.rpath): from gettext.
43902         * config/config.rpath: update.
43903
43904 2005-03-15  Bruno Haible  <bruno@clisp.org>
43905
43906         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
43907         to 'negate'.
43908
43909         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
43910         variable.
43911
43912         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
43913         results.
43914
43915 2005-03-14  Simon Josefsson  <jas@extundo.com>
43916
43917         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
43918         <fx@gnu.org>.
43919
43920 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
43921
43922         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
43923         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
43924         intprops.h.
43925         * lib/strtol.c: Likewise.
43926
43927 2005-03-14  Jim Meyering  <jim@meyering.net>
43928
43929         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
43930         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
43931         to be nonzero so that we (and caller) can detect the difference
43932         between a valid zero-length expansion and an error return, even
43933         when the underlying strftime fails before writing anything into
43934         that location.
43935
43936 2005-03-14  Bruno Haible  <bruno@clisp.org>
43937
43938         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
43939         Update from GNU gettext 0.14.3.
43940
43941 2005-03-10  Jim Meyering  <jim@meyering.net>
43942
43943         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
43944
43945 2005-03-10  Jim Meyering  <jim@meyering.net>
43946
43947         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
43948         so that this module works on systems without fchdir.
43949
43950 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
43951
43952         Factor int-properties macros into a single file, except for
43953         glibc-related files.
43954         * lib/intprops.h: New file.
43955         * lib/getloadavg.c: Include it instead of limits.h.
43956         (INT_STRLEN_BOUND): Remove.
43957         * lib/human.c: Include intprops.h.
43958         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
43959         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
43960         302/1000.
43961         * lib/inttostr.h: Include intprops.h instead of limits.h.
43962         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
43963         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
43964         for consistency with intprops.h.
43965         (time_t_is_integer, twos_complement_arithmetic): Use them.
43966         * lib/sig2str.h: Include <signal.h>, intprops.h.
43967         (INT_STRLEN_BOUND): Remove.
43968         * lib/strftime.c (TYPE_SIGNED): Remove.
43969         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
43970         * lib/strtol.c: Adjust comments to match intprops.h.
43971         * lib/userspec.c: Include intprops.h.
43972         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
43973         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
43974         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
43975         instead of rolling our own expressions.
43976         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
43977
43978         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
43979         instead of int.
43980         (my_strftime): Do not mishandle years close to INT_MAX, by doing
43981         the right thing even if adding 1900 would overflow.  Similarly
43982         for tm_mon + 1 and tm_yday + 1.
43983         Make %Y always equivalent to %C%y, and similarly for %G and %g.
43984         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
43985         (DO_SIGNED_NUMBER): New macro.
43986         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
43987
43988 2005-03-07  Bruno Haible  <bruno@clisp.org>
43989
43990         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
43991
43992 2005-03-07  Bruno Haible  <bruno@clisp.org>
43993
43994         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
43995
43996 2005-03-04  Derek R. Price  <derek@ximbiot.com>
43997
43998         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
43999         (func_import): Only replace files via --import when they have actually
44000         changed.
44001
44002 2005-03-03  Derek R. Price  <derek@ximbiot.com>
44003
44004         * m4/mmap-anon.m4: New file.
44005         * m4/pagealign_alloc.m4: New file.
44006
44007 2005-03-03  Derek R. Price  <derek@ximbiot.com>
44008             Bruno Haible  <bruno@clisp.org>
44009
44010         * modules/pagealign_alloc: New file.
44011         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
44012
44013 2005-03-03  Derek R. Price  <derek@ximbiot.com>
44014             Bruno Haible  <bruno@clisp.org>
44015
44016         * lib/pagealign_alloc.h: New file.
44017         * lib/pagealign_alloc.c: New file.
44018
44019 2005-03-03  Bruno Haible  <bruno@clisp.org>
44020
44021         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
44022         Use an all-permissive copyright notice, recommended by RMS.
44023
44024 2005-03-02  Bruno Haible  <bruno@clisp.org>
44025
44026         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
44027         of AIX, the replacement has to be done only after <string.h> is
44028         included, therefore not in config.h. stpncpy.h does the replacement,
44029         and stpncpy.c uses it.
44030
44031 2005-03-02  Bruno Haible  <bruno@clisp.org>
44032
44033         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
44034         stpncpy.c uses it.
44035
44036 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
44037
44038         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
44039         The workaround isn't strictly needed for POSIX conformance, and
44040         it's too much of a pain to configure and maintain.  We'll ask
44041         people to fix their kernels instead.
44042         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
44043         (NANOSLEEP_BUG_WORKAROUND): Remove.
44044         (xnanosleep): Remove the workaround.
44045
44046 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
44047
44048         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
44049         Reported by Derek Price.
44050         (Include): Add "timespec.h".
44051
44052         * modules/xnanosleep (Depends-on): Remove gethrxtime.
44053
44054 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
44055
44056         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
44057         to detect nanosleep bug.
44058
44059 2005-03-01  Bruno Haible  <bruno@clisp.org>
44060
44061         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
44062
44063 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
44064
44065         * modules/gethrxtime: New file.
44066         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
44067         (Depends-on): Add gethrxtime.
44068         (configure.ac): Add gl_XNANOSLEEP.
44069         (Makefile.am): Remove lib_SOURCES line.
44070
44071 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
44072
44073         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
44074         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
44075
44076 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
44077
44078         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
44079         * lib/timespec.h (gettime): Return void, since it always
44080         succeeds now.  All uses changed.
44081         * lib/gettime.c (gettime) Likewise.
44082         [HAVE_NANOTIME]: Prefer nanotime.
44083         Assume gettimeofday succeeds, as POSIX requires.
44084         Assime time () succeeds, since other code already does.
44085         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
44086         (timespec_subtract): Remove.
44087         (NANOSLEEP_BUG_WORKAROUND): New constant.
44088         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
44089         things considerably.  Use it only on GNU/Linux hosts, since the
44090         workaround shouldn't be needed elsewhere.
44091
44092 2005-02-24  Bruno Haible  <bruno@clisp.org>
44093
44094         * modules/gettext (Files): Add m4/glibc2.m4.
44095
44096 2005-02-24  Bruno Haible  <bruno@clisp.org>
44097
44098         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
44099         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
44100         * m4/progtest.m4:
44101         Update from GNU gettext 0.14.2.
44102         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
44103
44104 2005-02-24  Bruno Haible  <bruno@clisp.org>
44105
44106         * lib/localcharset.c: Update from GNU gettext 0.14.2.
44107         * lib/config.charset: Update from GNU gettext 0.14.2.
44108
44109 2005-02-24  Bruno Haible  <bruno@clisp.org>
44110
44111         * lib/gettext.h: Update from GNU gettext 0.14.2.
44112
44113 2005-02-23  Simon Josefsson  <jas@extundo.com>
44114
44115         * m4/iconvme.m4: New file.
44116
44117 2005-02-23  Jim Meyering  <jim@meyering.net>
44118
44119         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
44120         change.
44121         Thanks to Bruno Haible for catching it.
44122
44123 2005-02-22  Simon Josefsson  <jas@extundo.com>
44124
44125         * modules/iconvme: New file.
44126
44127         * MODULES.html.sh: Add iconvme.
44128
44129 2005-02-22  Simon Josefsson  <jas@extundo.com>
44130
44131         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
44132
44133 2005-02-22  Simon Josefsson  <jas@extundo.com>
44134
44135         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
44136
44137 2005-02-22  Jim Meyering  <jim@meyering.net>
44138
44139         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
44140         s/ifndef/ifdef/.
44141
44142 2005-02-20  Neil Conway  <neilc@samurai.com>
44143
44144         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
44145         returned by OSX/Darwin if the specified buffer is not large
44146         enough for the hostname.
44147
44148 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44149
44150         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
44151         pass it to _help, otherwise the latter coredumps trying to
44152         dereference state.root_argp.
44153
44154 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
44155
44156         * modules/chdir-long (Depends-on): Add memrchr.
44157         * modules/memrchr (Files): Add lib/memrchr.h.
44158         (Include): "memrchr.h".
44159
44160 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
44161
44162         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
44163
44164 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
44165
44166         * lib/memrchr.h: New file.
44167         * lib/chdir-long.c: Include it.
44168         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
44169         Don't bother including stddef.h.
44170
44171 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
44172
44173         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
44174         inclusion.
44175         Include <sys/types.h>, for dev_t.
44176         (ME_DUMMY, ME_REMOTE): Move from here....
44177         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
44178         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
44179         Dmitry V. Levin.
44180         Include mountlist.h first, to test the interface.
44181
44182 2005-01-29  Bruno Haible  <bruno@clisp.org>
44183
44184         * lib/progname.c (program_name): Initialize.
44185         Needed when linking statically on MacOS X.
44186
44187 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
44188
44189         Sync from coreutils.
44190         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
44191         (Depends-on): Add c-strtod.
44192         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
44193
44194 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
44195
44196         Sync from coreutils.
44197         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
44198
44199         Remove files that are specific to coreutils.
44200         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
44201
44202 2005-01-28  Bruno Haible  <bruno@clisp.org>
44203
44204         * modules/javacomp: New file.
44205         * MODULES.html.sh (Java): Add javacomp.
44206
44207 2005-01-28  Bruno Haible  <bruno@clisp.org>
44208
44209         * m4/javacomp.m4: New file, from GNU gettext.
44210
44211 2005-01-28  Bruno Haible  <bruno@clisp.org>
44212
44213         * lib/javacomp.sh.in: New file, from GNU gettext.
44214         * lib/javacomp.h: New file, from GNU gettext.
44215         * lib/javacomp.c: New file, from GNU gettext.
44216
44217 2005-01-26  Simon Josefsson  <jas@extundo.com>
44218
44219         * lib/gai_strerror.c: Use GPL in header.
44220
44221 2005-01-26  Bruno Haible  <bruno@clisp.org>
44222
44223         * modules/javaexec: New file.
44224         * MODULES.html.sh (Java): Add javaexec.
44225
44226 2005-01-26  Bruno Haible  <bruno@clisp.org>
44227
44228         * m4/javaexec.m4: New file, from GNU gettext.
44229
44230 2005-01-26  Bruno Haible  <bruno@clisp.org>
44231
44232         * lib/javaexec.sh.in: New file, from GNU gettext.
44233         * lib/javaexec.h: New file, from GNU gettext.
44234         * lib/javaexec.c: New file, from GNU gettext.
44235
44236 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44237
44238         * modules/lchown (Depends-on): Remove lchown.h
44239
44240 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44241
44242         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
44243         must be defined if the header file was not found, in order
44244         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
44245
44246 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44247
44248         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
44249         initializers for struct pentry_state.
44250         (__argp_error): Check return value of __asprintf
44251         (__argp_failure): Translate error message
44252
44253         * lib/argp-parse.c: Removed braces around the expansion of N_()
44254
44255 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
44256
44257         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
44258         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
44259         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
44260         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
44261         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
44262         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
44263         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
44264         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
44265         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
44266         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
44267         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
44268         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
44269         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
44270         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
44271         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
44272         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
44273         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
44274         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
44275         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
44276         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
44277         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
44278         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
44279         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
44280         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
44281         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
44282         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
44283         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
44284         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
44285         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
44286         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
44287         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
44288         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
44289         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
44290         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
44291         xstrtol.m4, xstrtoumax.m4, yesno.m4:
44292         Use an all-permissive copyright notice, recommended by RMS.
44293
44294 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
44295
44296         * modules/chdir-long (Depends-on): Remove mempcpy.
44297
44298 2005-01-21  Jim Meyering  <jim@meyering.net>
44299
44300         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
44301         same value as for Solaris 9.
44302
44303         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
44304         component length.  This included changing the parameter to be
44305         of type `char *' rather than `char const *'.
44306         * lib/chdir-long.h (chdir_long): Update prototype.
44307
44308         * lib/openat.c (fdopendir, fstatat): New functions.
44309         * lib/openat.h: Include headers required for use of DIR and struct
44310         stat.
44311         [AT_SYMLINK_NOFOLLOW]: Define.
44312         (fdopendir, fstatat): Add prototypes.
44313
44314 2005-01-21  Bruno Haible  <bruno@clisp.org>
44315
44316         * modules/classpath: New file.
44317         * MODULES.html.sh (Java): Add classpath.
44318
44319 2005-01-21  Bruno Haible  <bruno@clisp.org>
44320
44321         * lib/classpath.h: New file, from GNU gettext.
44322         * lib/classpath.c: New file, from GNU gettext.
44323
44324 2005-01-20  Simon Josefsson  <jas@extundo.com>
44325
44326         * modules/version-etc-fsf: New file.
44327
44328 2005-01-20  Simon Josefsson  <jas@extundo.com>
44329
44330         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
44331         * lib/version-etc.c: Remove version_etc_copyright.
44332         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
44333         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
44334
44335 2005-01-20  Simon Josefsson  <jas@extundo.com>
44336
44337         * lib/base64.h (isbase64): Add.
44338
44339         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
44340         using a unsigned prototype, don't inline.
44341         (base64_decode): Use it.
44342
44343 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
44344
44345         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
44346         it.
44347
44348 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
44349
44350         * lib/save-cwd.c (save_cwd): Remove code to support the case
44351         where fchdir is missing or flaky.
44352
44353 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
44354
44355         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
44356
44357 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
44358
44359         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
44360         AC_LIBSOURCES now does this.
44361         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
44362         with new ullong_max module.
44363
44364 2005-01-19  Bruno Haible  <bruno@clisp.org>
44365
44366         * modules/sh-quote: New file.
44367         * MODULES.html.sh (Executing programs): Add sh-quote.
44368
44369 2005-01-19  Bruno Haible  <bruno@clisp.org>
44370
44371         * lib/sh-quote.h: New file, from GNU gettext.
44372         * lib/sh-quote.c: New file, from GNU gettext.
44373
44374 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
44375
44376         Merge from coreutils.
44377         * m4/ullong_max.m4: New file.
44378         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
44379         (gl_MACROS): Assume localeconv exists.
44380
44381 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
44382
44383         Merge changes from coreutils, as described below in several
44384         changelogs dated today.
44385
44386         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
44387         (O_DIRECTORY): Remove; not needed here, since "." must be
44388         a directory.  All uses removed.
44389         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
44390         universal on Suns, and we also need to test for IRIX.
44391         Revamp code to use 'if' rather than '#if'.
44392         Avoid unnecessary comparison of cwd->desc to 0.
44393
44394         * lib/utimens.c (futimens): Robustify the previous patch, by checking
44395         for known valid error numbers rather than observed invalid ones.
44396
44397 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
44398
44399         * modules/ullong_max: New file.
44400
44401         * modules/chdir-long, modules/openat: New files.
44402         * modules/save-cwd (Depends-on): Depend on chdir-long.
44403         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
44404
44405 2005-01-18  Jim Meyering  <jim@meyering.net>
44406
44407         Merge from coreutils.
44408         * m4/chdir-long.m4, m4/openat.m4: New files.
44409         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
44410         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
44411         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
44412         is sane and DOES follow symlinks.  Besides, testing 20 different
44413         systems found no broken chown implementations.
44414         Prompted by a change in rsync's copy of this macro.
44415         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
44416
44417         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
44418
44419         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
44420         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
44421         NULL-means-set-to-current-time semantics.
44422         Remove temporary file immediately, rather than waiting
44423         for configure's at-exit trap code to do it.
44424
44425 2005-01-18  Jim Meyering  <jim@meyering.net>
44426
44427         * lib/version-etc.c (version_etc_copyright): Update copyright date.
44428
44429         * lib/utimens.c (futimens): Account for the fact that futimes
44430         can also fail with errno == ENOSYS or errno == ENOENT.
44431         Patch from Dmitry V. Levin.
44432
44433         Change the name of the robust chdir function from chdir to chdir_long.
44434         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
44435         (restore_cwd): Use chdir_long, not chdir.
44436         * lib/chdir-long.c: Renamed from chdir.c.
44437         * lib/chdir-long.h: Renamed from chdir.h.
44438         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
44439         Hurd.
44440
44441 2005-01-18  Bruno Haible  <bruno@clisp.org>
44442
44443         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
44444         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
44445         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
44446         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
44447         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
44448         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
44449         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
44450         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
44451         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
44452         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
44453         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
44454         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
44455         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
44456         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
44457         Use an all-permissive copyright notice, recommended by RMS.
44458
44459 2005-01-18  Bob Proulx  <bob@proulx.com>
44460
44461         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
44462         simplify offsetof() macro construct to avoid compile failure with
44463         native HP-UX 11.0 ANSI C compiler.
44464
44465 2005-01-17  Bruno Haible  <bruno@clisp.org>
44466
44467         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
44468         redundant because stpncpy.m4 takes care of it.
44469
44470 2005-01-17  Bruno Haible  <bruno@clisp.org>
44471
44472         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
44473
44474 2005-01-17  Bruno Haible  <bruno@clisp.org>
44475
44476         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
44477         used.
44478
44479 2005-01-17  Bruno Haible  <bruno@clisp.org>
44480
44481         * lib/fwriteerror.h (fwriteerror): Change specification to include
44482         fclose.
44483         * lib/fwriteerror.c: Include <stdbool.h>.
44484         (fwriteerror): At the end, close the file stream. Record whether
44485         stdout was already closed.
44486
44487 2005-01-17  Bruno Haible  <bruno@clisp.org>
44488
44489         * lib/execute.c (environ): Declare if needed.
44490         * lib/pipe.c (environ): Likewise.
44491         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
44492
44493 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44494
44495         * modules/argp: Depend on vsnprintf
44496
44497 2005-01-10  Jim Meyering  <jim@meyering.net>
44498
44499         * modules/closeout (Depends-on): Add atexit.
44500
44501 2005-01-06  Bruno Haible  <bruno@clisp.org>
44502
44503         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
44504
44505 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
44506
44507         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
44508         definitions to be after all include files, to avoid collisions.
44509         Problem reported by Bob Proulx.
44510
44511 2005-01-04  Jim Meyering  <jim@meyering.net>
44512
44513         Changes imported from coreutils.
44514         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
44515         as the mkstemp template, use a temporary directory and an
44516         8.3-friendly template to avoid trouble on systems like DJGPP.
44517         Reported by Juan M. Guerrero via Stepan Kasal.
44518         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
44519         close. Remove the temporary directory right away, rather than waiting
44520         for configure's at-exit trap code to do it.
44521         Suggestion from Stepan Kasal.
44522
44523 2005-01-01  Simon Josefsson  <jas@extundo.com>
44524
44525         * gnulib-tool: Print #include directives when --import'ing.
44526
44527 2004-12-28  Simon Josefsson  <jas@extundo.com>
44528
44529         * tests/test-base64.c: Include required header files.  Remove
44530         unused variables.
44531
44532 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
44533
44534         * modules/error (Depends-on): Remove gettext.
44535
44536 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
44537
44538         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
44539         not needed.  This removes a dependency on the gettext module.
44540         [defined _LIBC]: Do not include <libintl.h>; not needed.
44541
44542 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
44543
44544         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
44545         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
44546
44547 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
44548
44549         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
44550         HAVE_DECL_STRTOLD.
44551
44552 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
44553
44554         * modules/getdate (Depends-on): Remove alloca-opt.
44555
44556 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
44557
44558         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
44559
44560 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
44561
44562         * lib/argp-parse.c: Include <stddef.h>.
44563         (alignof, alignto): New macros.
44564         (parser_init): Don't assume that void * is aligned sufficiently
44565         for struct option.
44566
44567         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
44568         need to extend the stack.
44569         (YYINITDEPTH): New macro, so that the initial stack isn't overly
44570         large.
44571
44572 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44573
44574         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
44575
44576 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
44577
44578         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
44579         (2004-10-24) change.  Apparently this was a false alarm.
44580
44581         * modules/getdate: Depend on alloca-opt, not alloca.
44582
44583 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
44584
44585         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
44586         Remove now-obsolete comment about AIX.
44587         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
44588         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
44589         (YYMAXDEPTH): New macro.
44590
44591 2004-12-18  Simon Josefsson  <jas@extundo.com>
44592
44593         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
44594
44595 2004-12-18  Bruno Haible  <bruno@clisp.org>
44596
44597         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
44598
44599 2004-12-18  Bruno Haible  <bruno@clisp.org>
44600
44601         * lib/fatal-signal.c (fatal_signals): Make non-const.
44602         (init_fatal_signals): New function.
44603         (uninstall_handlers, install_handlers): Ignore signals that were set to
44604         SIG_IGN.
44605         (at_fatal_signal): Call init_fatal_signals.
44606         (init_fatal_signal_set): Likewise. Ignore signals that were set to
44607         SIG_IGN.
44608         Reported by Paul Eggert.
44609
44610 2004-12-18  Bruno Haible  <bruno@clisp.org>
44611
44612         * doc/alloca.texi: New file.
44613         * doc/alloca-opt.texi: New file.
44614
44615 2004-12-17  Jim Meyering  <jim@meyering.net>
44616
44617         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
44618         Otherwise, install-sh could exit with improper exit status when
44619         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
44620
44621 2004-12-16  Simon Josefsson  <jas@extundo.com>
44622
44623         * tests/test-base64.c: Add license.
44624
44625 2004-12-15  Stepan Kasal  <address@hidden>
44626
44627         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
44628
44629 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
44630
44631         * modules/getcwd (Files): Add m4/d-ino.m4.
44632         Suggested by Mark D. Baushke.
44633
44634 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
44635
44636         * lib/getdate.y (textint): New member "negative".
44637         (time_zone_hhmm): New function.
44638         Expect 14 shift-reduce conflicts, not 13.
44639         (o_colon_minutes): New rule.
44640         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
44641         (yylex): Set the "negative" member of signed numbers.
44642
44643 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
44644
44645         * doc/getdate.texi (Time of day items, Time zone items):
44646         Describe new formats +00:00, UTC+00:00.
44647
44648 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
44649
44650         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
44651         spurious "-l"s.  Problem reported by Stepan Kasal.
44652
44653 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
44654
44655         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
44656         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
44657
44658 2004-12-04  Simon Josefsson  <jas@extundo.com>
44659
44660         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
44661         Vandoorselaere <yoann@prelude-ids.org>.
44662
44663 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
44664
44665         Changes imported from coreutils.
44666         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
44667         exist.
44668         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
44669
44670 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
44671
44672         Changes imported from coreutils.
44673         * lib/hard-locale.c: Assume <locale.h> exists.
44674         Include "strdup.h".
44675         (GLIBC_VERSION): New macro.
44676         (hard_locale): Assume setlocale exists.
44677         Rewrite to avoid #ifdef.
44678         Use strdup rather than malloc + strcpy.
44679         * lib/human.c: Assume <locale.h> exists.
44680         (human_readable): Assume localeconv exists.
44681
44682 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
44683
44684         * modules/hard-locale (Depends-on): Add strdup.
44685
44686 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
44687
44688         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
44689         convert T2, not T.  (Imported from libc.)
44690
44691 2004-11-30  Simon Josefsson  <jas@extundo.com>
44692
44693         * modules/restrict (License): Change to LGPL.
44694
44695 2004-11-30  Simon Josefsson  <jas@extundo.com>
44696
44697         * m4/restrict.m4: Add copyright and copying conditions.
44698
44699 2004-11-30  Simon Josefsson  <jas@extundo.com>
44700
44701         * m4/base64.m4: New file.
44702
44703 2004-11-30  Simon Josefsson  <jas@extundo.com>
44704
44705         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
44706         base64.
44707
44708         * tests/test-base64.c: New file.
44709
44710         * modules/base64: New file.
44711
44712 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
44713
44714         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
44715         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
44716
44717         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
44718
44719 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
44720
44721         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
44722         (__getcwd.c): Don't restore errno; glibc doesn't.
44723         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
44724         first, falling back to our code only if its results look suspicious.
44725         Ensure that the resulting buffer is only as large as necessary.
44726
44727         * lib/readutmp.c: Include readutmp.h first.
44728         Include <errno.h>, since readutmp.h no longer does that.
44729         * lib/readutmp.h: Don't include <errno.h>,
44730         <sys/param.h>, <time.h>; not needed to establish interface.
44731         (errno): Remove decl.
44732         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
44733         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
44734         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
44735
44736 2004-11-28  Simon Josefsson  <jas@extundo.com>
44737
44738         * lib/base64.h, base64.c: New file.
44739
44740 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
44741
44742         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
44743
44744 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
44745
44746         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
44747         (Depends-on): Remove pathmax, same.  Add mempcpy.
44748         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
44749         (Makefile.am): Append getcwd.h to lib_SOURCES.
44750         (Include): Add getcwd.h.
44751         (Maintainer): Change from Jim Meyering to "all, glibc",
44752         since getdate now uses intended-for-glibc code.
44753         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
44754         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
44755
44756 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
44757
44758         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
44759         HP's ANSI C compiler.
44760         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
44761         Declaring int functions causes warnings on some modern systems and
44762         shouldn't be needed to compile on ancient ones.
44763         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
44764         defined.
44765
44766         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
44767         with the following changes.
44768         (__set_errno): Parenthesize properly.
44769         Include <stdbool.h>.
44770         (MIN, MAX, MATCHING_INO): New macros.
44771         (__getcwd): Define with prototype, not K&R form.
44772         Use heuristics to allocate default buffer on stack if possible.
44773         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
44774         behavior, and to avoid the PATH_MAX limit when computing
44775         ../../../../...
44776         Use MATCHING_INO to compare inode number to file.
44777         Check for arithmetic overflow in size calculations.
44778         Fix bug in reallocation of dot array that caused getcwd to fail
44779         on directories nested deeper than 75.
44780         Be more careful about saving errno on error.
44781         Do not use realloc; use only free+malloc, as this is a bit
44782         more flexible and avoids a needless copy operation.
44783         Do not inspect st_dev and st_ino for symbolic links; POSIX
44784         doesn't specify the latter.
44785         Check for closedir errors.
44786         Avoid needless casts.
44787         Use "#ifdef weak_alias" around weak_alias, to be like other
44788         glibc code.
44789         The following changes to getcwd.c have effect only when used in
44790         gnulib; they have no effect inside glibc proper.
44791         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
44792         as alloca isn't used.
44793         (alloca, __alloca): Likewise.
44794         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
44795         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
44796         unconditionally, as gnulib assumes C89 or better.
44797         Do not include <sys/param.h>.
44798         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
44799         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
44800         better.
44801         (NULL) [!defined NULL]: Remove; we assume C89 or better.
44802         Include <dirent.h> in a way that is compatible with modern Autoconf.
44803         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
44804         New macros, if not already defined.
44805         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
44806         Use "_LIBC", not "defined _LIBC", for consistency.
44807         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
44808         a mempcpy module.
44809         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
44810         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
44811         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
44812         credit only to Jim Meyering and adjust the copyright dates.
44813         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
44814         <stdlib.h>, <unistd.h>, "pathmax.h".
44815         Instead, include "xgetcwd.h" (first) and "getcwd.h".
44816         (INITIAL_BUFFER_SIZE): Remove.
44817         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
44818
44819 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
44820
44821         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
44822         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
44823         Use the _ONCE methods, for efficiency.
44824         Check for fcntl.h.  In test program, include <errno.h>
44825         and <fcntl.h> if available.  Remove old K&R cruft from
44826         test program.  Check for common errors in GNU/Linux,
44827         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
44828         don't do AC_LIBOBJ, as that's getcwd.m4's job.
44829         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
44830         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
44831         name accordingly.
44832         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
44833         accommodate new getcwd.c.
44834         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
44835         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
44836         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
44837         that's all we need now.
44838
44839 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44840
44841         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
44842         argp-parse.c depends on getopt internals, that means we should
44843         always use our getopt, to be on the safe side.
44844         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
44845         order not to spoil the result of an eventual previous invocation
44846         of gl_GETOPT_SUBSTITUTE.
44847
44848 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44849
44850         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
44851         redefinition warnings. To avoid them, include the defines
44852         in `#if !defined __need_getopt ... #endif'. The only place
44853         where __getopt_argv_const is used is in definitions
44854         of getopt_long and getopt_long_only below, which are as well
44855         protected by `#ifndef __need_getopt'.
44856         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
44857         __need_getopt after including <stdio.h> and <unistd.h> These
44858         headers might have defined it.
44859
44860 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
44861
44862         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
44863
44864 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
44865
44866         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
44867         (futimens): New function, which uses futimes if available.
44868         (futimens, utimens): Support timespec==NULL, with same semantics
44869         as utime and utimens.
44870         * lib/utimens.h (futimens): New decl.
44871
44872 2004-11-23  Jim Meyering  <jim@meyering.net>
44873
44874         * lib/getopt_.h: Remove trailing blanks.
44875
44876 2004-11-23  Jim Meyering  <jim@meyering.net>
44877
44878         * lib/__fpending.c: Add comment.
44879
44880 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
44881
44882         * modules/canonicalize (Depends-on): Add xreadlink.
44883         Problem reported by James Youngman.
44884
44885 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
44886
44887         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
44888         New macros.
44889         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
44890         optopt): Use them instead of invoking ## directly; otherwise, the
44891         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
44892
44893 2004-11-19  Bruno Haible  <bruno@clisp.org>
44894
44895         * lib/strtok_r.c: Move comments from here...
44896         * lib/strtok_r.h: ... to here.
44897
44898 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
44899
44900         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
44901         implementations that mishandle size_t overflow.
44902
44903 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
44904
44905         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
44906         might fail.  Problem reported by Yoann Vandoorselaere.
44907         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
44908         implementations that mishandle size_t overflow.
44909
44910 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
44911
44912         * modules/canon-host (Depends-on): Add strdup.
44913
44914 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
44915
44916         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
44917
44918 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
44919
44920         * lib/canon-host.c: Include "strdup.h".
44921         (canon_host): Use getaddrinfo if available, so that IPv6 works.
44922         Use strdup instead of malloc/strcpy to duplicate strings.
44923
44924         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
44925         (human_space_before_unit): New constant.
44926         * lib/human.c (human_readable): Support it.
44927
44928         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
44929         (xgetcwd): Set errno correctly when failing.
44930         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
44931         the failure is actually due to a PATH_MAX problem.
44932
44933         Further getopt changes to make it more likely that glibc will
44934         buy the changes back.
44935         * lib/getopt.c (POSIXLY_CORRECT): New constant.
44936         (getopt): Use it, so to preserve glibc semantic
44937         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
44938         when compiling for libc.
44939         * lib/getopt_.h (__getopt_argv_const): Bring it back.
44940         (getopt_long, getopt_long_only): Use it.
44941
44942         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
44943         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
44944         (getopt): Argv is now char * const *, as per standard.
44945         (_getopt_internal_r, _getopt_internal): Argv is now char **,
44946         not char *__getopt_argv_const *.
44947         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
44948         _getopt_long_only_r): Likewise.
44949         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
44950         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
44951         _getopt_long_r, _getopt_long_only_r): Likewise.
44952         * lib/getopt_.h (__getopt_argv_const): Remove.
44953         (getopt): Argv is now char * const *, as per standard.
44954
44955         * lib/getdate.y (tORDINAL): New token.
44956         (day, relunit): Allow it for relative times.
44957         (relative_time_table): Use tORDINAL for ordinals.
44958
44959 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
44960
44961         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
44962         Document that "second" isn't allowed as an ordinal number.
44963
44964 2004-11-16  Jim Meyering  <jim@meyering.net>
44965
44966         * modules/closeout (Depends-on): Add fpending.
44967
44968 2004-11-15  Jim Meyering  <jim@meyering.net>
44969
44970         * lib/closeout.c: Include "__fpending.h" once again.
44971         Include <stdbool.h>.
44972         (close_stdout): Don't fail just because stdout was closed initially,
44973         since some programs don't write to stdout in the normal course of
44974         operation (other than --version and --help), and we don't want this
44975         function to make e.g. `touch file >&-' fail.
44976         But do fail if it was closed and someone has tried to write to it.
44977         E.g., `printf foo >&-' must fail.
44978
44979 2004-11-13  Jim Meyering  <jim@meyering.net>
44980
44981         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
44982
44983 2004-11-12  Simon Josefsson  <jas@extundo.com>
44984
44985         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
44986         small doc fix is still pending.
44987
44988 2004-11-11  Simon Josefsson  <jas@extundo.com>
44989
44990         * modules/strtok_r: New file.
44991
44992         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
44993         strtok_r.
44994
44995 2004-11-11  Simon Josefsson  <jas@extundo.com>
44996
44997         * m4/strtok_r.m4: New file.
44998
44999         * m4/getopt.m4: Replace opterr.
45000
45001 2004-11-11  Simon Josefsson  <jas@extundo.com>
45002
45003         * lib/strtok_r.h, strtok_r.c: New file.
45004
45005 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
45006
45007         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
45008         of replacing opterr, getopt, etc.  This should handle the
45009         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
45010
45011 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
45012
45013         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
45014         we can stop lying to compilers about the constness of argv when we
45015         are compiled outside glibc.
45016         (getopt, getopt_long, getopt_long_only): Use it.
45017         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
45018         _getopt_internal, getopt): Likewise.
45019         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
45020         _getopt_long_only_r): Likewise.
45021         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
45022         _getopt_long_r, _getopt_long_only_r): Likewise.
45023
45024         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
45025         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
45026         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
45027         the other external symbols.
45028         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
45029         declaration, since the above renaming now works around collisions.
45030
45031 2004-11-11  Jim Meyering  <jim@meyering.net>
45032
45033         * lib/linebreak.c: Remove trailing blanks.
45034         * lib/alloca_.h: Likewise.
45035         * lib/acosl.c: Likewise.
45036         * lib/euidaccess.c: Likewise.
45037         * lib/allocsa.h: Likewise.
45038
45039 2004-11-10  Simon Josefsson  <jas@extundo.com>
45040
45041         * m4/getaddrinfo.m4: New file.
45042
45043 2004-11-10  Simon Josefsson  <jas@extundo.com>
45044
45045         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
45046
45047 2004-11-10  Simon Josefsson  <jas@extundo.com>
45048
45049         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45050         getaddrinfo.
45051
45052         * modules/getaddrinfo: New file.
45053
45054 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
45055
45056         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
45057
45058 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
45059
45060         * lib/mktime.c (SHR): New macro, which is a portable
45061         substitute for >> that should work even on Crays.
45062         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
45063         Problem reported by Mark D. Baushke in
45064         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
45065         * lib/getdate.y (SHR): Likewise.
45066         (tm_diff): Use it.
45067         * lib/strftime.c (SHR): Likewise.
45068         (tm_diff): Use it.
45069         * lib/quotearg.c (struct quoting_options): Use unsigned int for
45070         quote_these_too, so that right shifts are well defined.  All uses
45071         changed.
45072
45073 2004-11-10  Jim Meyering  <jim@meyering.net>
45074
45075         Ensure that no close failure goes unreported.
45076         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
45077         return early when it seems there's nothing to flush.
45078         Don't include __fpending.h.
45079
45080 2004-11-10  Jim Meyering  <jim@meyering.net>
45081
45082         * modules/closeout (Depends-on): Remove fpending.
45083
45084 2004-11-10  Jim Meyering  <jim@meyering.net>
45085
45086         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
45087
45088 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
45089
45090         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
45091         gl_FUNC_STRFTIME.
45092         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
45093         and AC_REQUIRE when possible, to avoid duplicate checks.
45094         Check for <wchar.h>.
45095
45096 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
45097
45098         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
45099
45100 2004-11-09  Bruno Haible  <bruno@clisp.org>
45101
45102         * m4/sockpfaf.m4: New file.
45103
45104 2004-11-05  Bruno Haible  <bruno@clisp.org>
45105
45106         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
45107         Reported by Mark D. Baushke <mdb@cvshome.org>.
45108
45109 2004-11-04  Bruno Haible  <bruno@clisp.org>
45110
45111         2004-09-11  Bruno Haible  <bruno@clisp.org>
45112                 * allocsa.valgrind: New file.
45113         2004-02-06  Bruno Haible  <bruno@clisp.org>
45114                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
45115                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
45116                 Reported by Christopher Seip <chris.seip@hp.com>.
45117
45118 2004-11-04  Bruno Haible  <bruno@clisp.org>
45119
45120         * modules/allocsa (Files): Add lib/allocsa.valgrind.
45121         (Makefile.am): Distribute it.
45122
45123 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
45124
45125         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
45126         with errno == ERANGE if the buffer is too small.
45127         Problem reported by Mark D. Baushke.
45128
45129 2004-11-03  Albert Chin  <china@thewrittenword.com>
45130             Paul Eggert  <eggert@cs.ucla.edu>
45131
45132         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
45133         equivalent, substitute $ac_type for equivalent type rather than
45134         blindly using uint32_t *always* which won't work if uint32_t is not
45135         available.  Define _UINT32_T to work around typedef of uint32_t if
45136         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
45137         2.5.1.
45138
45139 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
45140
45141         * m4/jm-macros.m4: Sync from coreutils.
45142         (gl_MACROS): Check for mbrlen, for pathchk.
45143         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
45144
45145 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
45146
45147         * lib/xreadlink.c (MAXSIZE): New macro.
45148         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
45149         size does not exceed MAXSIZE.  Avoid cast.
45150         As suggested by Mark D. Baushke in
45151         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
45152         if readlink fails with buffer size just under MAXSIZE, try again
45153         with MAXSIZE.
45154
45155 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
45156
45157         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
45158
45159 2004-11-02  Derek R. Price  <derek@ximbiot.com>
45160         and  Paul Eggert  <eggert@cs.ucla.edu>
45161
45162         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
45163         (get_date): Overparenthesize to avoid GCC warning.
45164
45165 2004-11-02  Bruno Haible  <bruno@clisp.org>
45166
45167         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
45168         returns void.
45169
45170 2004-11-02  Bruno Haible  <bruno@clisp.org>
45171
45172         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
45173         function returns void.
45174
45175 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
45176
45177         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
45178         fflush_unlocked, flockfile, funlockfile, funlockfile,
45179         fputs_unlocked, putc_unlocked.
45180
45181 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
45182
45183         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
45184         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
45185         already declared.
45186
45187 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
45188
45189         * modules/getdate (Files): Add doc/getdate.texi.
45190         (Depends-on): Add setenv, xalloc.
45191
45192 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
45193
45194         * lib/getdate.y: Add support for TZ="foo" within a date string.
45195         Fix some bugs near time_t boundaries.  Reject dates with
45196         out-of-range components, e.g., "Sept 31".
45197         Include <stdlib.h>, "setenv.h", "xalloc.h".
45198         (ISDIGIT_LOCALE): Remove; unused.
45199         Note that the TZ and time functions used here are not reentrant.
45200         (mktime_ok, get_tz): New functions.
45201         (TZBUFSIZE): New constant.
45202         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
45203         This requires that we sometimes generate our own TZ="XXX..." setting.
45204
45205 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
45206
45207         * doc/getdate.texi: New file, from coreutils with modifications for
45208         the new TZ parsing.
45209
45210 2004-10-27  Derek R. Price  <derek@ximbiot.com>
45211
45212         * lib/mktime.c (not_equal_tm): Remove redundant check.
45213
45214 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
45215
45216         * modules/regex (lib_SOURCES): Add regex.c.
45217         Reported by James Youngman in
45218         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
45219
45220 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
45221
45222         * lib/getdate.y: Use Bison 1.875 features, and some minor
45223         code cleanups.  This change does not affect semantics.
45224         Don't include <stdlib.h>; no longer needed.
45225         Don't include unlocked-io.h; only the "#if TEST" code uses
45226         stdio, and performance isn't crucial there.
45227         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
45228         Bison 1.875 features as described below.
45229         All uses of "PC." replaced by "pc->".
45230         (YYSTYPE): Add a forward declaration.
45231         (yylex, yyerror): Use full prototypes in forward decls.
45232         Use "%pure-parser" rather than obsolescent "%pure_parser".
45233         Use %parse-param and %lex-param instead of obsolescent
45234         YYPARSE_PARAM and YYLEX_PARAM.
45235         (meridian_table, month_and_day_table, time_units_table,
45236         relative_time_table, time_zone_table, military_table,
45237         lookup_zone, lookup_word, get_date):
45238         Use NULL instead of 0 where appropriate.
45239         (to_hour): Avoid abort (), to avoid a dependency on
45240         stdlib.h.
45241         (yyerror, yylex): Now accepts parser_control * arg.
45242         (main) [TEST]: Use '\0' rather than 0 for char.
45243
45244 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
45245
45246         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
45247
45248 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
45249
45250         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
45251         It's now the caller's responsibility to handle the case where
45252         !HAVE_GETPAGESIZE && !defined getpagesize.
45253
45254         * lib/mktime.c (leapyear): Arg is long int, not int.
45255
45256 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
45257
45258         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
45259
45260 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
45261
45262         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
45263         missing.  Problem reported by James Youngman.
45264
45265 2004-10-16  Simon Josefsson  <jas@extundo.com>
45266
45267         * gnulib-tool: Fix comments.  Fix parse problem.
45268         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
45269
45270 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
45271
45272         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
45273         implementation of getopt_long.  Problem reported by Alexander Taler in:
45274         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
45275
45276 2004-10-15  Bruno Haible  <bruno@clisp.org>
45277
45278         * gnulib-tool: Untabify. Initialize supplied_libname.
45279         (func_usage): More homogenous output.
45280         (func_modules_transitive_closure, func_modules_to_filelist,
45281         func_emit_lib_Makefile_am): New functions.
45282         (func_import): New function, extracted from big case statement. Use
45283         func_get_license, func_modules_transitive_closure,
45284         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
45285         opt_lgpl. Don't use test -a, as it's not portable.
45286         (func_create_testdir): Use func_modules_transitive_closure,
45287         func_modules_to_filelist, func_emit_lib_Makefile_am.
45288
45289 2004-10-15  Bruno Haible  <bruno@clisp.org>
45290
45291         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
45292
45293 2004-10-15  Bruno Haible  <bruno@clisp.org>
45294
45295         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
45296         the portions belonging to each module.
45297         Suggested by Derek Robert Price <derek@ximbiot.com>.
45298
45299 2004-10-12  Simon Josefsson  <jas@extundo.com>
45300
45301         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
45302         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
45303         to real functions.
45304
45305 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
45306
45307         * modules/vsnprintf: New file.
45308
45309 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
45310
45311         * m4/vsnprintf.m4: New file.
45312
45313 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
45314
45315         * lib/vsnprintf.h: New file.
45316         * lib/vsnprintf.c: New file.
45317
45318 2004-10-11  Bruno Haible  <bruno@clisp.org>
45319
45320         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
45321         vsnprintf.
45322
45323 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
45324
45325         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
45326
45327 2004-10-07  Bruno Haible  <bruno@clisp.org>
45328
45329         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
45330         fits into the provided buffer.
45331
45332 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
45333
45334         * lib/diacrit.c, diacrit.h: Add GPL notice.
45335
45336         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
45337         notice.
45338         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
45339         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
45340         This avoids a potential constant-folding bug.
45341
45342 2004-10-05  Bruno Haible  <bruno@clisp.org>
45343
45344         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
45345         for the declaration of strsep.
45346
45347 2004-10-05  Bruno Haible  <bruno@clisp.org>
45348
45349         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
45350
45351 2004-10-04  Simon Josefsson  <jas@extundo.com>
45352
45353         * modules/memmem: New file.
45354         * tests/test-memmem.c: New file.
45355         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
45356
45357 2004-10-04  Simon Josefsson  <jas@extundo.com>
45358
45359         * m4/memmem.m4: New file.
45360
45361 2004-10-04  Simon Josefsson  <jas@extundo.com>
45362
45363         * lib/memmem.h: New file.
45364         * lib/memmem.c: New file, taken from glibc.
45365
45366 2004-10-04  Simon Josefsson  <jas@extundo.com>
45367
45368         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
45369         '#ifdef USE_UNLOCKED_IO'.
45370
45371 2004-10-04  Simon Josefsson  <jas@extundo.com>
45372
45373         * config/srclist.txt: Add memmem from glibc.
45374
45375 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
45376
45377         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
45378
45379         * modules/argmatch, modules/argp, modules/closeout, modules/error,
45380         modules/exclude, modules/getdate, modules/getline,
45381         modules/getndelim2, modules/getpass, modules/getpass-gnu,
45382         modules/getusershell, modules/linebuffer, modules/md5,
45383         modules/mountlist, modules/posixtm, modules/readtokens,
45384         modules/readutmp, modules/regex, modules/sha1,
45385         modules/version-etc, modules/yesno:
45386         Remove dependency on unlocked-io.
45387
45388 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
45389
45390         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
45391
45392         * m4/unlocked-io.m4: Add copyright notice.
45393         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
45394
45395 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
45396
45397         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
45398         * lib/xmalloc.c (xmemdup): Likewise.
45399         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
45400         XFREE): Remove these long-obsolescent macros.
45401         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
45402         * lib/xstrdup.c: Remove.
45403
45404         * lib/regex.c (re_comp): Cast gettext return value to char *,
45405         Problem reported by Martin Neitzel via Mark D. Baushke.
45406
45407 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
45408
45409         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
45410         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
45411         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
45412         regex.c, sha1.c, version-etc.c, yesno.c:
45413         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
45414         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
45415         the includer's responsibility.
45416
45417         Sync from coreutils.
45418
45419         * lib/modechange.c (mode_compile): Don't decrement a pointer that
45420         points to the start of a string, as the C Standard says the
45421         resulting behavior is undefined.
45422
45423         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
45424         simple -> simple_backups, numbered_existing ->
45425         numbered_existing_backups, numbered -> numbered_backups
45426         to avoid shadowing problems.  All uses changed.
45427         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
45428         * lib/backupfile.c (check_extension, numbered_backup):
45429         Rename locals to avoid shadowing 'basename'.
45430         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
45431         once.
45432
45433         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
45434         * lib/.cvsignore: Add getopt.h.
45435
45436 2004-10-04  Bruno Haible  <bruno@clisp.org>
45437
45438         * modules/README: New file.
45439         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
45440         not a module.
45441
45442 2004-10-02  Jim Meyering  <jim@meyering.net>
45443
45444         * lib/dirfd.h, getpagesize.h: Add copyright notice.
45445
45446 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
45447
45448         * modules/strsep: New file.
45449
45450 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
45451
45452         * m4/strsep.m4: New file.
45453
45454 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
45455
45456         * lib/strsep.h: New file.
45457         * lib/strsep.c: New file.
45458
45459 2004-10-01  Simon Josefsson  <jas@extundo.com>
45460
45461         * lib/snprintf.c (snprintf): Handle size==0.
45462
45463 2004-10-01  Simon Josefsson  <jas@extundo.com>
45464             Bruno Haible  <bruno@clisp.org>
45465
45466         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
45467         (snprintf): Declare 'args'.
45468
45469 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
45470
45471         * lib/snprintf.c: Remove comments as to why each header is needed.
45472
45473 2004-10-01  Bruno Haible  <bruno@clisp.org>
45474
45475         * MODULES.html.sh: Add strsep.
45476
45477 2004-09-30  Simon Josefsson  <jas@extundo.com>
45478
45479         * modules/snprintf: New file.
45480
45481 2004-09-30  Simon Josefsson  <jas@extundo.com>
45482
45483         * m4/snprintf.m4: New file.
45484
45485 2004-09-30  Simon Josefsson  <jas@extundo.com>
45486
45487         * lib/snprintf.h, lib/snprintf.c: New files.
45488
45489 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45490
45491         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
45492         (hol_entry_help): Never translate an empty string.
45493         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
45494         * lib/argp.h (OPTION_NO_TRANS): New option.
45495
45496 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
45497
45498         * modules/argp (Maintainer): Replace Simon Josefsson
45499         by Sergey Poznyakoff.
45500
45501 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
45502
45503         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
45504         changes merged back into glibc.
45505
45506 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
45507
45508         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
45509
45510 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
45511
45512         * lib/xvasprintf.c: Include xalloc.h.
45513         (xvasprintf): Use xalloc_die, not xmalloc_die.
45514
45515 2004-09-29  Bruno Haible  <bruno@clisp.org>
45516
45517         * modules/alloca-opt: New file, derived from modules/alloca.
45518         * modules/allocsa: Depend on alloca-opt instead of alloca.
45519         * modules/setenv: Likewise.
45520         * modules/vasnprintf: Likewise.
45521         * MODULES.html.sh: Add alloca-opt.
45522
45523 2004-09-28  Simon Josefsson  <jas@extundo.com>
45524
45525         * gnulib-tool: New parameter --lgpl, to asseert that modules are
45526         LGPL, and to replace license template from GPL to LGPL.
45527
45528 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
45529
45530         * modules/dummy: Change license to LGPL.
45531
45532 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
45533
45534         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
45535
45536 2004-09-24  Simon Josefsson  <jas@extundo.com>
45537
45538         * modules/minmax (License): Change from GPL to LGPL.
45539
45540 2004-09-23  Simon Josefsson  <jas@extundo.com>
45541
45542         * gnulib-tool (--import): Typo.
45543
45544 2004-09-23  Simon Josefsson  <jas@extundo.com>
45545
45546         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
45547
45548 2004-09-22  Bruno Haible  <bruno@clisp.org>
45549
45550         * modules/*: Add 'License' field.
45551         * gnulib-tool: Accept --extract-license option.
45552         (func_get_license): New function.
45553
45554 2004-09-21  Bruno Haible  <bruno@clisp.org>
45555
45556         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
45557         Reported by Simon Josefsson.
45558
45559 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
45560
45561         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
45562         gl_AC_TYPE_LONG_LONG.
45563
45564 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
45565
45566         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
45567
45568 2004-09-18  Simon Josefsson  <jas@extundo.com>
45569         and  Paul Eggert  <eggert@cs.ucla.edu>
45570
45571         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
45572         calls with autoreconf.  Define GL_LIB.
45573
45574 2004-09-14  Karl Berry  <karl@gnu.org>
45575
45576         * config/srclist.txt: unsync setenv.c, sigh.
45577
45578 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
45579
45580         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
45581         Problem reported by Bruno Haible in:
45582         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
45583
45584 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
45585
45586         * config/srclist.txt: Comment out argp-pvh.c.
45587
45588 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
45589
45590         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
45591         in case some system header has #define'd it.  Problem reported by
45592         Soeren D. Schulze in
45593         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
45594
45595 2004-09-09  Karl Berry  <karl@gnu.org>
45596
45597         * regex.[ch]: delete from the root.  These were supposed to be
45598                 synced with emacs cvs, but this has not happened for about
45599                 a year, and anyway nothing else uses emacs regex.[ch].
45600                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
45601                 lib/regex[.ch] is untouched.
45602
45603 2004-09-09  Bruno Haible  <bruno@clisp.org>
45604
45605         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
45606
45607 2004-09-09  Bruno Haible  <bruno@clisp.org>
45608
45609         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
45610         modifications.
45611         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
45612
45613 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
45614
45615         * modules/xvasprintf: New file.
45616         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
45617
45618 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
45619
45620         * lib/xvasprintf.h: New file.
45621         * lib/xvasprintf.c: New file.
45622         * lib/xasprintf.c: New file.
45623
45624 2004-09-08  Bruno Haible  <bruno@clisp.org>
45625
45626         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
45627
45628 2004-09-08  Bruno Haible  <bruno@clisp.org>
45629
45630         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
45631         length is > INT_MAX.
45632         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
45633         more.
45634
45635 2004-09-08  Bruno Haible  <bruno@clisp.org>
45636
45637         * lib/stdint_.h: New file, taken from GNU clisp.
45638
45639 2004-09-08  Bruno Haible  <bruno@clisp.org>
45640             Oskar Liljeblad  <oskar@osk.mine.nu>
45641
45642         * modules/stdint: New file.
45643         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
45644
45645 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45646
45647         Import from coreutils.
45648         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
45649         strings on unbounded length.  alloca's performance benefits aren't
45650         that important here.
45651         (V_STRDUP): Remove.
45652         (parse_with_separator): New function, with most of the internals
45653         of the old parse_user_spec.  Allow user to omit both user and group,
45654         for compatibility with FreeBSD.
45655         Clone only the user name, not the entire spec.
45656         Do not set *uid, *gid unless entirely successful.
45657         Avoid memory leak in some failing cases.
45658         Fix regression for USER.GROUP reported by Dmitry V. Levin in
45659         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
45660         (parse_user_spec): Rewrite to use parse_with_separator.
45661
45662 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45663
45664         * modules/userspec: Don't depend on alloca.
45665
45666 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45667
45668         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
45669
45670 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
45671
45672         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
45673         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
45674         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
45675
45676 2004-08-16  Simon Josefsson  <jas@extundo.com>
45677
45678         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
45679         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
45680         Add --dry-run for --import.
45681         Let user provided command line parameters override configure.ac
45682         settings.
45683
45684 2004-08-12  Simon Josefsson  <jas@extundo.com>
45685
45686         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
45687         as discussed with Paul Eggert in threads rooted at
45688         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
45689         and
45690         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
45691         Before, the test was empty, and relied on ELIDE_CODE in source
45692         code.)
45693         (gl_PREREQ_GETOPT): New macro.
45694         (gl_GETOPT): Use them.
45695
45696 2004-08-12  Simon Josefsson  <jas@extundo.com>
45697
45698         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
45699         * lib/getopt_.h: Renamed from getopt.h.
45700
45701 2004-08-12  Simon Josefsson  <jas@extundo.com>
45702
45703         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
45704         Change default library name from libfoo to libgnu.
45705         Now, if you have a configure.ac that says:
45706                 gl_SOURCE_BASE(gl)
45707                 gl_M4_BASE(gl/m4)
45708                 gl_MODULES(error getopt etcetera)
45709                 gl_INIT
45710         you can import all you need by running:
45711                 ../gnulib/gnulib-tool --import
45712
45713         * modules/getopt (Files): Rename getopt.h to getopt_.h.
45714         (Makefile.am): Rewrite, use logic from argz.
45715         (Include): Use <getopt.h> instead of "getopt.h".
45716
45717 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
45718
45719         * modules/argp (Files): Add m4/unlocked-io.m4.
45720         (Depends-on): Add extensions.
45721
45722 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
45723
45724         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
45725         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
45726         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
45727         Check for program_invocation_name, program_invocation_short_name,
45728         flockfile, funlockfile, features.h, _getopt_long_only_r.
45729
45730 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
45731
45732         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
45733         its complicated substitute.
45734         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
45735         and program_invocation_name.
45736         (__argp_basename) [!_LIBC]: Remove; the only use was
45737         replaced by its body.
45738         (__argp_short_program_name): Change condition from
45739         !defined __argp_short_program_name to
45740         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
45741         to match argp-namefrob.h.
45742         (__argp_failure): Don't assume strerror_r returns char *.
45743         * lib/argp-parse.c (N_): Define unconditionally.
45744         (argp_default_options): Fill out initializers with 0 to avoid
45745         gcc warnings.
45746
45747 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
45748
45749         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
45750         getopt1.c.
45751
45752 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
45753
45754         Merge from coreutils.
45755
45756         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
45757
45758         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
45759         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
45760
45761 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
45762
45763         Merge from coreutils.
45764
45765         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
45766         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
45767         for Reliant Unix 5.43.
45768
45769         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
45770         (union fooround): Use uintmax_t, not long int.
45771         The rest is a merge from libc:
45772         [defined _LIBC]: Include <shlib-compat.h>.
45773         (_obstack) [defined _LIBC]: Remove after 2.3.4.
45774
45775         * lib/settime.c (settime): Recode to avoid warning with
45776         Sun Forte C 6U2.
45777
45778         * lib/strverscmp.c: Convert to UTF-8.
45779
45780 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
45781
45782         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
45783         m4/uintmax_t.m4.
45784
45785 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45786
45787         * modules/xalloc-die: New file.
45788         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
45789
45790         * modules/md5 (Files): Add m4/uint32_t.m4.
45791         * modules/sha1: Renamed from modules/sha.
45792         (Files):
45793         Rename lib/sha.h to lib/sha1.h.
45794         Rename lib/sha.c to lib/sha1.c.
45795         Rename m4/sha.m4 to m4/sha1.m4.
45796         (lib_SOURCES): Likewise.
45797         (configure.ac): Rename gl_SHA to gl_SHA1.
45798         (Include): sha.h -> sha1.h.
45799
45800 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45801
45802         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
45803         * m4/sha1.m4: Renamed from sha.m4.
45804         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
45805
45806 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
45807
45808         * lib/obstack.h (obstack_empty_p):
45809         Don't assume that chunk->contents is suitably aligned.
45810         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
45811         Likewise. Problem reported by Benno in
45812         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
45813
45814         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
45815         readable.  This could be improved further but it'd take some work.
45816
45817 2004-08-08  Simon Josefsson  <jas@extundo.com>
45818
45819         * modules/xgethostname (Depends-on): Remove exit and error (not
45820         used).
45821
45822         * modules/getpass-gnu: Add getpass.h.
45823         (Depends-on): Add stdbool.
45824         * modules/getpass: Add getpass.h.
45825
45826 2004-08-08  Simon Josefsson  <jas@extundo.com>
45827
45828         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
45829         Check getpass declaration.
45830
45831 2004-08-08  Simon Josefsson  <jas@extundo.com>
45832
45833         * lib/xgethostname.c: Don't include error.h (not used).
45834
45835         * lib/getpass.h: Add.
45836         * lib/getpass.c: Include getpass.h first.
45837
45838 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
45839
45840         * lib/xalloc-die.c: New file.
45841         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
45842         All uses removed.
45843         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
45844         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
45845         xalloc-die.c.
45846         (_, N_, xalloc_die): Move to xalloc-die.c.
45847         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
45848         so that we needn't mess with xalloc_msg_memory_exhausted.
45849
45850         * lib/sha1.h: Renamed from sha.h.
45851         (SHA1_H): Renamed from _SHA_H.
45852         (sha1_ctx): Renamed from sha_ctx.
45853         (sha1_init_ctx): Renamed from sha_init_ctx.
45854         (sha1_process_block): Renamed from sha_process_block.
45855         (sha1_process_bytes): Renamed from sha_process_bytes.
45856         (sha1_finish_ctx): Renamed from sha_finish_ctx.
45857         (sha1_read_ctx): Renamed from sha_read_ctx.
45858         (sha1_stream): Renamed from sha_stream.
45859         (sha1_buffer): Renamed from sha_buffer.
45860         * lib/sha1.c: Likewise; renamed from sha.c.
45861         Do not include <sys/types.h>.
45862         Include <stddef.h> rather than <stdlib.h>.
45863
45864 2004-08-08  Bruno Haible  <bruno@clisp.org>
45865
45866         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
45867         FILESYSTEM_PREFIX_LEN.
45868         * lib/progreloc.c: Likewise.
45869         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
45870
45871 2004-08-06  Simon Josefsson  <jas@extundo.com>
45872
45873         * modules/progname (Depends-on): Don't depend on stdbool.
45874
45875 2004-08-06  Simon Josefsson  <jas@extundo.com>
45876
45877         * modules/getsubopt: New file.
45878         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45879         getsubopt.
45880
45881 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
45882
45883         More merge from coreutils.
45884
45885         * m4/utimens.m4, m4/utimecmp.m4: New files.
45886         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
45887         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
45888         prereq.m4, sha.m4: Import changes from coreutils.
45889
45890 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
45891
45892         More merge from coreutils.
45893         * modules/raise, modules/readtokens0, modules/utimens:
45894         * modules/utimecmp, module/xnanosleep: New files.
45895         * modules/strftime: Add lib/strftime.h.
45896         Change include from <time.h> to "strftime.h".
45897         * modules/yesno: Add lib/yesno.h.
45898         * modules/backupfile: Remove lib/addext.c.
45899         * modules/euidaccess: Add stat-macros.h.
45900         * modules/canonicalize, modules/euidaccess,
45901         modules/filemode, modules/lchown, modules/makepath,
45902         modules/rmdir, modules/stat: Likewise.
45903
45904 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
45905
45906         Merge from tar.
45907         * lib/argp-help.c (make_hol, hol_append): Don't assume that
45908         SIZE_MAX is a valid preprocessor constant.
45909         (__argp_basename): Change from "#ifndef _LIBC"
45910         to "#ifndef __argp_short_program_name", so that
45911         we don't compile these functions for tar.
45912
45913         More merges from coreutils.
45914         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
45915         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
45916         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
45917         * lib/addext.c: Remove; no longer needed.
45918         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
45919         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
45920         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
45921         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
45922         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
45923         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
45924         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
45925         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
45926         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
45927         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
45928         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
45929         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
45930         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
45931         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
45932         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
45933         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
45934         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
45935         Import changes from coreutils.
45936
45937 2004-08-05  Simon Josefsson  <jas@extundo.com>
45938
45939         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
45940
45941 2004-08-05  Simon Josefsson  <jas@extundo.com>
45942
45943         * m4/getsubopt.m4: New file.
45944
45945 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
45946
45947         Merge from coreutils.
45948
45949         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
45950         * m4/getcwd-path-max.m4: New files.
45951
45952         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
45953         FILESYSTEM_PREFIX_LEN ->
45954         FILE_SYSTEM_PREFIX_LEN.
45955         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
45956         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
45957         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
45958         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
45959
45960         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
45961         prerequisite modules now handle the DOS stuff.
45962         Don't check for unistd.h.
45963
45964 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
45965
45966         Merge from coreutils.
45967
45968         * lib/.gdb-history: Remove; this doesn't belong here.
45969
45970         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
45971         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
45972         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
45973         * lib/getcwd.c: New files.
45974
45975         * lib/dirname.h: Include <stdbool.h>.
45976         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
45977         for consistency with POSIX terminology.  All uses changed.
45978         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
45979         (strip_trailing_slashes): Use bool for booleans.
45980         * lib/stripslash.c (strip_trailing_slashes): Likewise.
45981
45982         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
45983         sometimes returns a positive errno value even when it succeeds.
45984         (print_errno_message) [!LIBC]: Fall back on strerror if
45985         __strerror_r fails.
45986
45987         * lib/path-concat.c (mempcpy): Don't define if a system header defines
45988         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
45989         (longest_relative_suffix): New function.
45990         (path_concat): Use it.  Assume first argument is not NULL.
45991         Port to DOS.  Omit redundant separators.
45992         Report an error instead of returning NULL.
45993         Use mempcpy instead of memcpy.
45994         (xpath_concat): Remove: not declared or used.
45995
45996         * lib/same.h: Include <stdbool.h>
45997         (same_name): Return bool, not int.
45998         * lib/same.c (same_name): Likewise.
45999         (errno): Don't declare; we assume C89 or better now.
46000
46001         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
46002         if not already defined.
46003
46004         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
46005         * lib/dup-safer.c (errno): Likewise.
46006
46007 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
46008
46009         Merge from coreutils.
46010         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
46011         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
46012         * modules/path-concat: Don't depend on strdup.
46013
46014 2004-08-03  Simon Josefsson  <jas@extundo.com>
46015
46016         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
46017         * lib/progname.h: Don't include stdbool.h.
46018
46019 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
46020
46021         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
46022         * MODULES.html.sh (func_all_modules): Remove fatal.
46023
46024 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
46025
46026         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
46027
46028 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
46029
46030         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
46031         working.
46032
46033 2004-08-02  Simon Josefsson  <jas@extundo.com>
46034
46035         * lib/getsubopt.h: New file, with comments from Bruno Haible.
46036         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
46037         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
46038
46039 2004-08-01  Simon Josefsson  <jas@extundo.com>
46040
46041         * lib/xgetdomainname.c: Include stdlib.h, for free().
46042
46043 2004-07-19  Bruno Haible  <bruno@clisp.org>
46044
46045         * MODULES.html.sh (func_all_modules): Add dummy.
46046
46047 2004-07-16  Simon Josefsson  <jas@extundo.com>
46048
46049         * modules/dummy: New file.
46050
46051 2004-07-16  Simon Josefsson  <jas@extundo.com>
46052
46053         * lib/dummy.c: New file.
46054
46055 2004-07-16  Bruno Haible  <bruno@clisp.org>
46056
46057         * lib/backupfile.h: Add extern "C" for C++.
46058         * lib/closeout.h: Likewise.
46059         * lib/copy-file.h: Likewise.
46060         * lib/findprog.h: Likewise.
46061         * lib/full-write.h: Likewise.
46062         * lib/pathname.h: Likewise.
46063         * lib/progname.h: Likewise.
46064         * lib/stpcpy.h: Likewise.
46065         * lib/stpncpy.h: Likewise.
46066         * lib/strcase.h: Likewise.
46067         * lib/strstr.h: Likewise.
46068         * lib/xalloc.h: Likewise.
46069
46070         * lib/mbswidth.h: Add extern "C" for C++.
46071         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
46072
46073 2004-07-13  Robert Millan  <robertmh@gnu.org>
46074
46075         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
46076
46077 2004-07-09  Simon Josefsson  <jas@extundo.com>
46078
46079         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
46080         failed without this.)
46081
46082 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46083
46084         * modules/chown (Files): Add lib/fchown-stub.c, since
46085         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
46086
46087 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46088
46089         * lib/fchown-stub.c: New file.
46090
46091 2004-06-24  Jim Meyering  <jim@meyering.net>
46092
46093         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
46094
46095 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
46096
46097         * modules/argz: Omit "#include".
46098
46099         * MODULES.html.sh (func_all_modules): Add calloc, to match
46100         2004-06-01 addition of calloc module.
46101
46102 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
46103
46104         * m4/argz.m4: New file, which is autoupdated from libtool.
46105
46106 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
46107
46108         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
46109         libtool.
46110
46111 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
46112
46113         * config/srclist-update: Don't insist on "USA." before the
46114         close-comment, as libtool omits the period and puts the */ on a
46115         separate line.
46116         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
46117         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
46118
46119 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
46120
46121         * modules/argz: New file.
46122         * MODULES.html.sh (func_all_modules): Add argz.
46123
46124 2004-06-12  Jim Meyering  <jim@meyering.net>
46125         and  Paul Eggert  <eggert@cs.ucla.edu>
46126
46127         * modules/hash (Files): Add lib/xalloc.h.
46128         * modules/pipe (Depends-on): Add wait-process.
46129         * modules/stat (Depends-on): Add xalloc.
46130         * modules/userspec (Files): Add lib/userspec.h.
46131         * modules/xstrto
46132
46133         Upgrade from gettext-0.13.
46134         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
46135         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
46136         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
46137
46138 2004-06-10  Jim Meyering  <jim@meyering.net>
46139
46140         * lib/calloc.c: New file.
46141
46142 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
46143
46144         * lib/getdate.y (yylex): Allow space between sign and number.
46145         Problem reported by Dan Jacobson.
46146
46147 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
46148
46149         Merge from coreutils CVS.
46150
46151         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
46152         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
46153         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
46154         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
46155         xstrtol.m4: Fix copyright date and/or serial number.
46156
46157         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
46158         See if we need an fchown replacement.
46159         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
46160         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
46161         and use the replacement function if we detect either defect.
46162
46163         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
46164         gl_UTIMECMP.
46165
46166 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
46167         and  Jim Meyering  <jim@meyering.net>
46168
46169         Merge from coreutils CVS.
46170
46171         * lib/stat-macros.h: New file, with contents from file-type.h
46172         and coreutils' system.h.
46173         * lib/file-type.c: Include "stat-macros.h".
46174         * lib/file-type.h (file_type): Move all macro definitions to new file,
46175         stat-macros.h.
46176
46177         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
46178         Wrap old code with this conditional.
46179         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
46180         function that does not dereference symlinks.
46181         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
46182
46183         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
46184         dependency problems.
46185         (xreadlink): Accept new arg SIZE, for efficiency.
46186         All decls and uses changed.
46187         * lib/xreadlink.h: Include <stddef.h>, for size_t.
46188
46189         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
46190         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
46191
46192         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
46193         sysexits.h.
46194
46195 2004-06-01  Jim Meyering  <jim@meyering.net>
46196
46197         * m4/calloc.m4: New file.
46198
46199 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
46200
46201         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
46202         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
46203         Also, fix a typo in a diagnostic.
46204
46205 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
46206
46207         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
46208         or AC_FUNC_REALLOC.
46209
46210 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
46211
46212         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
46213         macros to be defined.
46214         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
46215         the allocator returns NULL because the requested size is zero.
46216
46217 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
46218
46219         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
46220         var.  Add comment explaining why libc still defines it.  This
46221         merges the following patch from glibc:
46222         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
46223
46224 2004-05-20  Andreas Schwab  <schwab@suse.de>
46225
46226         * m4/free.m4: Replace free if it not known to work, not the other
46227         way round.
46228
46229 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
46230
46231         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
46232         present in glibc since revision 1.1 of this file.
46233         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
46234         obstack_alignment_mask, obstack_alloc, obstack_base,
46235         obstack_blank, obstack_blank_fast, obstack_chunk_size,
46236         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
46237         obstack_grow0, obstack_init, obstack_int_grow,
46238         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
46239         obstack_next_free, obstack_object_size, obstack_ptr_grow,
46240         obstack_ptr_grow_fast, obstack_room): Remove declarations of
46241         nonexistent functions.
46242
46243 2004-05-18  Karl Berry  <karl@gnu.org>
46244
46245         * config/srclist.txt: break link for vasnprintf.c.
46246
46247 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
46248
46249         Port obstack to the AS/400, where pointers are 16 bytes wide and
46250         you cannot cast an integer to a valid pointer.  This patch is
46251         currently waiting to be integrated into glibc; see
46252         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
46253
46254         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
46255         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
46256         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
46257         (struct obstack): temp member is now a union of a pointer and
46258         an integer, instead of an integer.  All integer uses changed.
46259         This does not affect the physical layout of struct obstack,
46260         except on hosts (like the AS/400) where the size or alignment of
46261         void * is greater than that of ptrdiff_t.
46262         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
46263         __STDC__)]: Store temporary in pointer member of union, not
46264         integer member.
46265         * lib/obstack.c: Include <stddef.h>, for offsetof.
46266         (struct fooalign): Remove; it doesn't need a name.
46267         (union fooround): Change double to long double, and add void *.
46268         (DEFAULT_ALIGNMENT): Use offsetof to compute.
46269         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
46270         not a macro.  Hence the values are always int; so remove all
46271         casts-to-int in uses.
46272
46273 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
46274
46275         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
46276         we can get this patch merged into glibc.
46277
46278 2004-05-17  Derek R. Price  <derek@ximbiot.com>
46279             Paul Eggert  <eggert@cs.ucla.edu>
46280
46281         * m4/argp: Depend on alloca.
46282
46283 2004-05-17  Derek R. Price  <derek@ximbiot.com>
46284             Paul Eggert  <eggert@cs.ucla.edu>
46285
46286         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
46287         freecoding.
46288
46289 2004-05-17  Bruno Haible  <bruno@clisp.org>
46290
46291         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
46292         precision that consists of a '.' followed by an empty digit string.
46293         Patch by Tor Lillqvist <tml@iki.fi>.
46294
46295 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
46296
46297         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
46298         for backward compatibility with older code.  We need our own
46299         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
46300         it under some other name, and our alloca.h will define it.
46301
46302 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
46303             Derek Price  <derek@ximbiot.com>
46304
46305         * lib/alloca.c: Include <alloca.h>, to get our interface.
46306         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
46307         include <alloca.h> first.  Use C89 prototype for alloca; this
46308         requires including <stddef.h> for size_t.  Use extern "C" if C++.
46309         Use #elif for simplicity, since we can assume C89 now.
46310         Don't try to source the system alloca.h since it will not be found
46311         and to prevent recursively including its replacement.
46312         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
46313         * lib/regex.c: Likewise.
46314
46315 2004-05-16  Derek Price  <derek@ximbiot.com>
46316             Paul Eggert  <eggert@cs.ucla.edu>
46317
46318         getline cleanup.  This changes the getndelim2 API: both order of
46319         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
46320         no delimiter).
46321
46322         * lib/getline.c: Don't include stddef.h or stdio.h, since our
46323         interface does that.
46324         (getline): Always use getdelim, so that we don't have two
46325         copies of this code.
46326         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
46327         if available.
46328         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
46329         (GETNDELIM2_MAXIMUM): New macro.
46330         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
46331         instead of the old practice of delim2==0.  All callers changed.
46332         Return -1 on overflow, instead of returning junk.
46333         Do not set *linesize unless allocation succeeds.
46334         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
46335         that we include sys/types.h.
46336         * lib/getnline.h: Likewise.
46337         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
46338         (getndelim2): Reorder arguments.
46339         * lib/getnline.c (getnline, getndelim):
46340         Don't discard the NMAX argument.
46341         (getnline): Invoke getndelim, to avoid code duplication.
46342         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
46343         of (size_t) -1 by callers of the getnline family.
46344
46345 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
46346
46347         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
46348         Check for gettimeofday.
46349         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
46350         Check for settimeofday, stime.
46351
46352 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
46353
46354         * lib/nanosleep.c (suspended): Change its type from int to
46355         sig_atomic_t volatile.
46356         (first_call): Make it private to rpl_nanosleep, and have it
46357         be zero initially as that's a bit faster.
46358         (my_usleep): Round up fractional times instead of truncating them,
46359         as this is the usual meaning for 'sleep'.
46360
46361         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
46362         doesn't work.
46363         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
46364         (ENOSYS): Define if not defined.
46365         (settime): Fall back on stime if it exists and settimeofday fails.
46366         But don't bother with fallbacks if a method fails with errno == EPERM.
46367
46368 2004-05-11  Jim Meyering  <jim@meyering.net>
46369
46370         Prior to this change, the save_cwd caller required read access to the
46371         current directory on most systems (ones with the fchdir function).
46372
46373         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
46374         fails, try write-only, and finally, resort to using xgetcwd.
46375
46376 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
46377
46378         * lib/obstack.c, obstack.h: Import changes from libc.
46379
46380 2004-04-28  Bruno Haible  <bruno@clisp.org>
46381
46382         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
46383         also implicitly appends .exe to executables.
46384         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
46385         accepts Windows pathnames.
46386         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
46387         Treat Cygwin like Windows, since it now accepts Windows pathnames.
46388         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
46389         Treat Cygwin like Windows, since it now accepts Windows pathnames.
46390         Reported by Derek Robert Price <derek@ximbiot.com>.
46391
46392 2004-04-21  Karl Berry  <karl@gnu.org>
46393
46394         * config/srclist.txt (localcharset.c): break sync.
46395
46396 2004-04-20  Paul Eggert  <eggert@twinsun.com>
46397
46398         * m4/host-os.m4: Add a copyright notice.
46399
46400 2004-04-20  Jim Meyering  <jim@meyering.net>
46401
46402         Change UTILS_ to gl_ in AC_DEFINE'd names.
46403         Change utils_- and jm_-prefixed variables, too.
46404         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
46405         UTILS_FUNC_MKDIR_TRAILING_SLASH.
46406         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
46407
46408         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
46409         Don't emit trailing blanks.
46410         Also rename jm_-prefixed variables to have gl_ prefix.
46411
46412         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
46413         Also rename jm_-prefixed variables to have gl_ prefix.
46414
46415         * m4/jm-macros.m4: Reflect the renamings.
46416         * m4/prereq.m4: Likewise.
46417
46418 2004-04-20  Jim Meyering  <jim@meyering.net>
46419
46420         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
46421         memory.
46422
46423 2004-04-20  Jim Meyering  <jim@meyering.net>
46424             Bruno Haible  <bruno@clisp.org>
46425
46426         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
46427         memory when realloc fails.
46428
46429 2004-04-19  Jim Meyering  <jim@meyering.net>
46430
46431         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
46432         now that readutmp.c may call `free (0)'.
46433
46434 2004-04-19  Bruno Haible  <bruno@clisp.org>
46435
46436         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
46437         * m4/inttypes_h.m4: Likewise.
46438         * m4/stdint_h.m4: Likewise.
46439         * m4/intmax_t.m4: Likewise.
46440         * m4/uintmax_t.m4: Likewise.
46441
46442 2004-04-18  Jim Meyering  <jim@meyering.net>
46443
46444         * m4/prereq.m4: Don't forbid jm_ prefix.
46445
46446         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
46447         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
46448         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
46449         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
46450         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
46451         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
46452         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
46453         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
46454         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
46455         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
46456         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
46457         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
46458         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
46459         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
46460         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
46461         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
46462         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
46463         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
46464         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
46465
46466 2004-04-18  Jim Meyering  <jim@meyering.net>
46467
46468         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
46469         failure, don't leak memory and do call END_UTMP_ENT.
46470
46471 2004-04-16  Jim Meyering  <jim@meyering.net>
46472
46473         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
46474         coreutils' stat program.
46475         (gl_PREREQ): Don't require jm_PREREQ_STAT.
46476
46477 2004-04-11  Paul Eggert  <eggert@twinsun.com>
46478
46479         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
46480         C89.
46481         (CHAR_BIT): Remove, since we assume C89.
46482         Include <stdint.h> if available, as per current Autoconf CVS advice.
46483
46484 2004-03-31  Jim Meyering  <jim@meyering.net>
46485
46486         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
46487         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
46488         * m4/xalloc.m4: Likewise.
46489
46490 2004-03-30  Paul Eggert  <eggert@twinsun.com>
46491
46492         Merge from coreutils.
46493
46494         * m4/inttostr.m4: New file.
46495         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
46496         Require AM_STDBOOL_H and gl_TIMESPEC instead.
46497         Require gl_CLOCK_TIME.
46498         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
46499
46500 2004-03-30  Paul Eggert  <eggert@twinsun.com>
46501
46502         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
46503         not bool, to be more consistent with Unix conventions.
46504         Suggested by Bruno Haible.
46505
46506         Merge from coreutils.
46507
46508         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
46509         * lib/umaxtostr.c: New files.
46510
46511         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
46512         the usual <time.h> dance.
46513         (get_date): Change signature to support fractional time stamps.
46514         All callers changed.
46515         * lib/getdate.y: Include "getdate.h" first, as we can now
46516         assume C89 and don't need to worry about 'const'.
46517         Similarly, include "unlocked-io.h" near start, not in middle.
46518         Include <limits.h>.
46519         (textint.value): Use long int rather than int.
46520         (textint.digits): Use size_t rather than int.
46521         (BILLION, LOG10_BILLION): New constants.
46522         (parser_control): New member rel_ns.  Members day_ordinal,
46523         time_zone, month, day, hour, minutes, rel_year, rel_month,
46524         rel_day, rel_hour, rel_minutes, rel_seconds
46525         are now long int, not int.  Member seconds is now struct timespec,
46526         not int.  New member timespec_seen.  Members dates_seen, days_seen,
46527         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
46528         not int.
46529         (%union.intval): Now long int, not int.
46530         New member timespec.
46531         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
46532         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
46533         (spec): Now is a timespec or an item list.
46534         (timespec, items): New nonterminals.
46535         (time, rel, relunit, number, get_date):
46536         Add support for fractional seconds.
46537         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
46538         (gmtime, localtime, mktime): Remove decls; not needed with C89.
46539         (to_hour): First arg is now long int, not int.
46540         (to_year): Returns long int, not int.
46541         Don't treat year -70 like 70.
46542         (tm_diff): Returns long int, not int.
46543         (lookup_word): Use bool instead of int when appropriate.
46544         (yylex): Use size_t for count, not int.
46545         Detect overflow when parsing large integer constants.
46546         Add support for fractions.
46547         (get_date): Make pointers 'const' if possible.
46548         Use more-portable code to detect integer overflow.
46549         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
46550         Don't use ctime; it's not reliable if the year has >4 digits.
46551
46552         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
46553         This is for compatibility with BSD.
46554
46555         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
46556         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
46557         From coreutils' system.h.
46558
46559         * lib/userspec.c: Don't include "posixver.h".
46560         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
46561         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
46562         compatible extension.  Simplify code by removing a boolean int
46563         that was always nonzero if a string was nonnull.
46564
46565 2004-03-30  Jim Meyering  <jim@meyering.net>
46566
46567         Merge from coreutils.
46568
46569         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
46570         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
46571         on some systems one must include <grp.h> before it.
46572         Reported by Christian Krackowizer.
46573
46574 2004-03-30  Jim Meyering  <jim@meyering.net>
46575
46576         Merge from coreutils.
46577
46578         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
46579
46580         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
46581         an empty input stream.
46582
46583         * lib/readtokens.c: Include <stdbool.h>.
46584         (readtoken): Use `size_t' rather than int/long.
46585         All callers adjusted.
46586         Use `bool' rather than `int' where appropriate.
46587         Use memset rather than an explicit loop.
46588         Use x2nrealloc rather than xrealloc.
46589         Allow the use of `\0' as a delimiter.
46590         (readtokens): Likewise.
46591         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
46592
46593 2004-03-30  Jim Meyering  <jim@meyering.net>
46594
46595         * m4/realloc.m4: Remove file, since now it does no more than
46596         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
46597         the `configure.ac' section of module/realloc.
46598         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
46599
46600 2004-03-30  Bruno Haible  <bruno@clisp.org>
46601
46602         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
46603         nonnull.
46604
46605 2004-03-29  Paul Eggert  <eggert@twinsun.com>
46606
46607         Merge changes to getloadavg.c from coreutils and Emacs.
46608
46609         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
46610         Define to an expression, not to the empty string.
46611         Include cloexec.h and xalloc.h.
46612         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
46613         Use set_cloexec_flag rather than rolling our own.
46614         * lib/cloexec.c, lib/cloexec.h: New files.
46615
46616 2004-03-29  Paul Eggert  <eggert@twinsun.com>
46617
46618         * m4/cloexec.m4: New file.
46619
46620 2004-03-18  Paul Eggert  <eggert@twinsun.com>
46621
46622         * lib/getopt.h: Sync with libc CVS.
46623
46624 2004-03-18  Paul Eggert  <eggert@twinsun.com>
46625             Bruno Haible  <bruno@clisp.org>
46626
46627         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
46628         mbswidth.
46629
46630 2004-03-18  Paul Eggert  <eggert@twinsun.com>
46631             Bruno Haible  <bruno@clisp.org>
46632
46633         * lib/mbswidth.h: Include <wchar.h> only if
46634         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
46635         <wchar.h>.
46636         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
46637
46638 2004-03-09  Paul Eggert  <eggert@twinsun.com>
46639
46640         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
46641         Sync with libc CVS.
46642         * lib/getopt_int.h: New file, also synced from libc.
46643
46644 2004-03-09  Paul Eggert  <eggert@twinsun.com>
46645
46646         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
46647         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
46648         Bring back getopt.c, getopt.h, getopt1.c.
46649
46650 2004-03-07  Paul Eggert  <eggert@twinsun.com>
46651
46652         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
46653         All uses changed.  Check for sa_sigaction member; this fixes
46654         a bug first reported by Jason Andrade in
46655         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
46656
46657 2004-03-07  Paul Eggert  <eggert@twinsun.com>
46658
46659         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
46660         '#if' expressions.  Unlike the code it replaces, it does not
46661         depend on (defined _SC_PAGESIZE).  However, it does depend on
46662         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
46663         first reported by Jason Andrade in
46664         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
46665
46666 2004-02-25  Simon Josefsson  <jas@extundo.com>
46667
46668         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
46669
46670 2004-02-25  Simon Josefsson  <jas@extundo.com>
46671
46672         * lib/strdup.h: New file.
46673         * lib/strdup.c: Include it.
46674         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
46675         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
46676
46677 2004-02-23  Karl Berry  <karl@gnu.org>
46678
46679         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
46680         (from fencepost.gnu.org:/gd/gnuorg).
46681
46682 2004-02-23  Karl Berry  <karl@gnu.org>
46683
46684         * config/srclistvars.sh (GNUORG) [karl]: redefine.
46685         * config/srclist.txt: add maintain/standards documents.
46686
46687 2004-02-18  Bruno Haible  <bruno@clisp.org>
46688
46689         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
46690         Reported by Derek Robert Price <derek@ximbiot.com>.
46691
46692 2004-02-16  Karl Berry  <karl@gnu.org>
46693
46694         * config/mkinstalldirs, install-sh: update from automake.
46695
46696 2004-02-06  Karl Berry  <karl@gnu.org>
46697
46698         * m4/po.m4: update from gettext 0.14.1.
46699
46700 2004-02-06  Karl Berry  <karl@gnu.org>
46701
46702         * lib/config.charset: update from gettext 0.14.1.
46703
46704 2004-02-05  Paul Eggert  <eggert@twinsun.com>
46705
46706         Add comments and code, prompted by suggestions from Bruno Haible
46707         for sh-quote.
46708         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
46709         describing the enum quoting_style values.
46710         * lib/quotearg.c (quotearg_alloc): New function.
46711         (quotearg_buffer_restyled): Treat lone { and } as special.
46712         Treat = as special.  Work around bug with older shells
46713         that "see" a '\' that is really the 2nd byte of a multibyte char.
46714         Quote empty string with shell_quoting_style.
46715
46716 2004-02-03  Bruno Haible  <bruno@clisp.org>
46717
46718         * m4/pipe.m4: New file, from GNU gettext.
46719
46720 2004-02-03  Bruno Haible  <bruno@clisp.org>
46721
46722         * lib/pipe.h: New file, from GNU gettext.
46723         * lib/pipe.c: New file, from GNU gettext.
46724
46725 2004-01-27  Bruno Haible  <bruno@clisp.org>
46726
46727         * m4/execute.m4: New file, from GNU gettext.
46728
46729 2004-01-27  Bruno Haible  <bruno@clisp.org>
46730
46731         * lib/execute.h: New file, from GNU gettext.
46732         * lib/execute.c: New file, from GNU gettext.
46733         * lib/w32spawn.h: New file, from GNU gettext.
46734
46735 2004-01-24  Paul Eggert  <eggert@twinsun.com>
46736
46737         Merge from diffutils.
46738
46739         * lib/file-type.c (file_type): Add typed memory objects.
46740         * lib/file-type.h (S_TYPEISTMO): New macro.
46741
46742         * lib/c-stack.h (c_stack_action): Remove argv argument.
46743         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
46744         (die): Don't calculate message unless segv_action returns.
46745         (get_stack_location, min_address_from_argv, max_address_from_argv,
46746         volatile stack_base, volatile_stack_size): Remove.
46747         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
46748         that every segmentation violation is a stack overflow.  (Ouch!)
46749         See Debian bug 136249 (still outstanding) for more info about why
46750         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
46751
46752 2004-01-24  Paul Eggert  <eggert@twinsun.com>
46753
46754         Exit-status fix from coreutils.
46755
46756         Use exit_failure consistently in place of EXIT_FAILURE,
46757         so that program exit statuses are consistent on failure.
46758
46759         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
46760         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
46761         * lib/argmatch.h: Comment fix to match the above.
46762         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
46763         Now a macro referring to exit_failure, instead of a separate
46764         variable.  Include "exitfail.h" to get it.
46765         * lib/xstrtol.h: Include "exitfail.h".
46766         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
46767
46768         * lib/long-options.c (parse_long_options): Use prototype
46769         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
46770         for clarity.
46771
46772 2004-01-21  Jim Meyering  <jim@meyering.net>
46773
46774         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
46775         so as not to conflict with a different-sized __mktime_internal
46776         function in GNU libc.
46777         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
46778         Problem building statically-linked `ls' reported by Michael Brunnbauer.
46779
46780 2004-01-20  Karl Berry  <karl@gnu.org>
46781
46782         * config/config.guess: update from config.
46783
46784         * config/srclistvars.sh: GNUWWWLICENSES for karl.
46785
46786 2004-01-20  Bruno Haible  <bruno@clisp.org>
46787
46788         Safer stack allocation.
46789         * lib/setenv.c: Include allocsa.h.
46790         (alloca): Remove fallback definition.
46791         (freea): Remove macro.
46792         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
46793         instead of freea.
46794
46795 2004-01-20  Bruno Haible  <bruno@clisp.org>
46796
46797         * m4/eealloc.m4: New file, from GNU gettext.
46798
46799 2004-01-20  Bruno Haible  <bruno@clisp.org>
46800
46801         * m4/allocsa.m4: New file, from GNU gettext.
46802
46803 2004-01-20  Bruno Haible  <bruno@clisp.org>
46804
46805         * lib/xallocsa.h: New file, from GNU gettext.
46806         * lib/xallocsa.c: New file, from GNU gettext.
46807
46808 2004-01-20  Bruno Haible  <bruno@clisp.org>
46809
46810         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
46811
46812 2004-01-20  Bruno Haible  <bruno@clisp.org>
46813
46814         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
46815         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
46816         specially.
46817
46818 2004-01-20  Bruno Haible  <bruno@clisp.org>
46819
46820         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
46821         patch.
46822
46823 2004-01-20  Bruno Haible  <bruno@clisp.org>
46824
46825         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
46826
46827 2004-01-20  Bruno Haible  <bruno@clisp.org>
46828
46829         * lib/eealloc.h: New file.
46830
46831 2004-01-20  Bruno Haible  <bruno@clisp.org>
46832
46833         * lib/binary-io.h: Avoid warnings on Cygwin.
46834
46835 2004-01-20  Bruno Haible  <bruno@clisp.org>
46836
46837         * lib/allocsa.h: New file, from GNU gettext.
46838         * lib/allocsa.c: New file, from GNU gettext.
46839
46840 2004-01-18  Karl Berry  <karl@gnu.org>
46841
46842         * doc/gpl.texi, doc/lgpl.texi: new files.
46843
46844 2004-01-18  Karl Berry  <karl@gnu.org>
46845
46846         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
46847         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
46848
46849 2004-01-15  Paul Eggert  <eggert@twinsun.com>
46850
46851         Merge from coreutils.
46852
46853         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
46854         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
46855         (gl_DEFAULT_POSIX2_VERSION): Move
46856         the documentation from 'configure' into 'config.hin',
46857         so that 'configure --help' isn't burdened by it and
46858         we don't have to worry about its formatting there.
46859         Reword the documentation so that it's more succinct
46860         and can be run together into a single paragraph.
46861         * m4/same.m4 (gl_SAME): Check for pathconf.
46862
46863 2004-01-15  Paul Eggert  <eggert@twinsun.com>
46864
46865         Merge from coreutils.
46866
46867         * lib/posixver.c: Include posixver.h.
46868
46869         * lib/same.c: Include <stdbool.h>, <limits.h>.
46870         (_POSIX_NAME_MAX): Define if not defined.
46871         (MIN): New macro.
46872         (same_name): If file names are silently truncated, report
46873         that the file names are the same if they are the same after
46874         the silent truncation.
46875
46876         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
46877         conversion function.
46878         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
46879         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
46880         longer needed.
46881
46882 2004-01-15  Jim Meyering  <jim@meyering.net>
46883
46884         Merge from coreutils.
46885
46886         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
46887         if no library is required.
46888         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
46889         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
46890         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
46891         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
46892         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
46893         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
46894         value, $ac_cv_search_crypt, if it's "none required".
46895         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
46896         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
46897         not gl_FUNC_GETLOADAVG.
46898         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
46899         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
46900
46901 2004-01-15  Jim Meyering  <jim@meyering.net>
46902
46903         Merge from coreutils.
46904
46905         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
46906         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
46907         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
46908
46909         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
46910         optional configure-time default.
46911
46912         * lib/version-etc.c (version_etc_copyright): Update copyright date.
46913
46914         * lib/xreadlink.c (xreadlink): Correct outdated comment.
46915
46916 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
46917
46918         Merge from coreutils.
46919
46920         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
46921         value, $ac_cv_search_nanosleep, if it's "none required".
46922
46923 2004-01-14  Paul Eggert  <eggert@twinsun.com>
46924
46925         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
46926         with like-named macro in fnmatch.c.
46927         (EXT): Use an internal constant instead.
46928
46929         Merge fnmatch patches from glibc.
46930         * lib/fnmatch.c (mbsinit): Remove define.
46931         Add libc_hidden_ver (__fnmatch, fnmatch).
46932         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
46933         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
46934
46935 2004-01-14  Karl Berry  <karl@gnu.org>
46936
46937         * config/install-sh: update from automake.
46938
46939 2004-01-13  Karl Berry  <karl@gnu.org>
46940
46941         * config/install-sh: update from automake.
46942
46943 2004-01-09  Karl Berry  <karl@gnu.org>
46944
46945         * config/install-sh: update from automake.
46946
46947 2004-01-05  Karl Berry  <karl@gnu.org>
46948
46949         * config/config.{sub,guess}: update from config.
46950
46951 2003-12-31  Karl Berry  <karl@gnu.org>
46952
46953         * config/depcomp: update from automake.
46954
46955 2003-12-14  Karl Berry  <karl@gnu.org>
46956
46957         * lib/config.charset: update from gettext-runtime.
46958
46959 2003-12-03  Paul Eggert  <eggert@twinsun.com>
46960
46961         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
46962         Bug reported by Alfred M. Szmidt.
46963
46964 2003-12-03  Bruno Haible  <bruno@clisp.org>
46965
46966         * m4/gettext.m4: Upgrade from gettext-0.13.
46967         * m4/po.m4: Upgrade from gettext-0.13.
46968         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
46969         * m4/intmax.m4: New file, from gettext-0.13.
46970         * m4/printf-posix.m4: New file, from gettext-0.13.
46971
46972 2003-11-29  Karl Berry  <karl@gnu.org>
46973
46974         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
46975
46976 2003-11-25  Paul Eggert  <eggert@twinsun.com>
46977             Bruno Haible  <bruno@clisp.org>
46978
46979         * lib/printf-parse.h: Don't include sys/types.h.
46980         (ARG_NONE): New macro.
46981         (char_directive): Change type of *arg_index fields to size_t.
46982         * lib/printf-parse.c: Don't include sys/types.h.
46983         (SSIZE_MAX): Remove macro.
46984         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
46985         Remove unnecessary overflow check.
46986         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
46987         fields.
46988
46989 2003-11-25  Bruno Haible  <bruno@clisp.org>
46990
46991         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
46992
46993 2003-11-25  Bruno Haible  <bruno@clisp.org>
46994
46995         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
46996         gt_TYPE_SSIZE_T.
46997
46998 2003-11-24  Paul Eggert  <eggert@twinsun.com>
46999
47000         * modules/alloca: Remove dependency on xalloc.
47001
47002 2003-11-24  Paul Eggert  <eggert@twinsun.com>
47003
47004         * lib/alloca.c: Remove dependency on xalloc module.
47005         (xalloc_die): Remove.
47006         (memory_full) [!defined emacs]: New macro.
47007         [!defined emacs]: Don't include xalloc.h.
47008         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
47009         address arithmetic overflows.  Change datatypes a bit to avoid
47010         unnecessary casts.
47011
47012 2003-11-22  Jim Meyering  <jim@meyering.net>
47013
47014         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
47015         s/size/size_t/.
47016
47017 2003-11-21  Karl Berry  <karl@gnu.org>
47018
47019         * config/config.{sub,guess}: update from config.
47020
47021 2003-11-18  Karl Berry  <karl@gnu.org>
47022
47023         * config/config.{sub,guess}: update from config.
47024
47025         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
47026
47027 2003-11-17  Paul Eggert  <eggert@twinsun.com>
47028
47029         * README: Mention that S+T cannot overflow if S is the size of
47030         an existing object and T is sufficiently small.
47031
47032 2003-11-17  Jim Meyering  <jim@meyering.net>
47033
47034         On systems without utime and without a utimes function capable of
47035         dealing with a NULL struct utimbuf* argument, this utime replacement
47036         could -- in unusual circumstances -- leak a file descriptor.
47037         * lib/utime.c: Include <unistd.h> and <errno.h>.
47038         (utime_null): Be sure to close `fd' and to preserve errno.
47039         Reported by Geoff Collyer via Arnold Robbins.
47040
47041 2003-11-17  Bruno Haible  <bruno@clisp.org>
47042
47043         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
47044         (Depends-on): Add xsize.
47045
47046 2003-11-17  Bruno Haible  <bruno@clisp.org>
47047
47048         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
47049
47050 2003-11-17  Bruno Haible  <bruno@clisp.org>
47051
47052         * lib/vasnprintf.c (alloca): Remove fallback definition.
47053         (freea): Remove definition.
47054         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
47055         Reported by Paul Eggert.
47056
47057 2003-11-16  Paul Eggert  <eggert@twinsun.com>
47058             Bruno Haible  <bruno@clisp.org>
47059
47060         Protect against address arithmetic overflow.
47061         * lib/printf-args.h: Include stddef.h.
47062         (arguments): Change type of field 'count' to size_t.
47063         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
47064         'unsigned int' where appropriate.
47065         * lib/printf-parse.h: Include sys/types.h.
47066         (char_directive): Change type of *arg_index fields to ssize_t.
47067         (char_directives): Change type of fields 'count', max_*_length to
47068         size_t.
47069         * lib/printf-parse.c: Include sys/types.h and xsize.h.
47070         (SSIZE_MAX): Define fallback value.
47071         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
47072         instead of 'int' where appropriate. Check a_allocated, d_allocated
47073         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
47074         * lib/vasnprintf.c: Include xsize.h.
47075         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
47076         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
47077         overflow. Avoid wraparound when converting a width or precision from
47078         decimal to binary.
47079
47080 2003-11-16  Bruno Haible  <bruno@clisp.org>
47081
47082         Update from GNU gettext.
47083         * lib/printf-parse.c: Generalize to it can be compiled for wide
47084         strings.
47085         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
47086         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
47087         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
47088         SNPRINTF): New macros.
47089         Don't include <alloca.h> if the file is used inside libintl.
47090         (local_wcslen): New function, for Solaris 2.5.1.
47091         (VASNPRINTF): Use it instead of wcslen.
47092
47093 2003-11-16  Bruno Haible  <bruno@clisp.org>
47094
47095         * lib/xsize.h (xmax): New function.
47096         (xsum, xsum3, xsum4): Declare as "pure" functions.
47097
47098 2003-11-12  Paul Eggert  <eggert@twinsun.com>
47099
47100         * modules/xalloc (Files): Undo latest change, since xalloc.h
47101         no longer needs SIZE_MAX or PTRDIFF_MAX.
47102
47103 2003-11-12  Paul Eggert  <eggert@twinsun.com>
47104
47105         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
47106         gl_PTRDIFF_MAX.
47107
47108 2003-11-12  Paul Eggert  <eggert@twinsun.com>
47109
47110         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
47111         "return", to pacify some unknown compiler.  Problem reported
47112         by Joerg Schilling.
47113
47114 2003-11-12  Paul Eggert  <eggert@twinsun.com>
47115
47116         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
47117         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
47118         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
47119         heuristic is just as accurate as far as we know, and it removes a
47120         dependency on size_max.m4 and ptrdiff_max.m4.
47121
47122 2003-11-11  Bruno Haible  <bruno@clisp.org>
47123
47124         * modules/xsize (Files): Add m4/size_max.m4.
47125         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
47126
47127 2003-11-11  Bruno Haible  <bruno@clisp.org>
47128
47129         * m4/size_max.m4: New file.
47130         * m4/ptrdiff_max.m4: New file.
47131         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
47132         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
47133         (gl_XALLOC): Invoke it.
47134
47135 2003-11-11  Bruno Haible  <bruno@clisp.org>
47136
47137         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
47138         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
47139         defined.
47140
47141 2003-11-10  Paul Eggert  <eggert@twinsun.com>
47142
47143         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
47144         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
47145         rejected some allocations of exactly SIZE_MAX - 2 bytes.
47146         From Bruno Haible.
47147         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
47148         not (size_t) -1, since it's defined here.
47149
47150 2003-11-09  Karl Berry  <karl@gnu.org>
47151
47152         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
47153
47154 2003-11-06  Paul Eggert  <eggert@twinsun.com>
47155
47156         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
47157         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
47158         Reject sizes of exactly SIZE_MAX bytes.
47159         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
47160         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
47161
47162 2003-11-05  Bruno Haible  <bruno@clisp.org>
47163
47164         * lib/xsize.h: Include limits.h, to avoid a possible collision with
47165         SIZE_MAX defined in <limits.h> on Solaris.
47166
47167 2003-11-04  Jim Meyering  <jim@meyering.net>
47168
47169         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
47170         variable names, rather than @VAR@.
47171         * modules/poll: Likewise.
47172
47173 2003-11-04  Bruno Haible  <bruno@clisp.org>
47174
47175         * modules/xsize: New file.
47176         * modules/linebreak: Depend on xsize.
47177         * MODULES.html.sh (func_all_modules): Add xsize.
47178
47179 2003-11-04  Bruno Haible  <bruno@clisp.org>
47180
47181         * m4/xsize.m4: New file.
47182
47183 2003-11-04  Bruno Haible  <bruno@clisp.org>
47184
47185         * lib/xsize.h: New file.
47186         * lib/linebreak.c: Include xsize.h.
47187         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
47188         argument for overflow.
47189         Suggested by Paul Eggert.
47190
47191 2003-11-03  Karl Berry  <karl@gnu.org>
47192
47193         * config/config.{guess,sub}: update from config.
47194
47195 2003-11-03  Jim Meyering  <jim@meyering.net>
47196
47197         * modules/userspec (lib_SOURCES): Add userspec.h.
47198         (Include): Add "userspec.h".
47199         Improve description.
47200
47201 2003-11-03  Jim Meyering  <jim@meyering.net>
47202
47203         * lib/userspec.c: Include "userspec.h".
47204         * lib/userspec.h: New file.
47205
47206 2003-11-03  Bruno Haible  <bruno@clisp.org>
47207
47208         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
47209
47210 2003-11-03  Bruno Haible  <bruno@clisp.org>
47211
47212         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
47213         available, to avoid (extremely rare) race condition.
47214         Suggested by Paul Eggert.
47215
47216 2003-11-02  Karl Berry  <karl@gnu.org>
47217
47218         * config/srclist.txt (vasprintf.c): sync broken, sigh.
47219
47220 2003-10-31  Paul Eggert  <eggert@twinsun.com>
47221
47222         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
47223         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
47224         (read_filesystem_list): Set and use me_type_malloced.
47225         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
47226         whatever the type happens to be), for brevity and consistency.
47227         Check for size calculation overflow on Alphas running OSF/1.
47228
47229 2003-10-31  Jim Meyering  <jim@meyering.net>
47230
47231         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
47232
47233         * lib/linebuffer.c: Include <string.h> for declaration of memset.
47234
47235 2003-10-30  Paul Eggert  <eggert@twinsun.com>
47236             Bruno Haible  <bruno@clisp.org>
47237
47238         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
47239         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
47240
47241 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
47242
47243         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
47244         netbsd*-gnu*.  Suggested by Robert Millan.
47245
47246 2003-10-29  Paul Eggert  <eggert@twinsun.com>
47247
47248         * modules/group-member: Depend on stdbool.
47249
47250 2003-10-29  Paul Eggert  <eggert@twinsun.com>
47251
47252         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
47253
47254 2003-10-29  Paul Eggert  <eggert@twinsun.com>
47255
47256         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
47257         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
47258         after the 'gnu' in these cases.  This fixes some bugs in the
47259         previous change, and is based on suggestions by Robert Millan.
47260
47261 2003-10-29  Paul Eggert  <eggert@twinsun.com>
47262
47263         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
47264         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
47265         no longer needed.
47266         * lib/quotearg.c (quotearg_n_options): Use it.
47267         * lib/group-member.c: Include <stdbool.h>.
47268         (free_group_info): Arg is now const *; don't free arg.
47269         (get_group_info): Now returns bool and accepts struct group_info *,
47270         rather than returning a malloc'ed struct group_info *.
47271         All uses changed.  Check for overflow in internal size calculation.
47272
47273         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
47274         rather than xmalloc/xrealloc.
47275         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
47276         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
47277         conformance bug: the old code used a pointer after freeing the
47278         storage that it addressed.
47279         * lib/hash.c (hash_initialize): Simplify the code by using
47280         xalloc_oversized rather than doing it by hand.
47281         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
47282         the buffer preserved.  Use free and xmalloc instead.
47283         * lib/quotearg.c (quotearg_n_options): Likewise.
47284         Use a simpler test for size overflow.  Don't use xalloc_oversized
47285         because unsigned int might be wider than size_t (!); this suggests
47286         that we should switch from unsigned int to size_t for slot numbers.
47287
47288 2003-10-28  Paul Eggert  <eggert@twinsun.com>
47289
47290         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
47291         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
47292         NetBSD kernels.  Requested by Richard Stallman.
47293
47294 2003-10-27  Paul Eggert  <eggert@twinsun.com>
47295
47296         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
47297         to allocate the returned structure.  Do not allocate a subarray,
47298         as x2nrealloc will do that.
47299         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
47300         instead of xnrealloc.
47301         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
47302
47303 2003-10-27  Bruno Haible  <bruno@clisp.org>
47304
47305         * lib/stdbool_.h: Better support for BeOS.
47306
47307 2003-10-26  Paul Eggert  <eggert@twinsun.com>
47308
47309         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
47310         now uses inline.
47311
47312 2003-10-26  Paul Eggert  <eggert@twinsun.com>
47313
47314         * lib/xalloc.h (xalloc_oversized): New static inline function, for
47315         callers that want to do their own size-overflow checking.  Include
47316         <stdbool.h>, since xalloc_oversized returns bool.
47317         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
47318         to use xalloc_oversized.
47319
47320         Add two functions x2realloc, x2nrealloc, for programs that grow
47321         arrays dynamically by doubling their sizes.
47322         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
47323         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
47324         New functions.
47325
47326         Port to C99 semantics for 'inline' of external functions.
47327         Bug reported by Bruno Haible.
47328         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
47329         with the old contents of xnmalloc.
47330         (xnmalloc, xmalloc): Use it.
47331         (xnrealloc_inline): New static inline function,
47332         with the old contents of xnrealloc.
47333         (xnrealloc, xrealloc): Use it.
47334
47335         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
47336         that.
47337
47338 2003-10-26  Karl Berry  <karl@gnu.org>
47339
47340         * config/srclist.txt (COPYING.DOC): no longer available from
47341         /gd/gnuorg; don't know where the ultimate source is.
47342
47343 2003-10-25  Paul Eggert  <eggert@twinsun.com>
47344
47345         Fix several address-calculation bugs in the hash modules,
47346         plus some minor code cleanup.
47347
47348         * lib/hash.h: Include <stdbool.h>, for bool.
47349         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
47350         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
47351         hash_get_n_entries, hash_get_max_bucket_length,
47352         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
47353         hash_rehash): Use size_t rather than unsigned.
47354         * lib/hash.c (struct hash_table, hash_get_n_buckets,
47355         hash_get_n_buckets_used, hash_get_n_entries,
47356         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
47357         hash_get_entries, hash_do_for_each, hash_string, is_prime,
47358         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
47359         Likewise.
47360         (SIZE_MAX): Define if not defined.
47361         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
47362         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
47363         hash_print):
47364         Use const * when possible.
47365         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
47366         (check_tuning): Fix bug: if tuning parameters were very close to
47367         0 or 1, rounding errors could have caused subscript violations.
47368         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
47369         (hash_initialize): Add 'fail:' label
47370         to free table and return NULL, and use it to simplify code.
47371         Use calloc rather than clearing the storage ourself.
47372         (hash_initialize, hash_rehash): Check for arithmetic overflow in
47373         buffer size calculations.
47374         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
47375         Include <stddef.h>, for size_t.
47376         * lib/hash-pjw.c (hash_pjw): Likewise.
47377         Switch to method described by Bruno Haible.
47378         Include <limits.h>, for CHAR_BIT.
47379         (SIZE_BITS): New macro.
47380
47381 2003-10-23  Paul Eggert  <eggert@twinsun.com>
47382
47383         * m4/getline.m4 (AM_FUNC_GETLINE):
47384         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
47385         hosts.  Problem reported by Derek Robert Price in
47386         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
47387         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
47388         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
47389
47390 2003-10-21  Paul Eggert  <eggert@twinsun.com>
47391
47392         * lib/getndelim2.c (getndelim2): When size calculation overflows,
47393         ceiling the allocation at NMAX bytes rather than silently
47394         discarding input bytes before NMAX is reached.  This makes
47395         a difference only if NMAX exceeds SIZE_MAX / 2.
47396
47397         * lib/obstack.c: Merge from glibc.
47398         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
47399         Add libc_hidden_def (_obstack_newchunk).
47400         (_obstack_free) [! defined _LIBC]: Remove.
47401         [defined _LIBC]: Make a strong alias from obstack_free, rather than
47402         a clone of the function body.
47403         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
47404         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
47405
47406         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
47407         glibc.
47408         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
47409         arg to memcpy.
47410
47411         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
47412         (obstack_ptr_grow_fast, obstack_int_grow_fast):
47413         Don't use lvalue casts, as GCC plans to remove support for them
47414         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
47415         was also present in the non-GCC version, indicating that this
47416         code had always been buggy and had never been widely used.
47417         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
47418         Use the fast variant of each macro, rather than copying the
47419         definiens of the fast variant; that way, we'll be more likely to
47420         catch future bugs in the fast variants.
47421
47422 2003-10-20  Bruno Haible  <bruno@clisp.org>
47423
47424         * modules/wait-process: New file.
47425         * MODULES.html.sh (func_all_modules): Add wait-process.
47426
47427 2003-10-20  Bruno Haible  <bruno@clisp.org>
47428
47429         * m4/wait-process.m4: New file.
47430
47431 2003-10-20  Bruno Haible  <bruno@clisp.org>
47432
47433         * lib/wait-process.h: New file, from GNU gettext.
47434         * lib/wait-process.c: New file, from GNU gettext.
47435
47436 2003-10-19  Jim Meyering  <jim@meyering.net>
47437
47438         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
47439         HPUX 10.20.
47440
47441 2003-10-18  Karl Berry  <karl@gnu.org>
47442
47443         * config/config.guess: update from config.
47444
47445 2003-10-16  Paul Eggert  <eggert@twinsun.com>
47446
47447         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
47448         (getgroups): First arg is int, not size_t.
47449         Don't let 'free' mangle errno.
47450
47451 2003-10-16  Paul Eggert  <eggert@twinsun.com>
47452
47453         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
47454
47455 2003-10-16  Karl Berry  <karl@gnu.org>
47456
47457         * config/config.{guess,sub}: update from config.
47458
47459 2003-10-16  Jim Meyering  <jim@meyering.net>
47460
47461         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
47462         memcpy.
47463
47464 2003-10-15  Paul Eggert  <eggert@twinsun.com>
47465
47466         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
47467         (SIZE_MAX): Remove.
47468         (new_exclude, add_exclude_file): Initial size no longer needs to
47469         be a power of 2.
47470         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
47471         our own address arithmetic overflow checking.
47472
47473         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
47474         (fnmatch): Do not alloca more than 2000 wide characters;
47475         instead, use malloc for large buffers.
47476         Check for address arithmetic overflow, and return -1
47477         with errno set to ENOMEM in that case.
47478         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
47479         (NEW_PATTERN): Do not alloca more than 8000 bytes;
47480         instead, return -1.  Check for address arithmetic overflow.
47481
47482 2003-10-14  Paul Eggert  <eggert@twinsun.com>
47483
47484         Handle invalid suffixes and overflow independently, so that
47485         callers can treat them independently as needed.  Fix some bugs in
47486         suffix handling, e.g., "100k@" was not diagnosed as an invalid
47487         suffix for a human-readable blocksize.  The major caller-visible
47488         change is the addition of a new
47489         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
47490         that both overflow and suffix chars were found.
47491
47492         * lib/human.c (humblock): Don't check separately for invalid suffix
47493         char; that is xstrtoumax's job (now that its bug is fixed).
47494         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
47495         INTMAX_MAX]: New macros.
47496         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
47497         TYPE_MAXIMUM): New macros.
47498         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
47499         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
47500         if overflow occurs, as it's what __strtol does and it's more useful
47501         in practice.
47502         (__xstrtol): If __strtol reports some error other than ERANGE,
47503         reflect it to the caller as LONGINT_INVALID.  If it reports
47504         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
47505         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
47506         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
47507         value.
47508         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
47509         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
47510         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
47511         [defined UINTMAX_MAX]: New macros.
47512
47513 2003-10-14  Bruno Haible  <bruno@clisp.org>
47514
47515         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
47516
47517 2003-10-14  Bruno Haible  <bruno@clisp.org>
47518
47519         * m4/sig_atomic_t: New file, from GNU gettext.
47520         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
47521
47522 2003-10-14  Bruno Haible  <bruno@clisp.org>
47523
47524         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
47525         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
47526         Also use volatile where needed.
47527
47528 2003-10-12  Paul Eggert  <eggert@twinsun.com>
47529
47530         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
47531         Change maintainer from Bruno Haible to 'all'.
47532
47533 2003-10-12  Paul Eggert  <eggert@twinsun.com>
47534
47535         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
47536
47537 2003-10-12  Paul Eggert  <eggert@twinsun.com>
47538
47539         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
47540         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
47541         and define in terms of the other primitives.
47542         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
47543         (SIZE_MAX): Define if not already defined.
47544         (array_size_overflow): New function.
47545         (xalloc_die): Abort instead of exiting if 'error' returns.
47546         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
47547         (xmalloc, xrealloc): Use them.
47548         (xcalloc): Check for address arithmetic overflow.
47549         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
47550         a bit faster than strcpy.
47551
47552 2003-10-10  Simon Josefsson  <jas@extundo.com>
47553
47554         * modules/argp (Depends-on): Add restrict and strcase.
47555
47556 2003-10-10  Simon Josefsson  <jas@extundo.com>
47557
47558         * m4/argp.m4: Add AC_C_INLINE.
47559
47560 2003-10-08  Paul Eggert  <eggert@twinsun.com>
47561
47562         Merge getpass from libc, plus a few fixes.
47563
47564         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
47565         Include <stdbool.h>.
47566         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
47567         __fsetlocking to empty.
47568         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
47569         do include <bits/libc-lock.h>.
47570         Do not include <fcntl.h>; not needed.
47571         [_LIBC]: Include <wchar.h>.
47572         (NOTCANCEL_MODE): New macro.
47573         (flockfile, funlockfile) [_LIBC]: New macros.
47574         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
47575         [!_LIBC]: New macros.
47576         (call_fclose): New function.
47577         (getpass): Use it.  Save tty stream separately; this simplifies the
47578         code and makes it more reliable if stdin happens to equal stdout.
47579         Invoke __fsetlocking on tty.
47580         Handle thread cancellation if needed.
47581         Namespace cleanup (use __tcgetattr, __getline).
47582         Use bool for Booleans.
47583         [USE_IN_LIBIO]: Handle wide streams.
47584         [!_LIBC]: Unconditionally do the fseek, since we don't know what
47585         stream might go where.
47586
47587         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
47588         doesn't have to include <stdio.h> before us.
47589         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
47590         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
47591         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
47592         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
47593         if not declared, so that we can use getpass.c code from libc without
47594         rewriting it.
47595         (flockfile, ftrylockfile, funlockfile): New macros.
47596
47597 2003-10-08  Paul Eggert  <eggert@twinsun.com>
47598
47599         * modules/getpass: Depend on stdbool.
47600
47601 2003-10-08  Paul Eggert  <eggert@twinsun.com>
47602
47603         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
47604
47605 2003-10-07  Karl Berry  <karl@gnu.org>
47606
47607         * config/config.{guess,sub}: update from config.
47608
47609 2003-10-06  Jim Meyering  <jim@meyering.net>
47610             Bruno Haible  <bruno@clisp.org>
47611
47612         This lets translators provide better translations for the
47613         "Written by ..." part of --version output.
47614         * lib/version-etc.h: Include stdarg.h.
47615         (version_etc_copyright): Declare as readonly.
47616         (version_etc): Make this function variadic with a NULL-terminated list
47617         of author name strings.
47618         (version_etc_va): New declaration.
47619         * lib/version-etc.c: Include stdarg.h, stdlib.h.
47620         (version_etc_copyright): Declare as readonly.
47621         (version_etc_va): New function. Provide a different translatable string
47622         for each possible number of authors < 10. Abbreviate when there are 10
47623         authors or more.
47624         (version_etc): Make this function variadic. Call version_etc_va.
47625         Suggestion from Gary V. Vaughan.
47626
47627         * lib/long-options.h (parse_long_options): Change prototype: the
47628         authors string is moved to the end and becomes variadic.
47629         * lib/long-options.c: Include stdarg.h.
47630         (parse_long_options): Make this function variadic, too.
47631         Call version_etc_va, not version_etc.
47632
47633 2003-10-06  Bruno Haible  <bruno@clisp.org>
47634
47635         * modules/version-etc-2: Remove file.
47636         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
47637
47638 2003-10-06  Bruno Haible  <bruno@clisp.org>
47639
47640         * modules/fatal-signal: New file.
47641         * MODULES.html.sh (func_all_modules): Add fatal-signal.
47642
47643 2003-10-06  Bruno Haible  <bruno@clisp.org>
47644
47645         * m4/fatal-signal.m4: New file.
47646         * m4/signalblocking.m4: New file, from GNU gettext.
47647
47648 2003-10-06  Bruno Haible  <bruno@clisp.org>
47649
47650         * lib/version-etc-2.h: Remove file.
47651         * lib/version-etc-2.c: Remove file.
47652
47653 2003-10-06  Bruno Haible  <bruno@clisp.org>
47654
47655         * lib/fatal-signal.h: New file, from GNU gettext.
47656         * lib/fatal-signal.c: New file, from GNU gettext.
47657
47658 2003-10-05  Paul Eggert  <eggert@twinsun.com>
47659
47660         * README: Rework advice for preventing empty .o files.
47661         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
47662         not <sys/types.h>.
47663
47664 2003-10-04  Karl Berry  <karl@gnu.org>
47665
47666         * lib/argp*: update from libc.
47667
47668 2003-10-04  Karl Berry  <karl@gnu.org>
47669
47670         * config/config.{guess,sub}: update from config.
47671
47672 2003-10-02  Bruno Haible  <bruno@clisp.org>
47673
47674         * modules/lchown (Include): Add lchown.h.
47675         * modules/time_r (Include): Use "..." syntax.
47676         * modules/xgetdomainname (Include): Add xgetdomainname.h.
47677
47678 2003-10-01  Simon Josefsson  <jas@extundo.com>
47679
47680         * MODULES.html.sh (func_all_modules): Move gethostname from section
47681         'based on' to section 'lacking' POSIX:2001.
47682
47683 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
47684
47685         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
47686         to output mode on the same stream.
47687
47688 2003-09-29  Paul Eggert  <eggert@twinsun.com>
47689
47690         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
47691         Fix arg typo in previous patch.
47692
47693 2003-09-28  Jim Meyering  <jim@meyering.net>
47694
47695         * lib/error.c: Correct cpp indentation.
47696
47697 2003-09-27  Paul Eggert  <eggert@twinsun.com>
47698
47699         * modules/free: New file.
47700
47701 2003-09-27  Paul Eggert  <eggert@twinsun.com>
47702
47703         * m4/free.m4: New file.
47704
47705 2003-09-27  Paul Eggert  <eggert@twinsun.com>
47706
47707         * lib/minmax.h (MIN, MAX)
47708         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
47709         Omit the special code that used __typeof__, since we worry that
47710         it could be more trouble than it's worth.  See:
47711         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
47712         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
47713
47714         * lib/free.c: New file.
47715
47716 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
47717
47718         Trivial fixes to Makefile.am parts of module listings.
47719         * modules/strstr: Append strstr.h to lib_SOURCES.
47720         * modules/strcase: Likewise, for strcase.h.
47721
47722 2003-09-27  Karl Berry  <karl@gnu.org>
47723
47724         * config/mkinstalldirs: update from automake.
47725
47726 2003-09-26  Paul Eggert  <eggert@twinsun.com>
47727
47728         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
47729         (error_tail): Do not loop, reallocating temporary buffer, since
47730         the output cannot contain more wide characters than the input
47731         contains bytes, the size must be big enough already.  This avoids
47732         one potential size overflow calculation.  Check for size overflow
47733         when calculating temporary buffer size.  Free temporary buffer
47734         when done, if it was allocated with malloc; this plugs a memory
47735         leak.  Remove casts from void * to pointers, that are no longer
47736         needed now that we're assuming C89 or better.
47737
47738         Merge error changes from glibc.
47739
47740         * lib/error.c, error.h: Update copyright notice header to match glibc.
47741         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
47742         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
47743         Disable cancellation while printing error.
47744         * lib/error.h: Prepend __ to parameter names.
47745
47746 2003-09-26  Jim Meyering  <jim@meyering.net>
47747
47748         * lib/error.c (error_tail): Move some declarations
47749         into inner scope where the local variables are used.
47750
47751 2003-09-26  Bruno Haible  <bruno@clisp.org>
47752
47753         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
47754         stpncpy().
47755         Don't define stpncpy through config.h; it's now done through stpncpy.h.
47756
47757 2003-09-26  Bruno Haible  <bruno@clisp.org>
47758
47759         * lib/stpncpy.h (gnu_stpncpy): New declaration.
47760         (stpncpy): Define as alias for gnu_stpncpy.
47761         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
47762
47763 2003-09-25  Simon Josefsson  <jas@extundo.com>
47764
47765         * lib/xgetdomainname.h: New file.
47766         * lib/xgetdomainname.c: New file.
47767
47768 2003-09-25  Simon Josefsson  <jas@extundo.com>
47769             Bruno Haible  <bruno@clisp.org>
47770
47771         * modules/getdomainname: New file.
47772         * modules/xgetdomainname: New file.
47773         * MODULES.html.sh (func_all_modules): Add getdomainname,
47774         xgetdomainname.
47775
47776 2003-09-25  Simon Josefsson  <jas@extundo.com>
47777             Bruno Haible  <bruno@clisp.org>
47778
47779         * m4/getdomainname.m4: New file.
47780
47781 2003-09-25  Simon Josefsson  <jas@extundo.com>
47782             Bruno Haible  <bruno@clisp.org>
47783
47784         * lib/getdomainname.h: New file.
47785         * lib/getdomainname.c: New file.
47786
47787 2003-09-25  Karl Berry  <karl@gnu.org>
47788
47789         * lib/argp-fmtstream.c, argp-help.c: update from libc.
47790
47791 2003-09-25  Karl Berry  <karl@gnu.org>
47792
47793         * config/install-sh: update from automake.
47794
47795 2003-09-25  Bruno Haible  <bruno@clisp.org>
47796
47797         * modules/version-etc-2: New file, from modules/version-etc with
47798         modifications.
47799         * MODULES.html.sh (func_all_modules): Add version-etc-2.
47800
47801 2003-09-25  Bruno Haible  <bruno@clisp.org>
47802
47803         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
47804         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
47805
47806 2003-09-24  Simon Josefsson  <jas@extundo.com>
47807
47808         * modules/xgethostname: Add xgethostname.h.
47809
47810 2003-09-24  Paul Eggert  <eggert@twinsun.com>
47811
47812         * lib/linebuffer.c (freebuffer): Don't free the argument, just
47813         the buffer associated with the argument.  Bug reported by
47814         Simon Josefsson.
47815
47816 2003-09-24  Paul Eggert  <eggert@twinsun.com>
47817
47818         * README: Document assumptions that 'int' is at least 32 bits
47819         wide, that integer arithmetic is 2's complement without overflow,
47820         that there are no holes in integer values, that adding sizes of
47821         two nonoverlapping objects can't overflow, and that all-bits-zero
47822         yields scalar zero.  Fix spelling and capitalization typos.
47823
47824 2003-09-19  Karl Berry  <karl@gnu.org>
47825
47826         * lib/argp.h: update from libc.
47827
47828 2003-09-17  Paul Eggert  <eggert@twinsun.com>
47829
47830         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
47831         to avoid spurious warnings like "AC_RUN_IFELSE was called before
47832         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
47833
47834 2003-09-17  Paul Eggert  <eggert@twinsun.com>
47835
47836         * gnulib-tool: Use "test -h", not "test -L", for portability
47837         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
47838         (tags_regexp): Remove, since \| doesn't conform to POSIX.
47839         (sed_extract_prog): Issue s commands one-by-one, rather than
47840         using \| in one s command.
47841
47842 2003-09-16  Paul Eggert  <eggert@twinsun.com>
47843
47844         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
47845         input error, instead of returning NULL the next time we are called
47846         (and therefore losing track of errno).
47847
47848 2003-09-16  Bruno Haible  <bruno@clisp.org>
47849
47850         * gnulib-tool (func_create_testdir): Warn about duplicated
47851         dependencies.
47852
47853 2003-09-15  Paul Eggert  <eggert@twinsun.com>
47854
47855         * modules/argmatch, modules/fatal, modules/obstack,
47856         modules/xalloc, modules/xgethostname: Sort dependencies by
47857         importance, not alphabetically.
47858
47859 2003-09-15  Paul Eggert  <eggert@twinsun.com>
47860
47861         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
47862         fails, so that the caller gets the proper errno.
47863
47864         * lib/readutmp.c (read_utmp): Likewise.
47865         Check for fstat error.  Close stream and free storage
47866         when failing.
47867
47868 2003-09-14  Karl Berry  <karl@gnu.org>
47869
47870         * config/srclist.txt (strdup.c): disable for c89 changes.
47871
47872 2003-09-14  Jim Meyering  <jim@meyering.net>
47873
47874         * lib/getloadavg.c: Correct cpp indentation.
47875         * lib/strdup.c: Likewise.
47876         * lib/vasnprintf.c: Likewise.
47877
47878 2003-09-14  Bruno Haible  <bruno@clisp.org>
47879
47880         * modules/fwriteerror: New file.
47881         * MODULES.html.sh (func_all_modules): Add fwriteerror.
47882
47883 2003-09-14  Bruno Haible  <bruno@clisp.org>
47884
47885         * lib/fwriteerror.h: New file.
47886         * lib/fwriteerror.c: New file.
47887
47888 2003-09-12  Paul Eggert  <eggert@twinsun.com>
47889
47890         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
47891         modules/xgethostname, modules/xalloc: Depend on exit.
47892
47893 2003-09-12  Paul Eggert  <eggert@twinsun.com>
47894
47895         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
47896
47897         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
47898         and AC_MINIX, too, so that their extensions are available.
47899
47900         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
47901         This macro has been superseded by gl_BACKUPFILE.
47902
47903         More patches to assume C89 or better.
47904
47905         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
47906
47907         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
47908         unconditionally.
47909         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
47910         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
47911         Include <string.h>, <stdlib.h> unconditionally.
47912         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
47913         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
47914         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
47915         headers or for string.h.
47916         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
47917         or strtoul.
47918
47919         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
47920         headers.
47921         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
47922         * m4/userspec.m4 (gl_USERSPEC): Likewise.
47923         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
47924         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
47925         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
47926         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
47927         memcpy, memset.
47928         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
47929         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
47930         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
47931         strtol.
47932         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
47933         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
47934         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
47935         strtoul.
47936
47937 2003-09-12  Paul Eggert  <eggert@twinsun.com>
47938
47939         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
47940         * lib/obstack.c [!defined _LIBC]: Likewise.
47941         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
47942         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
47943         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
47944
47945         More changes to assume C89 or better.
47946
47947         * lib/error.c (error_tail): Assume vprintf.
47948
47949         * lib/argmatch.c (getenv): Remove decl.
47950         * lib/progreloc.c (get_full_program_name): Define via prototype.
47951         * lib/setenv.c (clearenv): Likewise.
47952         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
47953         needed.
47954         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
47955         (malloc, memcpy): Remove decls.
47956         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
47957         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
47958         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
47959         (memcpy): Remove macro.
47960         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
47961         (__P): Remove.  All uses removed.
47962         (PTR): Remove.  All uses changed to void *.
47963         (CHAR_BIT, NULL): Remove.
47964         (spaces, zeros, memset_space, memset_zero)
47965         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
47966         Remove.
47967         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
47968         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
47969         Define with prototype.
47970         Remove now-unnecessary prototype decl.
47971         (extra_args_spec): Assume ANSI C.  All uses changed.
47972         (extra_args_spec_iso): Remove.
47973         (my_strftime, emacs_strftimeu): Define via prototype.
47974         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
47975         unconditionally.
47976         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
47977         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
47978         (strtoul, strtol): Remove decls.
47979         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
47980         LONG_MAX): Remove.
47981         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
47982         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
47983         (LOCALE_PARAM_PROTO): New macro.
47984         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
47985         (INTERNAL (strtol), strtol): Define with a prototype.
47986         (PARAMS): Remove.  All uses removed.
47987         * lib/tempname.c: Include <string.h> unconditionally.
47988         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
47989         * lib/xgethostname.c (main): Define with a prototype.
47990         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
47991         Include <stdlib.h> unconditionally.
47992         (calloc, malloc, realloc, free): Remove decls.
47993         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
47994         Include <stdlib.h> unconditionally.  Sort include file names.
47995         (strtod): Remove.
47996         (xstrtod): Define with a prototype.
47997         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
47998         (strtol, strtoul): Remove decls.
47999
48000 2003-09-11  Paul Eggert  <eggert@twinsun.com>
48001
48002         More patches to assume C89 or better.
48003         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
48004         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
48005         string.h, memchr, STDC_HEADERS.
48006
48007 2003-09-11  Paul Eggert  <eggert@twinsun.com>
48008
48009         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
48010         Include <stdlib.h>, <string.h> unconditionally.
48011         Remove now-unnecessary cast to char *.
48012         * lib/strnlen.c: Include <string.h> unconditionally.
48013         * lib/yesno.c (yesno): Define with a prototype.
48014
48015 2003-09-11  Bruno Haible  <bruno@clisp.org>
48016
48017         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
48018
48019 2003-09-10  Jim Meyering  <jim@meyering.net>
48020
48021         * lib/error.c: Correct indentation of cpp directives.
48022
48023 2003-09-10  Bruno Haible  <bruno@clisp.org>
48024
48025         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
48026         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
48027         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
48028         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
48029         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
48030         <stdlib.h> and <string.h> checks.
48031         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
48032         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
48033
48034 2003-09-10  Bruno Haible  <bruno@clisp.org>
48035
48036         * lib/strcspn.c: Include <string.h> unconditionally.
48037         * lib/strpbrk.c: Include <string.h> unconditionally.
48038         * lib/strstr.c: Include <string.h> unconditionally.
48039         * lib/unicodeio.c: Include <string.h> unconditionally.
48040         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
48041         * lib/unsetenv.c: Likewise.
48042         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
48043         * lib/yesno.c: Include <stdlib.h> unconditionally.
48044         (rpmatch): Add prototype.
48045
48046 2003-09-09  Paul Eggert  <eggert@twinsun.com>
48047
48048         More patches to assume C89 or better.
48049         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
48050         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
48051         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
48052         or for string.h.
48053         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
48054         stdlib.h.
48055         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
48056         C headers.
48057         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
48058         string.h.
48059         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
48060         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
48061         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
48062         or for string.h.
48063         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
48064         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
48065         C headers.
48066         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
48067         memcpy.
48068         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
48069         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
48070         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
48071         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
48072         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
48073         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
48074         string.h, free.
48075         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
48076         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
48077         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
48078         C headers, or for string.h.
48079         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
48080         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
48081         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
48082         headers, memory.h, stdlib.h, string.h, strings.h.
48083         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
48084         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
48085         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
48086         strchr.
48087         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
48088         headers, memory.h, string.h.
48089         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
48090         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
48091         free.
48092         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
48093         headers.
48094         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
48095         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
48096         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
48097         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
48098         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
48099
48100 2003-09-09  Paul Eggert  <eggert@twinsun.com>
48101
48102         More K&R removal.
48103
48104         * lib/acosl.c (main): Use a prototype.
48105         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
48106         tanl.c: Likewise.
48107
48108         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
48109
48110         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
48111         (getopt, etopt_long, getopt_long_only, _getopt_internal)
48112         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
48113         with a prototype.
48114         * lib/getopt.c (const): Remove macro.
48115         Include <string.h> unconditionally.
48116         (my_index): Remove; all uses changed to strchr.
48117         (strlen): Remove decl.
48118         (exchange): Remove forward decl; no longer needed.
48119         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
48120         Define with prototype.
48121         * lib/getopt1.c (const): Remove macro.
48122         (getopt_long, getopt_long_only, main): Define with prototype.
48123
48124         * lib/getugroups.c: Include <string.h> unconditionally.
48125
48126         * lib/getusershell.c: Include <stdlib.h> unconditionally.
48127         (getusershell, setusershell, endusershell, readname, main):
48128         Define with prototypes.
48129
48130         * lib/group-member.c: Include group-member.h first.
48131         Include <stdlib.h> unconditionally.
48132
48133         * lib/hard-locale.c: Include hard-locale.h first.
48134         Include <stdlib.h>, <string.h> unconditionally.
48135
48136         * lib/hash.c (free, malloc): Remove decls.
48137         Include <stdlib.h> unconditionally.
48138
48139         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
48140         (getenv): Do not declare.
48141
48142         * lib/idcache.c: Include <string.h> unconditionally.
48143
48144         * lib/long-options.c: Include long-options.h first, to test interface.
48145         Include <stdlib.h> unconditionally.
48146
48147         * lib/makepath.c: Include makepath.h first, to test interface.
48148         Include <stdlib.h> and <string.h> unconditionally.
48149
48150         * lib/linebuffer.c: Include <stdlib.h>.
48151         (free): Remove decl.
48152
48153         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
48154         stddef.h. rpl_malloc returns void *, not char *.
48155         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
48156         prototype.
48157
48158         * lib/md5.h: Include <limits.h> unconditionally.
48159         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
48160         (__P): Remove; all uses removed.
48161         * lib/md5.c: Include "md5.h" first.
48162         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
48163         md5_buffer, md5_process_bytes, md5_process_block):
48164         Define with prototypes.
48165         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
48166         * lib/sha.c: Include "sha.h" first.
48167         Include <stdlib.h>, <string.h> unconditionally.
48168
48169         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
48170         * lib/memcmp.c (__ptr_t): Likewise.
48171         * lib/memrchr.c (__ptr_t): Likewise.
48172         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
48173         Include <string.h> unconditionally.
48174         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
48175         * lib/memchr.c: Include <stdlib.h> unconditionally.
48176         * lib/memchr.c (LONG_MAX): Remove.
48177         * lib/memrchr.c (LONG_MAX): Likewise.
48178         * lib/memchr.c (__memchr): Define via a prototype.
48179         * lib/memrchr.c (__memrchr): Likewise.
48180         * lib/memcmp.c (__P): Remove, and remove all uses.
48181         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
48182         Remove forward decls; no longer needed.
48183         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
48184         Use types required by C89 in prototype.
48185
48186         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
48187         * lib/savedir.c: Likewise.
48188         * lib/mkdir.c (free): Remove decl.
48189         * lib/rmdir.c (rmdir): Define with a prototype.
48190         * lib/savedir.c: Include savedir.h first, to test interface.
48191
48192         * lib/mktime.c (STDC_HEADERS): Remove.
48193         Include <stdlib.h>, <string.h> unconditionally.
48194
48195         * lib/modechange.c: Include <stdlib.h> unconditionally.
48196         (malloc): Remove decl.
48197
48198         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
48199         (free): Remove decl.
48200
48201         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
48202         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
48203         (This type really should be intptr_t, but that's a C99ism.)
48204         (_obstack_memcpy): Remove: all uses changed to memcpy.
48205         Include <string.h> unconditionally.
48206         (struct obstack): Assume __STDC__ for types of members
48207         chunkfun, freefun, extra_arg.
48208         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
48209         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
48210         obstack_begin, obstack_specify_allocation,
48211         obstack_specify_allocation_with_arg, obstack_chunkfun,
48212         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
48213         Remove unprototyped decls and the macros that use them.
48214         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
48215         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
48216         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
48217         (defined __STDC__ && __STDC__)]:
48218         Remove nonprototyped code.
48219         Include <stdlib.h> unconditionally.
48220         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
48221         _obstack_allocated_p, _obstack_free, obstack_free,
48222         _obstack_memory_used, print_and_abort):
48223         Define using prototypes.
48224         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
48225         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
48226         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
48227         obstack_next_free, obstack_object_size, obstack_room) [0]:
48228         Remove unused, unprototyped code.
48229
48230         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
48231
48232         * lib/physmem.c (physmem_total, physmem_available, main): Define
48233         with prototypes.
48234
48235         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
48236         (main): Define with a prototype.
48237
48238         * lib/posixver.c (getenv): Remove decl.
48239
48240         * lib/putenv.c (malloc): Returns void *, not char *.
48241         Include <string.h> unconditionally.
48242         (strchr, memcpy, NULL): Do not define.
48243
48244         * lib/readtokens.c: Include readtokens.h first, to test interface.
48245         Include <stdlib.h>, <string.h> unconditionally.
48246         (init_tokenbuffer): Define with a prototype.
48247
48248         * lib/regex.c (PARAMS): Remove.  All uses removed.
48249         All uses of _RE_ARGS removed, too.
48250         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
48251         unconditionally.
48252         (bzero): Assume memset exists.
48253         (memcmp, memcpy, NULL): Remove.
48254         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
48255         char, or assignments to local vars of type signed char.
48256         (init_syntax_once, PREFIX(extract_number_and_incr),
48257         PREFIX(print_partial_compiled_pattern),
48258         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
48259         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
48260         PREFIX(regex_grow_registers), PREFIX(regex_compile),
48261         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
48262         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
48263         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
48264         wcs_compile_range, byte_compile_range, truncate_wchar,
48265         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
48266         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
48267         count_mbs_length, wcs_re_match_2_internal,
48268         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
48269         PREFIX(alt_match_null_string_p),
48270         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
48271         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
48272         regfree, PREFIX(extract_number)): Define with prototype.  Remove
48273         now-unnecessary declaration, if any.
48274         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
48275         regcomp, regexec):
48276         Remove now-unnecessary casts among pointer types.
48277         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
48278
48279         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
48280         (free): Remove decl.
48281
48282         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
48283
48284         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
48285         (free): Remove decl.
48286
48287         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
48288         * lib/xgetcwd.c: Likewise.
48289
48290         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
48291         (free): Remove decl.
48292
48293         * lib/strchrnul.c (strchrnul): Define with a prototype.
48294         Fix bug: c_in was not converted to char before searching.
48295
48296         The following changes are not K&R related:
48297
48298         * lib/group-member.h: Include <sys/types.h>, so that this file is
48299         self-contained.
48300         * lib/makepath.h: Likewise.
48301
48302         * lib/getusershell.c (readname, default_index, line_size, readname):
48303         Use size_t, not int, for sizes.
48304         (readname): If the size overflows, report an error instead of
48305         looping forever.
48306
48307 2003-09-09  Paul Eggert  <eggert@twinsun.com>
48308
48309         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
48310         libc.
48311
48312 2003-09-09  Paul Eggert  <eggert@twinsun.com>
48313
48314         * README: New section: portability guidelines.
48315
48316 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
48317
48318         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
48319         C89 spec.
48320
48321 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
48322
48323         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
48324
48325 2003-09-08  Paul Eggert  <eggert@twinsun.com>
48326
48327         Assume C89 or better; remove K&R cruft.
48328         A few of these changes were first proposed by Derek Robert Price
48329         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
48330
48331         * lib/addext.c: Include <string.h> unconditionally.
48332         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
48333         Don't declare getenv or malloc.
48334
48335         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
48336         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
48337         (NULL): Remove.
48338         (find_stack_direction, alloca): Use prototypes.
48339
48340         * lib/atexit.c (atexit): Define using a prototype.
48341
48342         * lib/basename.c, dirname.c, stripslash.c:
48343         Include <string.h> unconditionally.
48344
48345         * lib/bcopy.c: Include <stddef.h>.
48346         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
48347
48348         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
48349
48350         * lib/error.h (error, error_at_line, error_print_progname)
48351         [! (defined (__STDC__) && __STDC__)]: Remove decls.
48352         * lib/error.c: Include error.h first, to check interface.
48353         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
48354         (VA_START): Remove; all uses changeed to va_start.
48355         (exit, strerror): Remove decls.
48356         (error_print_progname): Prototype uncondionally.
48357         Don't include <errno.h>; no longer needed.
48358         (private_strerror): Remove.
48359         (error_tail): Always define.
48360         (error, error_at_line): Assume C89 or better; always use prototypes.
48361         * lib/fatal.c: Include "fatal.h" first, to test interface.
48362         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
48363         (VA_START): Remove; all uses changed to va_start.
48364         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
48365         this case.
48366         (exit): Remove decl.
48367         (fatal): Prototype unconditionally.  Assume va_start works.
48368         Abort at end, to pacify gcc.
48369
48370         * lib/euidaccess.c (main): Define with a prototype.
48371
48372         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
48373
48374         * lib/exitfail.c: Include <stdlib.h> unconditionally.
48375
48376         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
48377         prototypes.
48378         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
48379         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
48380         (getenv): Remove decl.
48381         (fnmatch): Define using a prototype.
48382         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
48383         (FCT): Define using a prototype.
48384
48385         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
48386
48387         * lib/gethostname.c: Include <stddef.h>.
48388         (gethostname): Define with prototype.  Length is size_t, not int.
48389
48390 2003-09-08  Paul Eggert  <eggert@twinsun.com>
48391
48392         Assume C89 or better; remove K&R cruft.
48393         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
48394         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
48395         string.h, getenv, malloc.
48396         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
48397         headers.
48398         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
48399         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
48400         do not check for strerror.
48401         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
48402         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
48403         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
48404         do not check for doprnt or vprintf.
48405         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
48406         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
48407
48408 2003-09-08  Paul Eggert  <eggert@twinsun.com>
48409
48410         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
48411         getversion.c should have been removed then, but was accidentally
48412         preserved.
48413
48414         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
48415         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
48416
48417 2003-09-08  Karl Berry  <karl@gnu.org>
48418
48419         * config/config.sub, config.guess, srclistvars.sh: update from savannah
48420                 config, forget about prep.
48421
48422         * config/depcomp, missing: update from automake.
48423
48424 2003-09-07  Paul Eggert  <eggert@twinsun.com>
48425
48426         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
48427         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
48428
48429 2003-09-07  Paul Eggert  <eggert@twinsun.com>
48430
48431         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
48432         copy_tm_result.  Bug reported by Simon Josefsson in
48433         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
48434
48435 2003-09-06  Paul Eggert  <eggert@twinsun.com>
48436
48437         * m4/time_r.m4: New file.
48438         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
48439         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
48440         is. Check for timegm declaration.
48441         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
48442         Do not check for gmtime_r.
48443         Replace mktime if __mktime_internal does not exist and if mktime
48444         hasn't been replaced already.
48445
48446 2003-09-06  Paul Eggert  <eggert@twinsun.com>
48447
48448         * lib/time_r.c, lib/time_r.h: New files.
48449
48450         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
48451         __localtime_r.
48452         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
48453         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
48454
48455         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
48456         __gmtime_r.
48457         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
48458         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
48459         Include <time_r.h>.
48460
48461         * lib/timegm.c: Switch to glibc implementation, with the following
48462         changes:
48463         [defined HAVE_CONFIG_H]: Include <config.h>.
48464         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
48465         (__mktime_internal) [!defined _LIBC]: New decl.
48466         (__gmtime_r) [!defined _LIBC]: New macro and function.
48467         (timegm): Use a prototype, since gnulib assumes C89.
48468         Do not bother declaring tmp to be const, as it's not really usefu.
48469         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
48470         (timegm): Declare only if HAVE_DECL_TIMEGM.
48471
48472 2003-09-06  Paul Eggert  <eggert@twinsun.com>
48473
48474         * MODULES.html.sh (func_all_modules): Add time_r.
48475         * modules/time_r: New file.
48476         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
48477         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
48478
48479 2003-09-03  Paul Eggert  <eggert@twinsun.com>
48480
48481         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
48482         Bug reported by Lute Kamstra in
48483         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
48484
48485         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
48486         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
48487         course with correspondingly smaller numbers for tomorrow and
48488         yesterday.  From Tadayoshi Funaba.  Originally installed into
48489         sh-utils on 1999-08-07, but the patch got lost (I guess during the
48490         coreutils merge?).
48491
48492 2003-08-31  Simon Josefsson  <jas@extundo.com>
48493
48494         * modules/timegm: New file.
48495         * MODULES.html.sh (func_all_modules): Add timegm.
48496
48497 2003-08-31  Simon Josefsson  <jas@extundo.com>
48498
48499         * m4/timegm.m4: New file.
48500
48501 2003-08-31  Simon Josefsson  <jas@extundo.com>
48502
48503         * lib/timegm.h: New file.
48504         * lib/timegm.c: New file.  Based on
48505         wget-1.8.2/src/http.c:mktime_from_utc.
48506
48507 2003-08-31  Karl Berry  <karl@gnu.org>
48508
48509         * lib/argp.h: update from libc.
48510
48511 2003-08-28  Bruno Haible  <bruno@clisp.org>
48512
48513         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
48514         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
48515         followed by '#define fnmatch fnmatch_posix' gives an error.
48516
48517 2003-08-28  Bruno Haible  <bruno@clisp.org>
48518
48519         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
48520         warning on QNX, which defines O_BINARY to 000000.
48521
48522 2003-08-27  Jim Meyering  <jim@meyering.net>
48523
48524         * m4/mkstemp.m4: Require that the system mkstemp be able to create
48525         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
48526         would fail after 32.  Reported by Danny Levinson.  Details here:
48527         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
48528
48529 2003-08-24  Bruno Haible  <bruno@clisp.org>
48530
48531         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
48532         MSVC7 <stdio.h> is included later.
48533
48534 2003-08-22  Simon Josefsson  <jas@extundo.com>
48535
48536         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
48537
48538 2003-08-20  Karl Berry  <karl@gnu.org>
48539
48540         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
48541
48542 2003-08-20  Bruno Haible  <bruno@clisp.org>
48543
48544         * modules/progname: New file.
48545         * MODULES.html.sh (func_all_modules): Add progname.
48546
48547 2003-08-20  Bruno Haible  <bruno@clisp.org>
48548
48549         * lib/progname.h: New file, from GNU gettext.
48550         * lib/progname.c: New file, from GNU gettext.
48551         * lib/progreloc.c: New file, from GNU gettext.
48552
48553 2003-08-19  Jim Meyering  <jim@meyering.net>
48554
48555         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
48556         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
48557
48558 2003-08-19  Bruno Haible  <bruno@clisp.org>
48559
48560         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
48561         more.
48562
48563 2003-08-19  Bruno Haible  <bruno@clisp.org>
48564
48565         * lib/xstrdup.c: Assume <string.h> exists.
48566
48567 2003-08-18  Paul Eggert  <eggert@twinsun.com>
48568
48569         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
48570         in makefile rules.
48571
48572 2003-08-18  Jim Meyering  <jim@meyering.net>
48573
48574         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
48575         * m4/lib-ld.m4: Likewise.
48576
48577 2003-08-18  Jim Meyering  <jim@meyering.net>
48578
48579         * lib/setenv.h: Indent nested cpp directive.
48580         * lib/vasnprintf.c: Remove trailing blanks.
48581
48582 2003-08-17  Simon Josefsson  <jas@extundo.com>
48583
48584         * modules/xstrndup: New file.
48585         * MODULES.html.sh (func_all_modules): Add xstrndup.
48586
48587 2003-08-17  Simon Josefsson  <jas@extundo.com>
48588
48589         * modules/argp: Fix autoconf macro name. Add more dependencies.
48590
48591 2003-08-17  Simon Josefsson  <jas@extundo.com>
48592
48593         * m4/xstrndup.m4: New file.
48594
48595 2003-08-17  Simon Josefsson  <jas@extundo.com>
48596
48597         * m4/argp.m4: New file.
48598
48599 2003-08-17  Simon Josefsson  <jas@extundo.com>
48600             Bruno Haible  <bruno@clisp.org>
48601
48602         * lib/xstrndup.h: New file.
48603         * lib/xstrndup.c: New file.
48604
48605 2003-08-17  Bruno Haible  <bruno@clisp.org>
48606
48607         * modules/strndup (Files, Include): Add lib/strndup.h.
48608
48609 2003-08-17  Bruno Haible  <bruno@clisp.org>
48610
48611         * modules/euidaccess (Files): Add lib/euidaccess.h.
48612
48613 2003-08-17  Bruno Haible  <bruno@clisp.org>
48614
48615         * lib/strndup.h: New file.
48616
48617 2003-08-17  Bruno Haible  <bruno@clisp.org>
48618
48619         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
48620         like AC_GNU_SOURCE.
48621         * modules/extensions (configure.ac): Comment out the invocation of
48622         gl_USE_SYSTEM_EXTENSIONS.
48623
48624 2003-08-16  Paul Eggert  <eggert@twinsun.com>
48625
48626         Merges from coreutils, etc.
48627         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
48628         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
48629         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
48630         fixing a typo.
48631         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
48632         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
48633
48634 2003-08-16  Paul Eggert  <eggert@twinsun.com>
48635
48636         Document merge from coreutils.
48637         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
48638         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
48639         * modules/utime: Add m4/utimes-null.m4.
48640
48641 2003-08-16  Paul Eggert  <eggert@twinsun.com>
48642
48643         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
48644         space, undoing this 2003-08-12 change:
48645         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
48646
48647 2003-08-16  Paul Eggert  <eggert@twinsun.com>
48648
48649         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
48650         strtoul.c from libc, undoing this 2003-08-12 change:
48651         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
48652
48653 2003-08-16  Jim Meyering  <jim@meyering.net>
48654
48655         Merges from coreutils.
48656         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
48657         prefix.  Adjust cache variables similarly.  Create 500 rather than
48658         just 300 files, to exercise bug on Darwin6.5, too.
48659         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
48660         $missing_dir.
48661         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
48662         AM_SYS_POSIX_TERMIOS.
48663         Reported by mkc@mathdogs.com.
48664         Also change use of $am_cv_sys_posix_termios
48665         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
48666         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
48667         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
48668         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
48669         in /proc/mounts until it finds one with matching device number.  This
48670         is unnecessary when the FILE argument *is* a mount point.  No stat call
48671         is necessary in that case.  So, disable the statvfs-testing code on
48672         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
48673         as RedHat bug# 84846.
48674         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
48675         to 1MB, so as not to render systems with no stack size limit (e.g.,
48676         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
48677         Include <unistd.h>.  On some systems,
48678         it is required for the definition of _SC_PAGESIZE.
48679
48680 2003-08-16  Jim Meyering  <jim@meyering.net>
48681
48682         Merge from coreutils.
48683         * lib/xstrtoimax.c: #else #if -> #elif.
48684         * lib/xstrtoumax.c: Likewise.
48685
48686 2003-08-16  Jim Meyering  <jim@meyering.net>
48687
48688         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
48689         * m4/utimes.m4: Removed.
48690         * m4/utimes-null.m4: Renamed from utimes.m4.
48691
48692         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
48693         to 1MB, so as not to render systems with no stack size limit (e.g.,
48694         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
48695         Include <unistd.h>.  On some systems,
48696         it is required for the definition of _SC_PAGESIZE.
48697
48698 2003-08-16  Jim Meyering  <jim@meyering.net>
48699         and Paul Eggert  <eggert@cs.ucla.edu>
48700
48701         Merges from coreutils, etc.
48702
48703         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
48704         using the latest version from cvs.  This avoids problems with #line
48705         directives using a vendor (Sun) compiler.
48706         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
48707         Don't set GETGROUPS_LIB here; now it's
48708         done via getgroups.m4's wrapper function.
48709         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
48710         rather than just in sh-util/configure.in, so that the
48711         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
48712         same.
48713         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
48714         AC_FUNC_GETLOADAVG where to find getloadavg.c.
48715         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
48716         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
48717         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
48718         Remove code that is now done by the newly-required macros.
48719         Append $(EXEEXT) to DF_PROG.
48720         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
48721         Do not invoke or require the following here,
48722         since prereq.m4 or some gnulib .m4 now does this for us:
48723         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
48724         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
48725         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
48726         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
48727         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
48728         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
48729         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
48730         AC_FUNC_OBSTACK.
48731         Do not replace the following functions, as this is now the job
48732         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
48733         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
48734         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
48735         atexit getpass, strdup, getpagesize.
48736         Replace 'raise'.
48737         Do not check for the following functions, as this is now the job
48738         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
48739         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
48740         setregid.
48741         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
48742         Check for sys/sysctl.h.
48743         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
48744         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
48745         of checking for ssize_t ourselves.
48746
48747         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
48748         Require every macro that gnulib/modules/* suggests for us.
48749         (jm_PREREQ_ADDEXT): New macro.
48750         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
48751         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
48752
48753         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
48754         (gl_PHYSMEM): Use it.
48755         Also check for `table' function.
48756         Check for new headers and functions.
48757         Add check for sys/sysmp.h.
48758         With suggestions from Kaveh Ghazi.
48759         Ignore headers that are present but cannot be compiled.  This
48760         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
48761         C 5.4.
48762
48763 2003-08-15  Paul Eggert  <eggert@twinsun.com>
48764
48765         Document merge from coreutils.
48766         * modules/userspec: Depend on posixver.
48767         * modules/strftime: Depend on tzset.
48768
48769 2003-08-15  Paul Eggert  <eggert@twinsun.com>
48770
48771         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
48772         rather than tab, after '#' in shell-script copyright notices.
48773         Suggested by Bruno Haible.
48774
48775 2003-08-15  Paul Eggert  <eggert@twinsun.com>
48776
48777         * config/srclist-update: Use three spaces, rather than tab, after '#'
48778         in shell-script copyright notices.  Suggested by Bruno Haible.
48779         Remove unnecessary parenthesization in regular expression.
48780
48781 2003-08-15  Jim Meyering  <jim@meyering.net>
48782
48783         Merge from coreutils.
48784         * lib/xgethostname.c: Include <stdlib.h>.
48785         (xghostname): Don't exit for anything other than memory-related
48786         failure; just return NULL.
48787         * lib/userspec.c: Include "posixver.h".
48788         (parse_user_spec): Accept `.' as a separator only
48789         in pre-POSIX-200112 mode.
48790         * lib/strtoimax.c: Use #elif rather than #else #if.
48791         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
48792         Remove function, now that we can rely on a working tzset function.
48793         [!_LIBC]: Ensure that the required autoconf test has been run.
48794         [!defined _NL_CURRENT && HAVE_STRFTIME]:
48795         Use underlying_strftime for %r.
48796         * lib/sha.c: Merge in some clean-up and optimization changes from
48797         glibc.
48798         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
48799         Ensure that it is a multiple of 64.
48800         Rearrange loop exit tests so as to avoid performing an
48801         additional fread after encountering an error or EOF.
48802         * lib/realloc.c: Update copyright date.
48803
48804 2003-08-15  Jim Meyering  <jim@meyering.net>
48805         and Paul Eggert  <eggert@twinsun.com>
48806
48807         Merge from coreutils.
48808         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
48809         member but strut utmpx does not.  Needed for AIX 4.3.3.
48810         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
48811
48812 2003-08-15  Jim Meyering  <jim@meyering.net>
48813         and Paul Eggert  <eggert@cs.ucla.edu>
48814
48815         Merges from coreutils, etc.
48816         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
48817         Require gl_FUNC_TZSET_CLOBBER.
48818         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
48819         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
48820         members.
48821
48822 2003-08-14  Paul Eggert  <eggert@twinsun.com>
48823
48824         Help the merge from coreutils.
48825         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
48826         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
48827         * m4/tzset.m4: Use it too.
48828
48829 2003-08-14  Paul Eggert  <eggert@twinsun.com>
48830
48831         * modules/tzset: New file.
48832
48833 2003-08-14  Jim Meyering  <jim@meyering.net>
48834
48835         Merges from coreutils.
48836         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
48837         variable names, rather than @FNMATCH_H@.
48838         * modules/alloca: Likewise for $(ALLOCA_H).
48839
48840         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
48841         the three copies of the literal target, `fnmatch.h'.
48842         * modules/alloca (alloca.h): Likewise.
48843
48844 2003-08-14  Jim Meyering  <jim@meyering.net>
48845
48846         Merge from coreutils.
48847         * m4/tzset.m4: New file.
48848         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
48849         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
48850         otherwise, AIX 5.1 systems would end up using the latter.
48851         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
48852         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
48853         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
48854         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
48855
48856 2003-08-14  Jim Meyering  <jim@meyering.net>
48857
48858         Merge from coreutils.
48859         * lib/obstack.h: Whitespace changes.
48860         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
48861         and xcalloc return values.
48862         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
48863         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
48864         hang on OSF/1 5.1 for DIR on both local and remote file systems.
48865         Reported by (and fix confirmed by) Nelson H. F. Beebe.
48866         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
48867         error from mntctl.
48868         Use mntctl's return value to drive the entry-processing loop, since
48869         we can't rely on the value of the vmt_length member in the last
48870         entry.  On some systems doing so could result in exhausting
48871         virtual memory.  Based in part on a patch from Mike Jetzer.
48872
48873 2003-08-14  Jim Meyering  <jim@meyering.net>
48874         and Paul Eggert  <eggert@twinsun.com>
48875
48876         Merges from coreutils, plus other fixes.
48877         * lib/physmem.c: Merge in portability changes from gcc/libiberty
48878         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
48879         for credits and details.  Thanks to Kaveh Ghazi for helping
48880         to keep these files in sync.
48881         (ARRAY_SIZE): Define it.
48882         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
48883         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
48884         (memcasecmp): Don't assume size_t fits in unsigned int.
48885         Remove casts and duplicate code.
48886         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
48887         (memcpy): Remove definition.
48888         Merge in some clean-up and optimization changes from glibc.
48889         [BLOCKSIZE]: Move definition to top of file.
48890         Ensure that it is a multiple of 64.
48891         Rearrange loop exit tests so as to avoid performing an
48892         additional fread after encountering an error or EOF.
48893         * lib/md5.h (md5_uintptr): Define.
48894         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
48895         return to the initial working directory.  Preserve errno
48896         for caller.
48897         * lib/idcache.c: Include "xalloc.h".
48898         (xmalloc, xrealloc): Remove decls.
48899         (getuser): Remove casts no longer required in C89.
48900         * lib/human.c: Include stdio.h, for sprintf.
48901         * lib/group-member.c: Include "xalloc.h".
48902         (xmalloc, xrealloc): Remove decls.
48903         (get_group_info): Remove casts no longer required in C89.
48904         * lib/getusershell.c (readname): Remove casts no longer required in
48905         C89.
48906         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
48907         * lib/getline.c: Whitespace fix, from coreutils.
48908
48909 2003-08-13  Paul Eggert  <eggert@twinsun.com>
48910
48911         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
48912         Check for isascii.
48913
48914         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
48915         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
48916         Undo previous (whitespace-only) change.
48917
48918 2003-08-13  Paul Eggert  <eggert@twinsun.com>
48919
48920         * lib/exclude.c: Include <ctype.h>
48921         (IN_CTYPE_DOMAIN): New macro.
48922         (is_space): New fn.
48923         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
48924         and empty lines.
48925
48926         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
48927         Undo previous (whitespace-only) change.
48928
48929 2003-08-13  Paul Eggert  <eggert@twinsun.com>
48930
48931         * config/srclist-update: Change update back to the old behavior,
48932         leaving whitespace alone.  Use one 'sed' command rather than a
48933         pipeline.
48934         (fixlicense): Now a variable, not a function.
48935         (remove_trailing_blanks): Remove.
48936         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
48937         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
48938         Undo previous (whitespace-only) change.
48939
48940 2003-08-12  Paul Eggert  <eggert@twinsun.com>
48941
48942         Merge from coreutils.
48943         * modules/euidaccess: Add lib_SOURCES, include for new
48944         file euidaccess.h
48945
48946 2003-08-12  Paul Eggert  <eggert@twinsun.com>
48947
48948         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
48949         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
48950         Normalize leading white space and remove trailing white space.
48951
48952         Merge from coreutils
48953         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
48954
48955         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
48956         0.12.1.  These files are now being upgraded automatically by
48957         ../config/srclist-update.
48958
48959 2003-08-12  Paul Eggert  <eggert@twinsun.com>
48960
48961         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
48962         Normalize leading white space and remove trailing white space.
48963         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
48964         notice, as per ../config/srclist-update.
48965
48966         Merge from coreutils.
48967         * lib/euidaccess.h: New file.
48968         * lib/euidaccess.c: Include it.
48969         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
48970         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
48971         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
48972
48973 2003-08-12  Paul Eggert  <eggert@twinsun.com>
48974
48975         * config/srclist-update: Add copyright notice.
48976         (remove_id_lines, remove_trailing_blanks): New constants.
48977         (fixfile): Use them to normalize spacing a bit in copied files.
48978         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
48979         Normalize leading white space and remove trailing white space.
48980
48981         * config/texinfo.tex: Sync with texinfo.
48982
48983         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
48984         strtoul.c from libc, to merge coreutils whitespace changes.
48985
48986         * config/srclist.txt: Get the following m4 files from gettext:
48987         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
48988         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
48989         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
48990         wint_t.m4.
48991
48992 2003-08-12  Karl Berry  <karl@gnu.org>
48993
48994         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
48995         been made.
48996
48997 2003-08-11  Paul Eggert  <eggert@twinsun.com>
48998
48999         * modules/gnu-source, m4/gnu-source.m4:
49000         Remove; we're assuming Autoconf 2.54 or later now.
49001         Suggested by Bruno Haible.
49002         * MODULES.html.sh (func_all_modules): Remove gnu-source.
49003
49004 2003-08-11  Bruno Haible  <bruno@clisp.org>
49005
49006         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
49007
49008 2003-08-11  Bruno Haible  <bruno@clisp.org>
49009
49010         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
49011         (vasnprintf): Use it instead of wcslen.
49012
49013 2003-08-11  Bruno Haible  <bruno@clisp.org>
49014
49015         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
49016         value to ensure that _Bool promotes to int. Use #define for _Bool when
49017         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
49018
49019 2003-08-10  Karl Berry  <karl@gnu.org>
49020
49021         * lib/regex.h: update from libc (whitespace fix).
49022
49023 2003-08-09  Paul Eggert  <eggert@twinsun.com>
49024
49025         Merge some files from coreutils.  These changes were
49026         originally made by Jim Meyering.
49027         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
49028         many older Unixes require this.
49029         * lib/alloca.c (alloca): Remove cast to argument of free;
49030         no longer needed in C89.
49031         * lib/alloca_.h, regex.h: Fix white space to match
49032         what GNU indent does.
49033
49034 2003-08-09  Paul Eggert  <eggert@twinsun.com>
49035
49036         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
49037         apparently Emacs's Unicode mode got confused before my 2003-08-05
49038         checkin.
49039
49040 2003-08-08  Paul Eggert  <eggert@twinsun.com>
49041
49042         * m4/extensions.m4: New file.
49043         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
49044         Require gl_USE_SYSTEM_EXTENSIONS.
49045         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
49046         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
49047
49048 2003-08-08  Paul Eggert  <eggert@twinsun.com>
49049
49050         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
49051         * modules/extensions, modules/gnu-source: New files.
49052         * modules/timespec, modules/unlocked-io: Depend on extensions.
49053
49054 2003-08-07  Paul Eggert  <eggert@twinsun.com>
49055
49056         * modules/restrict: New file.
49057         * MODULES.html.sh (func_all_modules): Add restrict.
49058         * modules/regex: Depend on restrict.
49059
49060 2003-08-07  Paul Eggert  <eggert@twinsun.com>
49061
49062         * m4/restrict.m4: New file.
49063         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
49064
49065 2003-08-07  Bruno Haible  <bruno@clisp.org>
49066
49067         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
49068         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
49069
49070 2003-08-07  Bruno Haible  <bruno@clisp.org>
49071
49072         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
49073         makes the module 'getndelim2' compatible with the module 'getline'.
49074
49075 2003-08-05  Paul Eggert  <eggert@twinsun.com>
49076
49077         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
49078         byte with "\201" to avoid glitches when editing that source file
49079         with multi-gnome-terminal.
49080
49081 2003-08-05  Paul Eggert  <eggert@twinsun.com>
49082
49083         * lib/bumpalloc.h: Remove.
49084
49085 2003-08-05  Paul Eggert  <eggert@twinsun.com>
49086
49087         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
49088         * modules/bumpalloc: Remove.
49089
49090 2003-08-04  Paul Eggert  <eggert@twinsun.com>
49091
49092         * lib/getloadavg.c: Change copyright notice and spacing to conform to
49093         GNU coding style.
49094
49095         Merge from coreutils.
49096         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
49097         1. From glibc.
49098         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
49099         from Karl Berry, implemented by Jim Meyering.
49100         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
49101         from Dmitry V. Levin.
49102         Remove anachronistic cast of xrealloc.
49103         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
49104         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
49105         type. Otherwise, it wouldn't compile with at least /bin/cc on
49106         ymp-cray-unicos9.0.2.X.
49107         Combine two mostly-identical uses of alloca into one.
49108         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
49109
49110 2003-08-04  Dave Love  <d.love@dl.ac.uk>
49111
49112         [From Emacs.]
49113
49114         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
49115         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
49116         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
49117         obsolete NLIST_NAME_UNION.
49118         [__GNU__]: Undef BSD and FSCALE.
49119         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
49120
49121 2003-08-03  Paul Eggert  <eggert@twinsun.com>
49122
49123         * lib/stdbool_.h (_Bool): Make it signed char, instead of
49124         an enum type, so that it's guaranteed to promote to int.  See:
49125         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
49126
49127 2003-08-03  Karl Berry  <karl@gnu.org>
49128
49129         * config/depcomp: update from automake.
49130
49131 2003-07-31  Paul Eggert  <eggert@twinsun.com>
49132
49133         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
49134         (strerror): Don't assume that a printable int fits in 14 bytes.
49135
49136 2003-07-31  Bruno Haible  <bruno@clisp.org>
49137
49138         * modules/getpass-gnu: New file.
49139         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
49140
49141 2003-07-31  Bruno Haible  <bruno@clisp.org>
49142
49143         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
49144
49145 2003-07-24  Karl Berry  <karl@gnu.org>
49146
49147         * config/missing: update from automake.
49148
49149 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
49150             Bruno Haible  <bruno@clisp.org>
49151
49152         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
49153         * lib/getline.c (getline, getdelim): Likewise.
49154         Remove _GNU_SOURCE define; now it's defined in config.h through
49155         m4/getline.m4.
49156
49157 2003-07-23  Karl Berry  <karl@gnu.org>
49158
49159         * config/config.sub: update from prep.
49160
49161 2003-07-22  Paul Eggert  <eggert@twinsun.com>
49162
49163         * modules/xalloc (Depends-on): Add exitfail.
49164         * modules/xmemcoll: Likewise.
49165
49166 2003-07-22  Paul Eggert  <eggert@twinsun.com>
49167
49168         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
49169         over-parenthesization in macros.
49170
49171         Sync with coreutils.
49172
49173         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
49174         required by C99.
49175
49176         Use `exit_failure' for xalloc and xmemcoll instead of their own
49177         private exit-failure variables.
49178         * lib/xalloc.h (xalloc_exit_failure): Remove.
49179         * lib/xmalloc.c: Likewise.  Include exitfail.h.
49180         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
49181         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
49182         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
49183         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
49184
49185 2003-07-20  Jim Meyering  <jim@meyering.net>
49186
49187         * modules/closeout (Depends-on): Add exitfail.
49188         Suggestion from Bruno Haible.
49189
49190 2003-07-19  Karl Berry  <karl@gnu.org>
49191
49192         * config/config.sub: update from prep.
49193
49194 2003-07-18  Paul Eggert  <eggert@twinsun.com>
49195
49196         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
49197         Remove.
49198         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
49199         to test that it can stand by itself.  Include "exitfail.h".
49200         Clients should set exit_failure instead.
49201         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
49202
49203 2003-07-18  Bruno Haible  <bruno@clisp.org>
49204
49205         * modules/getndelim2: New file.
49206         * modules/getline: Share files with module getndelim2.
49207         * modules/getnline: Depend on getndelim2 instead of sharing files with
49208         it. Add getnline.c to lib_SOURCES.
49209         * MODULES.html.sh (func_all_modules): Add getndelim2.
49210
49211 2003-07-18  Bruno Haible  <bruno@clisp.org>
49212
49213         * m4/getndelim2.m4: New file.
49214         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
49215         invoke gl_PREREQ_GETNDELIM2.
49216         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
49217         gl_PREREQ_GETNDELIM2.
49218         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
49219         gl_GETNDELIM2.
49220
49221 2003-07-18  Bruno Haible  <bruno@clisp.org>
49222
49223         * lib/getndelim2.h: New file.
49224         * lib/getndelim2.c: Make into a module of its own. Include config.h,
49225         getndelim2.h.
49226         (getndelim2): Make non-static. Change return type to ssize_t.
49227         * lib/getline.h: Change argument names.
49228         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
49229         * lib/getnline.c: Include getndelim2.h.
49230
49231 2003-07-18  Andreas Schwab  <schwab@suse.de>
49232
49233         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
49234
49235 2003-07-17  Karl Berry  <karl@gnu.org>
49236
49237         * config/config.sub: update from prep.
49238
49239 2003-07-17  Bruno Haible  <bruno@clisp.org>
49240
49241         * modules/getnline: New file.
49242         * modules/getline: Add lib/getndelim2.c to source file list.
49243         * MODULES.html.sh (func_all_modules): Add getnline.
49244
49245 2003-07-17  Bruno Haible  <bruno@clisp.org>
49246
49247         * m4/getnline.m4: New file.
49248
49249 2003-07-17  Bruno Haible  <bruno@clisp.org>
49250
49251         * m4/Makefile.am.in: Remove file.
49252         * m4/Makefile.am: Remove file.
49253         * m4/Makefile.in: Remove file.
49254
49255 2003-07-17  Bruno Haible  <bruno@clisp.org>
49256
49257         * lib/getnline.h: New file.
49258         * lib/getnline.c: New file.
49259         * lib/getndelim2.c: New file, extracted from getline.c.
49260         (getndelim2): Renamed from getdelim2, with added nmax argument.
49261         * lib/getline.c: Include getndelim2.c.
49262         (getdelim2): Moved out to getndelim2.c.
49263         (getline, getdelim): Update.
49264
49265 2003-07-17  Bruno Haible  <bruno@clisp.org>
49266
49267         * lib/Makefile.am: Remove file.
49268         * lib/Makefile.in: Remove file.
49269
49270 2003-07-17  Bruno Haible  <bruno@clisp.org>
49271
49272         * configure.in: Remove file.
49273         * Makefile.in: Remove file.
49274
49275 2003-07-17  Bruno Haible  <bruno@clisp.org>
49276
49277         * MODULES.html.sh: Put the </BODY> right before </HTML>.
49278
49279 2003-07-16  Karl Berry  <karl@gnu.org>
49280
49281         * config/srclist-update: was running fixlicense twice, which caused
49282                 texinfo.tex to be nullified for some reason.  Simplify,
49283                 $gplsrc is no longer needed as far as I can see?
49284
49285 2003-07-16  Jim Meyering  <jim@meyering.net>
49286
49287         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
49288
49289 2003-07-15  Paul Eggert  <eggert@twinsun.com>
49290
49291         * config/srclist.txt: Get the following files from gettext-runtime/intl
49292         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
49293         ref-del.sin.  From Bruno Haible.
49294         * config/srclist-update (fixfile): Change grep pattern again, since the
49295         previous fix didn't work (there was another trailing $).  Use
49296         '[$]' to escape the $s.
49297
49298 2003-07-15  Karl Berry  <karl@gnu.org>
49299
49300         * lib/vasnprintf.c: update from gettext.
49301
49302 2003-07-15  Karl Berry  <karl@gnu.org>
49303
49304         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
49305         gets expanded when surrounded by '$'.
49306
49307 2003-07-15  Jim Meyering  <jim@meyering.net>
49308
49309         * modules/save-cwd: Don't depend on error.  From Derek Price.
49310
49311 2003-07-15  Jim Meyering  <jim@meyering.net>
49312
49313         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
49314
49315 2003-07-14  Simon Josefsson  <jas@extundo.com>
49316
49317         * modules/mempcpy: New file.
49318         * MODULES.html.sh (func_all_modules): Add mempcpy.
49319
49320 2003-07-14  Simon Josefsson  <jas@extundo.com>
49321
49322         * m4/mempcpy.m4: New file.
49323
49324 2003-07-14  Simon Josefsson  <jas@extundo.com>
49325
49326         * lib/mempcpy.h: New file.
49327         * lib/mempcpy.c: New file.
49328
49329 2003-07-14  Paul Eggert  <eggert@twinsun.com>
49330
49331         * modules/getdate, modules/posixtm: Depend on mktime.
49332
49333 2003-07-14  Paul Eggert  <eggert@twinsun.com>
49334
49335         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
49336         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
49337         unicodeio.c, unicodeio.h, unlocked-io.h:
49338         Switch from LGPL to GPL.
49339
49340 2003-07-14  Paul Eggert  <eggert@twinsun.com>
49341
49342         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
49343         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
49344         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
49345         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
49346         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
49347         updated automatically by ../config/srclist-update.  This changes
49348         their license from LPGL to GPL.
49349
49350 2003-07-14  Paul Eggert  <eggert@twinsun.com>
49351
49352         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
49353         assumed to refer to the root of the most recent stable gettext version.
49354         * config/srclistvars.sh: Add defaults for eggert.
49355         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
49356         Match "This program" as well as "The program".  This is needed
49357         for gettext.
49358
49359 2003-07-14  Jim Meyering  <jim@meyering.net>
49360
49361         Don't emit diagnostics.  Let callers do that.
49362         * lib/save-cwd.c: Don't include "error.h".
49363         (save_cwd): Don't call error.  Ensure that errno is valid
49364         when returning nonzero.
49365
49366         * lib/save-cwd.h (restore_cwd): Update prototype.
49367         * lib/save-cwd.c (restore_cwd): Remove two parameters.
49368         Simplify.  Don't call error upon failure.  Let callers do that.
49369         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
49370         when auditing is enabled.  But don't bother updating the #if.
49371
49372 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
49373
49374         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
49375         it breaks C++ compilation.
49376         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
49377
49378 2003-07-10  Simon Josefsson  <jas@extundo.com>
49379
49380         * modules/strchrnul (Makefile.am): Add strchrnul.h.
49381
49382 2003-07-10  Jim Meyering  <jim@meyering.net>
49383
49384         * m4/clock_time.m4: Remove trailing blank.
49385         * m4/intmax_t.m4: Likewise.
49386
49387 2003-07-10  Jim Meyering  <jim@meyering.net>
49388
49389         * lib/vasnprintf.c: Remove trailing blanks.
49390         Make cpp indentation consistent.
49391
49392 2003-07-09  Paul Eggert  <eggert@twinsun.com>
49393
49394         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
49395         posixver.c, strftime.c, strnlen.c, strverscmp.c:
49396         Switch from LGPL to GPL.
49397
49398 2003-07-09  Paul Eggert  <eggert@twinsun.com>
49399
49400         * config/srclist.txt: Sort sublists.  Add
49401         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
49402         that differ from gnulib for one reason or another; we'd like this list
49403         to be smaller but for now let's document what we have.
49404
49405 2003-07-08  Paul Eggert  <eggert@twinsun.com>
49406
49407         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
49408         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
49409         and sweeter "eval x=$x".
49410         * config/srclist.txt: Get lib/argp* from glibc.
49411
49412 2003-07-07  Paul Eggert  <eggert@twinsun.com>
49413
49414         * lib/mktime.c: Fix some boundary cases and remove need for floating
49415         point.
49416
49417         Issue a compile-time diagnostic if time_t is floating point, or if
49418         two's complement arithmetic is not in effect, or if arithmetic
49419         right shift does not propagate the sign.  These assumptions were
49420         all in the original code but they weren't checked.
49421
49422         (TIME_T_MIDPOINT, verify): New macros.
49423         (__isleap): Remove; it has integer overflow problems.
49424         (leapyear): New function, without those problems.
49425         (ydhms_tm_diff): Remove; splitting into two parts.
49426         (ydhms_diff): New function, containing the arithmetic part of
49427         the old ydhms_tm_diff function.  Issue a compile-time
49428         diagnostic if we are not using C99 integer division.
49429         Avoid casts when possible.
49430         (guess_time_tm): New function, containing the checking part of
49431         the old ydhms_tm_diff function.  Return the new value, rather than
49432         the difference between it and the old.  Accept a new argument T
49433         so that *T specifies the old value.  Check for overflow in the result.
49434
49435         (__mktime_internal): Use a time_t offset, not a long int offset.
49436         This undoes the 2003-06-04 change, which is no longer needed now
49437         that we have better overflow checking.
49438         (localtime_offset): Likewise.
49439
49440         (__mktime_internal): Avoid harmful overflow on hosts where time_t
49441         and long are 64-bit but int is only 32-bit.
49442         (ydhms_diff): Use long int to store year1 and yday1.
49443         Issue a compile-time diagnostic if long int is not wide enough.
49444
49445         (__mktime_internal): Use long int to store adjusted year and yday.
49446         Use plain C rather than preprocessor commands, if that doesn't
49447         affect efficiency.
49448         Check for overflow (and try to repair) after each probe
49449         rather than checking only at the very end.  This avoids some bugs
49450         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
49451         does not equal GMT offset at maximum time).
49452         Use integer to check for overflow rather than floating point; this
49453         is more portable to non-IEEE hosts, and is a tad faster.
49454         When we detect that we are oscillating between two values,
49455         don't check whether tm_isdst has the requested value, since
49456         we already know the answer.  When tm_isdst has the wrong value,
49457         use a different heuristic to find the right one, based on the
49458         extreme values actually observed in practice in tz2003a,
49459         rather than the (overly optimistic) "previous 3 calendar quarters".
49460
49461         (not_equal_tm, print_tm, check_result): Use "const T" rather than
49462         "T const" to accommodate glibc style.
49463         (check_result): Use less-confusing report format.  "long" -> "long int.
49464         (main): Likewise.
49465         Don't loop if the iteration overflows time_t.
49466         Allow a negative step in the iteration.
49467
49468 2003-07-06  Karl Berry  <karl@gnu.org>
49469
49470         * config/depcomp: update from automake.
49471         * config/config.sub: update from prep.
49472
49473 2003-07-03  Karl Berry  <karl@gnu.org>
49474
49475         * config/config.guess: update from prep.
49476
49477 2003-07-01  Paul Eggert  <eggert@twinsun.com>
49478
49479         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
49480         xreadlink.c now includes it unconditionally.
49481
49482 2003-07-01  Paul Eggert  <eggert@twinsun.com>
49483
49484         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
49485         having it depend on HAVE_SYS_TYPES_H.
49486
49487 2003-07-01  Bruno Haible  <bruno@clisp.org>
49488
49489         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
49490         <sys/types.h> should be sufficient.
49491         Reported by Paul Eggert.
49492
49493 2003-06-26  Karl Berry  <karl@gnu.org>
49494
49495         * config/depcomp: update from automake.
49496
49497 2003-06-26  Bruno Haible  <bruno@clisp.org>
49498
49499         * modules/human: Depend on module stdbool.
49500
49501 2003-06-25  Bruno Haible  <bruno@clisp.org>
49502
49503         * modules/readlink: New file.
49504         * modules/xreadlink: Depend on it.
49505         * MODULES.html.sh (func_all_modules): Add readlink.
49506
49507 2003-06-25  Bruno Haible  <bruno@clisp.org>
49508
49509         * m4/readlink.m4: New file.
49510
49511 2003-06-25  Bruno Haible  <bruno@clisp.org>
49512
49513         * lib/readlink.c: New file.
49514
49515 2003-06-22  Karl Berry  <karl@gnu.org>
49516
49517         * config/srclist.txt: update mkinstalldirs from automake.
49518         * config/mkinstalldirs: update.
49519
49520 2003-06-22  Bruno Haible  <bruno@clisp.org>
49521
49522         Portability to mingw32.
49523         * m4/ssize_t.m4: New file, from GNU gettext.
49524         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
49525         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
49526
49527 2003-06-22  Bruno Haible  <bruno@clisp.org>
49528
49529         * modules/safe-read: Add m4/ssize_t.m4.
49530         * modules/xreadlink: Add m4/ssize_t.m4.
49531
49532 2003-06-20  Bruno Haible  <bruno@clisp.org>
49533
49534         Assume C89, so PARAMS isn't needed.
49535         * lib/unicodeio.h (PARAMS): Remove.
49536         * lib/unicodeio.c: Don't use PARAMS.
49537
49538 2003-06-18  Karl Berry  <karl@gnu.org>
49539
49540         * config/config.{guess,sub}: update from prep.
49541
49542 2003-06-18  Jim Meyering  <jim@meyering.net>
49543
49544         Merge changes from coreutils.
49545         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
49546         Remove explicit declarations of xmalloc and realloc.
49547         Include xalloc.h.
49548         (read_utmp): Remove anachronistic cast of xmalloc.
49549
49550 2003-06-17  Paul Eggert  <eggert@twinsun.com>
49551
49552         Assume C89, so PARAMS isn't needed.
49553         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
49554         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
49555         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
49556         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
49557         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
49558         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
49559         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
49560         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
49561         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
49562         lib/xstrtod.h, lib/xstrtol.h: Likewise.
49563         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
49564         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
49565         no longer needed. Anyway, config.h should always be included before any
49566         other file.
49567
49568 2003-06-11  Simon Josefsson  <jas@extundo.com>
49569
49570         * modules/sysexits: New file.
49571         * MODULES.html.sh (func_all_modules): Add sysexits.
49572
49573 2003-06-11  Simon Josefsson  <jas@extundo.com>
49574
49575         * lib/sysexit_.h: New file.
49576
49577 2003-06-11  Derek Price  <derek@ximbiot.com>
49578
49579         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
49580         necessary.
49581
49582 2003-06-11  Bruno Haible  <bruno@clisp.org>
49583
49584         * m4/sysexits.m4: New file.
49585
49586 2003-06-10  Simon Josefsson  <jas@extundo.com>
49587
49588         * lib/argp.h: New file, from glibc.
49589         * lib/argp-ba.c: New file, from glibc.
49590         * lib/argp-eexst.c: New file, from glibc.
49591         * lib/argp-fmtstream.c: New file, from glibc.
49592         * lib/argp-fmtstream.h: New file, from glibc.
49593         * lib/argp-fs-xinl.c: New file, from glibc.
49594         * lib/argp-help.c: New file, from glibc.
49595         * lib/argp-namefrob.h: New file, from glibc.
49596         * lib/argp-parse.c: New file, from glibc.
49597         * lib/argp-pv.c: New file, from glibc.
49598         * lib/argp-pvh.c: New file, from glibc.
49599         * lib/argp-xinl.c: New file, from glibc.
49600
49601 2003-06-10  Simon Josefsson  <jas@extundo.com>
49602
49603         * modules/strchrnul: New file.
49604
49605 2003-06-10  Simon Josefsson  <jas@extundo.com>
49606
49607         * modules/argp: New file.
49608
49609 2003-06-10  Simon Josefsson  <jas@extundo.com>
49610
49611         * m4/strchrnul.m4: New file.
49612
49613 2003-06-10  Simon Josefsson  <jas@extundo.com>
49614
49615         * lib/strchrnul.h: New file.
49616         * lib/strchrnul.c: New file.
49617
49618 2003-06-10  Bruno Haible  <bruno@clisp.org>
49619
49620         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
49621
49622 2003-06-07  Karl Berry  <karl@gnu.org>
49623
49624         * config/config.{guess,sub}: update from prep.
49625
49626 2003-06-07  Jim Meyering  <jim@meyering.net>
49627
49628         * modules/strtod: Use $(...) notation, not @...@ for
49629         AC_REPLACE'd variables.
49630         * modules/localcharset: Likewise.
49631
49632 2003-06-07  Jim Meyering  <jim@meyering.net>
49633
49634         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
49635         in place of my name in the copyright comment.
49636         Remove definition and uses of __P.
49637
49638         From coreutils.
49639         * lib/stat.c: Don't declare xmalloc explicitly.
49640         Instead, include "xalloc.h".
49641         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
49642         xrealloc, and xcalloc return values.
49643         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
49644         Improve comment.
49645         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
49646
49647 2003-06-07  Bruno Haible  <bruno@clisp.org>
49648
49649         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
49650         avoid AC_CONFIG_LINKS.
49651         * modules/fnmatch (Makefile.am): Use explicit creation rule for
49652         fnmatch.h, to avoid AC_CONFIG_LINKS.
49653         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
49654
49655 2003-06-07  Bruno Haible  <bruno@clisp.org>
49656
49657         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
49658         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
49659         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
49660         directory.
49661         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
49662         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
49663         directory.
49664
49665 2003-06-06  Jim Meyering  <jim@meyering.net>
49666
49667         Merge from coreutils.
49668         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
49669         Consolidate declarations and initializations of *_base* locals.
49670
49671         Merge from coreutils.
49672         This avoids a core dump on systems without GNU putenv,
49673         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
49674         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
49675         (unsetenv): New static function, from GNU libc.
49676         (rpl_putenv): Use it.
49677
49678         * lib/modechange.c: Remove trailing blanks.
49679
49680         Merge from coreutils.
49681         * lib/fsusage.c: Remove declaration of statfs.
49682         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
49683
49684         * lib/posixtm.c: Include <stdbool.h> unconditionally.
49685
49686 2003-06-06  Jim Meyering  <jim@meyering.net>
49687
49688         * lib/stdbool_.h: Renamed from stdbool.h.in.
49689
49690 2003-06-06  Jim Meyering  <jim@meyering.net>
49691             Bruno Haible  <bruno@clisp.org>
49692
49693         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
49694         Adjust Makefile.am snippet not to redirect directly to target.
49695         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
49696
49697 2003-06-05  Paul Eggert  <eggert@twinsun.com>
49698
49699         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
49700         mismatch, look in future quarters as well as past.  This fixes a
49701         bug when processing fall-backwards gaps immediately after a long
49702         period of daylight-saving time.
49703
49704         * lib/mktime.c: Assume freestanding C89 or better.
49705         (HAVE_LIMITS_H): Remove.  Assume it's 1.
49706         (__P): Remove; not used.
49707         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
49708         (mktime, not_equal_tm, print_tm, check_result,
49709         main): Use prototypes.  Use const * where appropriate.
49710         (main): Fix typo in testing code that uncovered by above changes.
49711         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
49712
49713 2003-06-04  Paul Eggert  <eggert@twinsun.com>
49714
49715         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
49716         locale.h, localeconv.  This merges changes from coreutils.
49717
49718         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
49719         It can be removed after the next Autoconf is released.
49720         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
49721         needed.
49722
49723 2003-06-04  Paul Eggert  <eggert@twinsun.com>
49724
49725         * lib/mktime.c: Fix Debian bug 177940
49726         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
49727         (localtime_offset): Now long int, not time_t, because we want it
49728         to be guaranteed to be signed.  All uses changed.
49729         (__mktime_internal): If overflow would occur when adding offset,
49730         don't add it.
49731
49732         Merge 'human' changes from coreutils.  Rewrite to support
49733         locale-specific notations like thousands separators.
49734         * lib/human.c: Simplify authorship notice.
49735         Include human.h immediately after config.h.
49736         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
49737         <limits.h>: Do not include, since human.h does.
49738         (SIZE_MAX, UINTMAX_MAX): New macros.
49739         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
49740         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
49741         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
49742         (power_letter): Renamed from suffixes.
49743         (generate_suffix_backwards): Remove.
49744         (adjust_value): Now takes int style (because of human.h changes)
49745         and long double value (for greater precision on some platforms).
49746         (group_number): New function.
49747         (human_readable): Use it.  Use integer options, not enum.
49748         Put the options before the sizes in the arg list.
49749         Support all the new options.
49750         The old human_readable function has been removed;
49751         use inttostr.h instead.
49752         (human_readable, default_block_size, humblock):
49753         Use uintmax_t, not int, for block sizes.
49754         (human_readable_inexact, block_size_types): Remove.
49755         (block_size_opts): New constant.
49756         (human_options): Renamed from human_block_size, with new signature
49757         that allows block sizes up to UINTMAX_MAX.  All callers changed.
49758         * lib/human.h: Add copyright and authorship notice.
49759         Include <limits.h> and <stdbool.h> unconditionally.
49760         (PARAMS): Remove.  All uses removed.
49761         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
49762         (enum human_inexact_style): Remove tag; now a nameless enum.
49763         (human_floor, human_ceiling, human_round_to_even): Now have
49764         values 2, 0, 1 rather than -1, 1, 0.
49765         (human_group_digits, human_suppress_point_zero, human_autoscale,
49766         human_base_1024, human_SI, human_B): New constants.
49767         (human_readable_inexact, human_block_size): Remove.
49768         (human_readable): Size args are now uintmax_t, not int.
49769         (human_options): New decl.
49770
49771         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
49772         unnecessary now that we assume C89 or better.  This change
49773         imported from coreutils.
49774
49775         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
49776         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
49777         in the 2003-05-30 sync from glibc.
49778
49779         .h files should stand alone, but we shouldn't include <sys/types.h>
49780         if we can get away with just <stddef.h>.
49781
49782         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
49783         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
49784         rather than <sys/types.h>, as we merely need size_t.
49785         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
49786         to get size_t.
49787         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
49788         Include <stdio.h>, to get FILE.
49789         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
49790         memcasecmp.h has included <stddef.h> and all we need is size_t.
49791         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
49792         our interface, instead of including <sys/types.h>
49793
49794 2003-06-04  Paul Eggert  <eggert@twinsun.com>
49795
49796         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
49797         now, as glibc mktime is buggy on non-glibc systems.
49798
49799 2003-06-03  Karl Berry  <karl@gnu.org>
49800
49801         * config/config.sub: update from prep.
49802
49803 2003-06-02  Paul Eggert  <eggert@twinsun.com>
49804
49805         [from coreutils]
49806         Fix some minor time-related bugs with POSIX time arguments.
49807         Some valid time stamps were being rejected (notably -1, and
49808         time stamps before 1900 on 64-bit hosts).  And some invalid
49809         time stamps were being accepted, e.g. September 31.
49810
49811         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
49812         that we can return (time_t) -1 successfully.
49813         * lib/posixtm.c: Likewise.
49814         [HAVE_STDBOOL_H]: Include <stdbool.h>.
49815         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
49816         (t): Remove static var.
49817         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
49818         of static var.  All uses changed.
49819         (year): Do not reject years before 1900; they can occur with
49820         64-bit time_t.
49821         (posix_time_parse): Do not check for out-of-range components;
49822         that is now the caller's responsibility, since our checks were
49823         only approximations.
49824         (posixtime): Use mktime to check for out-of-range components,
49825         since it knows them exactly.
49826         If mktime returns (time_t) -1, check whether an error actually occurred
49827         by invoking localtime on -1.
49828         (main) [TEST_POSIXTIME]: Check for input data errors, and report
49829         posixtime failures better.
49830         Improve the test data (in comments only).
49831
49832 2003-06-02  Karl Berry  <karl@gnu.org>
49833
49834         * config/mkinstalldirs (version): new variable.
49835         (--version): new option.
49836         (usage): improve message.
49837
49838 2003-05-30  Karl Berry  <karl@gnu.org>
49839
49840         * lib/mktime.c: update from libc.
49841
49842 2003-05-30  Bruno Haible  <bruno@clisp.org>
49843
49844         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
49845         * config/config.rpath: Upgrade to gettext-0.12.1.
49846
49847 2003-05-30  Bruno Haible  <bruno@clisp.org>
49848
49849         * m4/gettext.m4: Upgrade to gettext-0.12.1.
49850         * m4/nls.m4: New file, from gettext-0.12.1.
49851         * m4/po.m4: New file, from gettext-0.12.1.
49852         * m4/progtest.m4: Upgrade to gettext-0.12.1.
49853
49854 2003-05-30  Bruno Haible  <bruno@clisp.org>
49855
49856         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
49857         * lib/localcharset.h: Likewise.
49858         * lib/localcharset.c: Likewise.
49859
49860 2003-05-29  Karl Berry  <karl@gnu.org>
49861
49862         * config/config.rpath: update from gettext.
49863
49864 2003-05-28  Paul Eggert  <eggert@twinsun.com>
49865
49866         Assume the headers required for C89 freestanding compilers.
49867         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
49868         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
49869         * m4/human.m4 (gl_HUMAN): Likewise.
49870         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
49871         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
49872         * m4/userspec.m4 (gl_USERSPEC): Likewise.
49873         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
49874         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
49875         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
49876
49877 2003-05-28  Paul Eggert  <eggert@twinsun.com>
49878
49879         Assume the headers required for C89 freestanding compilers.
49880         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
49881         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
49882         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
49883         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
49884         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
49885         define, since <limits.h> is guaranteed to do that.
49886         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
49887         * lib/exclude.c: Include <stdbool.h> unconditionally.
49888         * lib/tempname.c: Include <stddef.h> unconditionally.
49889         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
49890         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
49891         <stddef.h> does that.
49892         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
49893         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
49894         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
49895         needed.
49896         * lib/xstrtol.c: Likewise.
49897         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
49898         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
49899
49900         * lib/addext.c (addext): Use assignment rather than cast, to avoid
49901         warnings on some platforms.
49902
49903         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
49904         arbitrarily.
49905
49906 2003-05-26  Jim Meyering  <jim@meyering.net>
49907
49908         Merge in a change from coreutils:
49909         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
49910         that is guaranteed to be `no'.  Use `no_such_member' to indicate
49911         that condition, rather than `-1' which is slightly misleading.
49912         Change the name of the cache variable to have the gl_ prefix.
49913         Prompted by a patch from Richard Dawe for DJGPP.
49914
49915 2003-05-24  Karl Berry  <karl@gnu.org>
49916
49917         * config/config.guess: update from prep.
49918
49919 2003-05-22  Karl Berry  <karl@gnu.org>
49920
49921         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
49922
49923 2003-05-20  Karl Berry  <karl@gnu.org>
49924
49925         * config/config.guess: update from prep.
49926
49927 2003-05-18  Karl Berry  <karl@gnu.org>
49928
49929         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
49930         might actually be set by the user.
49931
49932         * config/depcomp, install-sh, mdate-sh: update from automake.
49933
49934 2003-05-17  Bruno Haible  <bruno@clisp.org>
49935
49936         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
49937         invalid expansion for AC_EGREP_CPP.
49938         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
49939         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
49940         Suggested by Akim Demaille <akim@epita.fr> in
49941         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
49942
49943 2003-05-12  Jim Meyering  <jim@meyering.net>
49944
49945         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
49946         the space-padded-by-default conversion specifiers, %e, %k, %l.
49947
49948 2003-05-12  Bruno Haible  <bruno@clisp.org>
49949
49950         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
49951         the string is longer than 4 KB.
49952
49953 2003-05-11  Karl Berry  <karl@gnu.org>
49954
49955         * config/config.{guess,sub}: update from prep.
49956
49957 2003-05-09  Bruno Haible  <bruno@clisp.org>
49958
49959         * modules/error: Add m4/strerror_r.m4 to file list.
49960
49961 2003-05-03  Bruno Haible  <bruno@clisp.org>
49962
49963         Upgrade to Unicode-4.0.
49964         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
49965         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
49966         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
49967         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
49968         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
49969         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
49970         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
49971         Change width of U+E0100..U+E01EF from 1 to 0.
49972
49973 2003-04-25  Jim Meyering  <jim@meyering.net>
49974
49975         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
49976         of type size_t, not int.
49977
49978 2003-04-25  Bruno Haible  <bruno@clisp.org>
49979
49980         * lib/copy-file.c: Include <stddef.h>, for size_t.
49981
49982 2003-04-21  Paul Eggert  <eggert@twinsun.com>
49983
49984         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
49985         code which expansion is under static control.  Patch imported from
49986         Akim Demaille's patch to Bison; see
49987         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
49988
49989 2003-04-14  Bruno Haible  <bruno@clisp.org>
49990
49991         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
49992
49993 2003-04-11  Jim Meyering  <jim@meyering.net>
49994
49995         Merge changes from Coreutils.
49996
49997         2003-03-22  Jim Meyering  <jim@meyering.net>
49998
49999         * lib/strftime.c (widen): Cast alloca return value to proper type.
50000
50001         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
50002
50003         From GNU libc.
50004         * lib/strftime.c (my_strftime): Handle very large width
50005         specifications for numeric values correctly.  Improve checks for
50006         overflow.
50007
50008         2003-01-19  Jim Meyering  <jim@meyering.net>
50009
50010         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
50011         definitions.
50012         (nl_get_alt_digit) [! defined my_strftime]: Define.
50013         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
50014         _nl_get_alt_digit and _nl_get_walt_digit.
50015
50016         * lib/strftime.c (my_strftime): Merge in locale-related changes from
50017         libc. These changes have no effect outside of _LIBC.
50018
50019 2003-04-10  Bruno Haible  <bruno@clisp.org>
50020
50021         * modules/findprog: New file.
50022         * MODULES.html.sh (func_all_modules): Add it.
50023
50024 2003-04-10  Bruno Haible  <bruno@clisp.org>
50025
50026         * m4/findprog.m4: New file.
50027         * m4/eaccess.m4: New file.
50028
50029 2003-04-10  Bruno Haible  <bruno@clisp.org>
50030
50031         * lib/findprog.h: New file, from GNU gettext.
50032         * lib/findprog.c: New file, from GNU gettext.
50033
50034 2003-04-05  Jim Meyering  <jim@meyering.net>
50035
50036         Merge changes from Coreutils.
50037
50038         * lib/exclude.h (PARAMS): Remove definition and uses.
50039         * lib/exclude.c: Remove uses of `PARAMS'.
50040
50041         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
50042         Add test-cases for DOS filenames. Declare program_name.
50043         (main): Set up program_name.  Patch by Rich Dawe.
50044
50045         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
50046         error from mntctl.
50047         Use mntctl's return value to drive the entry-processing loop, since
50048         we can't rely on the value of the vmt_length member in the last
50049         entry.  On some systems doing so could result in exhausting
50050         virtual memory.  Based in part on a patch from Mike Jetzer.
50051
50052 2003-04-04  Bruno Haible  <bruno@clisp.org>
50053
50054         * modules/linebreak: New file.
50055         * MODULES.html.sh (func_all_modules): Add it.
50056
50057 2003-04-04  Bruno Haible  <bruno@clisp.org>
50058
50059         * m4/linebreak.m4: New file.
50060
50061 2003-04-04  Bruno Haible  <bruno@clisp.org>
50062
50063         * lib/linebreak.h: New file, from GNU gettext.
50064         * lib/linebreak.c: New file, from GNU gettext with slight
50065         modifications.
50066         * lib/lbrkprop.h: New file, from GNU gettext.
50067
50068 2003-04-03  Bruno Haible  <bruno@clisp.org>
50069
50070         * modules/utf8-ucs4: New file.
50071         * modules/utf16-ucs4: New file.
50072         * modules/ucs4-utf8: New file.
50073         * modules/ucs4-utf16: New file.
50074         * MODULES.html.sh (func_all_modules): Add them.
50075
50076 2003-04-03  Bruno Haible  <bruno@clisp.org>
50077
50078         * m4/utf-ucs4.m4: New file.
50079         * m4/ucs4-utf.m4: New file.
50080
50081 2003-04-03  Bruno Haible  <bruno@clisp.org>
50082
50083         * lib/utf8-ucs4.h: New file, from GNU gettext.
50084         * lib/utf16-ucs4.h: New file, from GNU gettext.
50085         * lib/ucs4-utf8.h: New file, from GNU gettext.
50086         * lib/ucs4-utf16.h: New file, from GNU gettext.
50087
50088 2003-04-02  Bruno Haible  <bruno@clisp.org>
50089
50090         * modules/binary-io: New file.
50091         * MODULES.html.sh (func_all_modules): Add it.
50092
50093 2003-04-02  Bruno Haible  <bruno@clisp.org>
50094
50095         * lib/binary-io.h: New file, from GNU gettext.
50096
50097 2003-04-01  Bruno Haible  <bruno@clisp.org>
50098
50099         * modules/pathname: New file.
50100         * MODULES.html.sh (func_all_modules): Add it.
50101
50102 2003-04-01  Bruno Haible  <bruno@clisp.org>
50103
50104         * lib/pathname.h: New file, from GNU gettext.
50105         * lib/concatpath.c: New file, from GNU gettext.
50106
50107 2003-03-30  Bruno Haible  <bruno@clisp.org>
50108
50109         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
50110
50111 2003-03-30  Bruno Haible  <bruno@clisp.org>
50112
50113         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
50114         function chown() doesn't exist.
50115
50116 2003-03-28  Bruno Haible  <bruno@clisp.org>
50117
50118         * modules/copy-file: New file.
50119         * MODULES.html.sh (func_all_modules): Add it.
50120
50121 2003-03-28  Bruno Haible  <bruno@clisp.org>
50122
50123         * m4/copy-file.m4: New file.
50124
50125 2003-03-28  Bruno Haible  <bruno@clisp.org>
50126
50127         * lib/copy-file.h: New file, from GNU gettext.
50128         * lib/copy-file.c: New file, from GNU gettext.
50129
50130 2003-03-18  Jim Meyering  <jim@meyering.net>
50131
50132         * lib/quote.c (quote_n): Fix typo in comment.
50133
50134 2003-03-18  Bruno Haible  <bruno@clisp.org>
50135
50136         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
50137         checking.
50138         * m4/onceonly_2_57.m4: Likewise.
50139
50140 2003-03-17  Bruno Haible  <bruno@clisp.org>
50141
50142         * m4/onceonly.m4: Require autoconf 2.54 or newer.
50143         (m4_quote): Remove macro.
50144         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
50145
50146 2003-03-14  Jim Meyering  <jim@meyering.net>
50147
50148         Merge changes from Coreutils.
50149         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
50150         to be const, in order to avoid warnings.
50151         (obstack_room): Likewise.
50152         (obstack_empty_p): Likewise.
50153
50154 2003-03-14  Bruno Haible  <bruno@clisp.org>
50155
50156         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
50157         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
50158
50159 2003-03-13  Paul Eggert  <eggert@twinsun.com>
50160
50161         Merge changes from Bison.
50162         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
50163         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
50164         when compiling Bison 1.875's `bitset bset = obstack_alloc
50165         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
50166         * lib/hash.c: Include <stdbool.h> unconditionally.
50167
50168 2003-03-13  Paul Eggert  <eggert@twinsun.com>
50169
50170         * m4/onceonly.m4 (m4_quote): New macro.
50171         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
50172         Quote AC_FOREACH variable-expansions properly.
50173
50174 2003-03-13  Paul Eggert  <eggert@twinsun.com>
50175
50176         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
50177
50178 2003-03-09  Paul Eggert  <eggert@twinsun.com>
50179
50180         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
50181         Reported by Bruce Becker; see:
50182         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
50183
50184 2003-03-03  Paul Eggert  <eggert@twinsun.com>
50185             Bruno Haible  <bruno@clisp.org>
50186
50187         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
50188         Reported by John Hughes, see
50189         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
50190
50191 2003-02-20  Bruno Haible  <bruno@clisp.org>
50192
50193         * MODULES.html.sh (func_all_modules): Add poll.
50194
50195 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
50196
50197         * modules/poll: New file.
50198
50199 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
50200
50201         * lib/poll_.h: New file.
50202         * lib/poll.c: New file.
50203
50204 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
50205
50206         * m4/poll.m4: New file.
50207
50208 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
50209
50210         * modules/mathl: New file.
50211
50212 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
50213
50214         * lib/mathl.h: New file.
50215         * lib/acosl.c: New file.
50216         * lib/asinl.c: New file.
50217         * lib/atanl.c: New file.
50218         * lib/ceill.c: New file.
50219         * lib/cosl.c: New file.
50220         * lib/expl.c: New file.
50221         * lib/floorl.c: New file.
50222         * lib/frexpl.c: New file.
50223         * lib/ldexpl.c: New file.
50224         * lib/logl.c: New file.
50225         * lib/sincosl.c: New file.
50226         * lib/sinl.c: New file.
50227         * lib/sqrtl.c: New file.
50228         * lib/tanl.c: New file.
50229         * lib/trigl.c: New file.
50230         * lib/trigl.h: New file.
50231
50232 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
50233
50234         * m4/mathl.m4: New file.
50235
50236 2003-02-18  Bruno Haible  <bruno@clisp.org>
50237
50238         * MODULES.html.sh (func_all_modules): Add mathl.
50239
50240 2003-02-17  Bruno Haible  <bruno@clisp.org>
50241
50242         * modules/mkdtemp: New module.
50243         * MODULES.html.sh (func_all_modules): Add it.
50244
50245 2003-02-17  Bruno Haible  <bruno@clisp.org>
50246
50247         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
50248
50249 2003-02-17  Bruno Haible  <bruno@clisp.org>
50250
50251         * lib/mkdtemp.h: New file, from GNU gettext.
50252         * lib/mkdtemp.c: New file, from GNU gettext.
50253
50254 2003-02-02  Jim Meyering  <jim@meyering.net>
50255
50256         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
50257         e.g. glibc-2.2.93.
50258
50259 2003-01-31  Bruno Haible  <bruno@clisp.org>
50260
50261         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
50262         'rpl_rename'.
50263         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
50264         'rpl_strnlen'.
50265         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
50266         'rpl_strtod'.
50267         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
50268         'rpl_utime'.
50269
50270 2003-01-31  Bruno Haible  <bruno@clisp.org>
50271
50272         * lib/rename.c: #undef rename before defining rpl_rename.
50273         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
50274
50275 2003-01-30  Bruno Haible  <bruno@clisp.org>
50276
50277         * modules/vasnprintf, modules/vasprintf: New modules.
50278         * MODULES.html.sh (func_all_modules): Add them.
50279
50280 2003-01-30  Bruno Haible  <bruno@clisp.org>
50281
50282         * m4/signed.m4: New file, from GNU gettext.
50283         * m4/longdouble.m4: New file, from GNU gettext.
50284         * m4/wchar_t.m4: New file, from GNU gettext.
50285         * m4/wint_t.m4: New file, from GNU gettext.
50286         * m4/vasnprintf.m4: New file.
50287         * m4/vasprintf.m4: New file.
50288
50289 2003-01-30  Bruno Haible  <bruno@clisp.org>
50290
50291         * lib/printf-args.h: New file, from GNU gettext.
50292         * lib/printf-args.c: New file, from GNU gettext.
50293         * lib/printf-parse.h: New file, from GNU gettext.
50294         * lib/printf-parse.c: New file, from GNU gettext.
50295         * lib/vasnprintf.h: New file, from GNU gettext.
50296         * lib/vasnprintf.c: New file, from GNU gettext.
50297         * lib/asnprintf.c: New file, from GNU gettext.
50298         * lib/vasprintf.h: New file, from GNU gettext with modifications.
50299         * lib/vasprintf.c: New file, from GNU gettext.
50300         * lib/asprintf.c: New file, from GNU gettext.
50301
50302 2003-01-29  Bruno Haible  <bruno@clisp.org>
50303
50304         * modules/stpncpy: New module.
50305         * MODULES.html.sh (func_all_modules): Add it.
50306
50307 2003-01-29  Bruno Haible  <bruno@clisp.org>
50308
50309         * m4/stpncpy.m4: New file.
50310
50311 2003-01-29  Bruno Haible  <bruno@clisp.org>
50312
50313         * lib/stpncpy.h: New file, from GNU gettext with modifications.
50314         * lib/stpncpy.c: New file, from GNU gettext with modifications.
50315
50316 2003-01-28  Bruno Haible  <bruno@clisp.org>
50317
50318         * modules/c-ctype: New module.
50319         * MODULES.html.sh (func_all_modules): Add it.
50320
50321 2003-01-28  Bruno Haible  <bruno@clisp.org>
50322
50323         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
50324         Paul Eggert.
50325         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
50326         Paul Eggert.
50327
50328 2003-01-27  Bruno Haible  <bruno@clisp.org>
50329
50330         * modules/xsetenv: New module.
50331         * MODULES.html.sh (func_all_modules): Add it.
50332
50333 2003-01-27  Bruno Haible  <bruno@clisp.org>
50334
50335         * lib/xsetenv.h: New file, from GNU gettext.
50336         * lib/xsetenv.c: New file, from GNU gettext.
50337
50338 2003-01-23  Jim Meyering  <jim@meyering.net>
50339
50340         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
50341         from working on systems without dirfd (at least Irix and OSF1/Tru64).
50342
50343 2003-01-23  Bruno Haible  <bruno@clisp.org>
50344
50345         * modules/minmax: New module.
50346         * MODULES.html.sh (func_all_modules): Add it.
50347
50348 2003-01-23  Bruno Haible  <bruno@clisp.org>
50349
50350         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
50351         Eggert.
50352
50353 2003-01-22  Bruno Haible  <bruno@clisp.org>
50354
50355         * modules/exit: New module.
50356         * MODULES.html.sh (func_all_modules): Add it.
50357
50358 2003-01-22  Bruno Haible  <bruno@clisp.org>
50359
50360         * lib/exit.h: New file, from GNU gettext.
50361
50362 2003-01-19  Bruno Haible  <bruno@clisp.org>
50363
50364         * gnulib-tool: Recognize option --extract-maintainer.
50365         (func_get_maintainer): New function.
50366         * modules/*: Add Maintainer entry.
50367
50368 2003-01-16  Jim Meyering  <jim@meyering.net>
50369
50370         * m4/regex.m4: The `regex' struct is both input and output.
50371         Initialize it before each use.  Patch by Tim Waugh.
50372
50373 2003-01-16  Bruno Haible  <bruno@clisp.org>
50374
50375         * MODULES.html.sh: Add a table of contents. Add the module name as
50376         leftmost column. Add hyperlinks.
50377
50378 2003-01-15  Bruno Haible  <bruno@clisp.org>
50379
50380         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
50381
50382 2003-01-15  Bruno Haible  <bruno@clisp.org>
50383
50384         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
50385         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
50386         suffix.
50387
50388 2003-01-15  Bruno Haible  <bruno@clisp.org>
50389
50390         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
50391
50392 2003-01-15  Bruno Haible  <bruno@clisp.org>
50393
50394         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
50395         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
50396
50397 2003-01-14  Jim Meyering  <jim@meyering.net>
50398
50399         * lib/same.c (same_name): Tweak a comment.
50400
50401 2003-01-14  Bruno Haible  <bruno@clisp.org>
50402
50403         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
50404         when a string comparison is sufficient.
50405
50406 2003-01-14  Bruno Haible  <bruno@clisp.org>
50407
50408         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
50409         'unsigned int'.
50410
50411 2003-01-14  Bruno Haible  <bruno@clisp.org>
50412
50413         * lib/hash-pjw.c: Add comment about low quality of this function.
50414
50415 2003-01-13  Bruno Haible  <bruno@clisp.org>
50416
50417         * modules/stpcpy: Distribute lib/stpcpy.h.
50418         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
50419
50420 2003-01-13  Bruno Haible  <bruno@clisp.org>
50421
50422         * modules/*: Add a description.
50423         * modules/strpbrk: Fix Makefile.am snippet.
50424         * modules/strtoimax: Fix dependencies.
50425         * modules/strtoumax: Likewise.
50426
50427 2003-01-13  Bruno Haible  <bruno@clisp.org>
50428
50429         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
50430         * modules/alloca (Makefile.am): All object files depend on alloca.h.
50431         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
50432
50433 2003-01-13  Bruno Haible  <bruno@clisp.org>
50434
50435         * gnulib-tool (func_create_testdir): Store config/* files in the main
50436         directory.
50437         * config.rpath: Move to ...
50438         * config/config.rpath: ... here.
50439         * modules/gettext: Contains config/config.rpath, not config.rpath.
50440         * modules/iconv: Likewise.
50441
50442 2003-01-12  Paul Eggert  <eggert@twinsun.com>
50443
50444         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
50445         to avoid collisions with libcurses and libreadline.
50446
50447         * m4/getstr.m4: Remove.
50448         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
50449
50450 2003-01-12  Paul Eggert  <eggert@twinsun.com>
50451
50452         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
50453         to avoid collisions with libcurses and libreadline.
50454
50455         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
50456         * lib/getstr.h, getstr.c: Remove.
50457         * lib/getline.c: Include "getline.h", to check interface.
50458         Move body of old getstr.c here: this defines MIN_CHUNK and
50459         declares getdelim2, which is renamed from getstr.
50460         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
50461
50462         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
50463         All uses changed.
50464         * lib/linebuffer.h: Likewise.
50465         (readline): Remove backward-compatibility macro.
50466
50467 2003-01-12  Paul Eggert  <eggert@twinsun.com>
50468
50469         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
50470         to avoid collisions with libcurses and libreadline.
50471         * getstr: Remove.
50472         * MODULES.html.sh: Remove getstr.
50473         * modules/getline: Depend on unlocked-io, not getstr.
50474
50475 2003-01-12  Jim Meyering  <jim@meyering.net>
50476
50477         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
50478
50479 2003-01-10  Bruno Haible  <bruno@clisp.org>
50480
50481         * modules/alloca: Change Makefile.am requirements. Simplify Include
50482         requirements. Add lib/alloca_.h to file list.
50483
50484 2003-01-10  Bruno Haible  <bruno@clisp.org>
50485
50486         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
50487
50488 2003-01-10  Bruno Haible  <bruno@clisp.org>
50489
50490         * lib/alloca_.h: New file.
50491         * lib/getdate.y: Unconditionally include alloca.h.
50492         * lib/makepath.c: Likewise.
50493         * lib/setenv.c: Likewise.
50494         * lib/userspec.c: Likewise.
50495
50496 2003-01-09  Karl Berry  <karl@gnu.org>
50497
50498         * MODULES.html.sh: include `dirname $0` in PATH, to find
50499         gnulib-tool.
50500
50501 2003-01-09  Bruno Haible  <bruno@clisp.org>
50502
50503         * modules/stdbool: Change configure.ac, Makefile.am requirements.
50504         Simplify Include requirements. Add lib/stdbool.h.in to file list.
50505
50506 2003-01-09  Bruno Haible  <bruno@clisp.org>
50507
50508         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
50509
50510 2003-01-09  Bruno Haible  <bruno@clisp.org>
50511
50512         * lib/stdbool.h.in: New file.
50513
50514 2003-01-09  Bruno Haible  <bruno@clisp.org>
50515
50516         * gnulib-tool (func_all_modules): Ignore files ending in ~.
50517         * MODULES.html.sh: Likewise.
50518
50519 2003-01-08  Jim Meyering  <jim@meyering.net>
50520
50521         * lib/full-write.c: Undefine and define-away `const' after inclusion
50522         of errno.h, not before.  Suggestion from Bruno Haible.
50523
50524 2003-01-08  Bruno Haible  <bruno@clisp.org>
50525
50526         * modules/full-read: Depend on full-write.
50527
50528 2003-01-08  Bruno Haible  <bruno@clisp.org>
50529
50530         * lib/safe-read.c: Include specification header first, to ensure its
50531         selfcontainedness.
50532         * lib/full-write.c: Likewise.
50533
50534 2003-01-07  Jim Meyering  <jim@meyering.net>
50535
50536         * lib/full-write.c: Rework so that it may serve to define full_read,
50537         too.
50538         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
50539
50540 2003-01-07  Bruno Haible  <bruno@clisp.org>
50541
50542         * lib/strtoimax.c: Include <stdint.h> as an alternative to
50543         <inttypes.h>.
50544         * lib/xstrtol.h: Likewise.
50545         * lib/xstrtoimax.c: Likewise.
50546         * lib/xstrtoumax.c: Likewise.
50547         * lib/human.h: Likewise.
50548
50549         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
50550         on systems that have <inttypes.h> but not <stdint.h>.
50551
50552 2003-01-07  Bruno Haible  <bruno@clisp.org>
50553
50554         * MODULES.html.sh: Add copyright notice.
50555         (missed_files): Omit CVS directory entries.
50556         (func_module): Make it work with sed-3.02.
50557         * MODULES.txt: Remove file.
50558
50559 2003-01-06  Jim Meyering  <jim@meyering.net>
50560
50561         * lib/version-etc.c: Update year in translatable copyright string.
50562
50563 2003-01-03  Karl Berry  <karl@gnu.org>
50564
50565         * config/config.{guess,sub}: update from prep.
50566
50567 2003-01-02  Karl Berry  <karl@gnu.org>
50568
50569         * doc/COPYING.DOC: belatedly updated to 1.2.
50570
50571 2003-01-01  Karl Berry  <karl@gnu.org>
50572
50573         * gnulib-tool (func_verify_module): report module name $module in
50574         error message, not $1.
50575         * gnulib-tool (create-testdir): don't complain if destdir couldn't
50576         be created, only if it doesn't exist.
50577         * gnulib-tool (last_checkin_date): don't expand the $Date here.
50578
50579 2002-12-31  Paul Eggert  <eggert@twinsun.com>
50580
50581         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
50582
50583 2002-12-31  Paul Eggert  <eggert@twinsun.com>
50584
50585         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
50586         memcmp if strcoll doesn't work.
50587
50588 2002-12-31  Bruno Haible  <bruno@clisp.org>
50589
50590         * lib/utime.c (utime_null): No need to call ftruncate if the file was
50591         nonempty.
50592
50593 2002-12-31  Bruno Haible  <bruno@clisp.org>
50594
50595         * lib/memcoll.c (STRCOLL): New macro.
50596         (memcoll): Use it.
50597
50598 2002-12-31  Bruno Haible  <bruno@clisp.org>
50599
50600         * lib/localcharset.h: New file.
50601         * lib/localcharset.c: Include it.
50602         * lib/unicodeio.c: Likewise.
50603
50604 2002-12-31  Bruno Haible  <bruno@clisp.org>
50605
50606         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
50607         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
50608
50609 2002-12-31  Bruno Haible  <bruno@clisp.org>
50610
50611         * lib/getline.h: Include <stddef.h>, for size_t.
50612
50613         * lib/unicodeio.h: Include <stddef.h>, for size_t.
50614         * lib/unicodeio.c: Don't include <stddef.h>.
50615
50616 2002-12-31  Bruno Haible  <bruno@clisp.org>
50617
50618         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
50619         HAVE_TM_ZONE.
50620
50621 2002-12-24  Karl Berry  <karl@gnu.org>
50622
50623         * config/config.guess: update from prep.
50624
50625 2002-12-24  Bruno Haible  <bruno@clisp.org>
50626
50627         General infrasructure.
50628         * m4/README: Rewritten.
50629         * m4/onceonly.m4: New file.
50630         * m4/onceonly_2_57.m4: New file.
50631
50632         Module atexit.
50633         * m4/atexit.m4: New file.
50634
50635         Module strtod.
50636         * m4/strtod.m4: New file.
50637
50638         Module strtol.
50639         * m4/strtol.m4: New file.
50640
50641         Module strtoul.
50642         * m4/strtoul.m4: New file.
50643
50644         Module memchr.
50645         * m4/memchr.m4: New file.
50646
50647         Module memcmp.
50648         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
50649         (jm_FUNC_MEMCMP): Invoke it.
50650
50651         Module memcpy.
50652         * m4/memcpy.m4: New file.
50653
50654         Module memmove.
50655         * m4/memmove.m4: New file.
50656
50657         Module memset.
50658         * m4/memset.m4: New file.
50659
50660         Module strcspn.
50661         * m4/strcspn.m4: New file.
50662
50663         Module strpbrk.
50664         * m4/strpbrk.m4: New file.
50665
50666         Module strstr.
50667         * m4/strstr.m4: New file.
50668
50669         Module strerror.
50670         * m4/strerror.m4: New file.
50671
50672         Module mktime.
50673         * m4/mktime.m4: Renamed from jm-mktime.m4.
50674         (gl_PREREQ_MKTIME): New macro.
50675         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
50676
50677         Module malloc.
50678         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
50679         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
50680         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
50681
50682         Module realloc.
50683         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
50684         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
50685         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
50686
50687         Module strftime.
50688         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
50689         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
50690         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
50691         gl_TM_GMTOFF.
50692         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
50693
50694         Module xalloc.
50695         * m4/xalloc.m4: New file.
50696
50697         Module alloca.
50698         * m4/alloca.m4: New file.
50699
50700         Module putenv.
50701         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
50702         (jm_FUNC_PUTENV): Invoke it.
50703
50704         Module setenv.
50705         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
50706         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
50707         when invoked twice.
50708         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
50709         gt_FUNC_SETENV.
50710
50711         Module memrchr.
50712         * m4/memrchr.m4: New file.
50713
50714         Module stpcpy.
50715         * m4/stpcpy.m4: New file.
50716
50717         Module strcase.
50718         * m4/strcase.m4: New file.
50719
50720         Module strdup.
50721         * m4/strdup.m4: New file.
50722
50723         Module strnlen.
50724         * m4/strnlen.m4: New file.
50725
50726         Module strndup.
50727         * m4/strndup.m4: New file.
50728
50729         Module xstrtod.
50730         * m4/xstrtod.m4: New file.
50731
50732         Module xstrtol.
50733         * m4/xstrtol.m4: New file.
50734
50735         Module getdate.
50736         * m4/getdate.m4: New file.
50737
50738         Module unlocked-io.
50739         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
50740         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
50741         * m4/jm-glibc-io.m4n: Remove file.
50742
50743         Module long-options.
50744         * m4/long-options.m4: New file.
50745
50746         Module md5.
50747         * m4/md5.m4: New file.
50748
50749         Module sha.
50750         * m4/sha.m4: New file.
50751
50752         Module getstr.
50753         * m4/getstr.m4: New file.
50754
50755         Module getline.
50756         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
50757         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
50758         <sys/types.h>, for size_t. Use the function name gnu_getline, not
50759         simply getline. Infoke gl_PREREQ_GETLINE.
50760
50761         Module obstack.
50762         * m4/obstack.m4: New file.
50763
50764         Module hash.
50765         * m4/hash.m4: New file.
50766
50767         Module readtokens.
50768         * m4/readtokens.m4: New file.
50769
50770         Module strverscmp.
50771         * m4/strverscmp.m4: New file.
50772
50773         Module stdbool.
50774         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
50775         OSF/1.
50776
50777         Module strtoll.
50778         * m4/strtoll.m4: New file.
50779
50780         Module strtoull.
50781         * m4/strtoull.m4: New file.
50782
50783         Module strtoimax.
50784         * m4/strtoimax.m4: New file.
50785
50786         Module strtoumax.
50787         * m4/strtoumax.m4: New file.
50788
50789         Module xstrtoimax.
50790         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
50791         jm_AC_PREREQ_XSTRTOIMAX.
50792         Moved the strtol prerequisites to strtol.m4.
50793         Moved the strtoll prerequisites to strtoll.m4.
50794         Moved the strtoimax prerequisites to strtoimax.m4.
50795
50796         Module xstrtoumax.
50797         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
50798         jm_AC_PREREQ_XSTRTOUMAX.
50799         Moved the strtoul prerequisites to strtoul.m4.
50800         Moved the strtoull prerequisites to strtoull.m4.
50801         Moved the strtoumax prerequisites to strtoumax.m4.
50802
50803         Module chown.
50804         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
50805         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
50806
50807         Module dup2.
50808         * m4/dup2.m4: New file.
50809
50810         Module ftruncate.
50811         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
50812         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
50813
50814         Module getgroups.
50815         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
50816         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
50817
50818         Module gettimeofday.
50819         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
50820         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
50821         gl_PREREQ_GETTIMEOFDAY.
50822
50823         Module mkdir.
50824         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
50825         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
50826
50827         Module mkstemp.
50828         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
50829         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
50830         jm_AC_TYPE_UINTMAX_T.
50831         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
50832
50833         Module stat.
50834         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
50835         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
50836
50837         Module lstat.
50838         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
50839         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
50840
50841         Module timespec.
50842         * m4/timespec.m4 (gl_TIMESPEC): New macro.
50843         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
50844         * m4/st_mtim.m4: Indentation.
50845
50846         Module nanosleep.
50847         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
50848         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
50849         gl_PREREQ_NANOSLEEP.
50850
50851         Module regex.
50852         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
50853         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
50854         (gl_REGEX): New macro.
50855
50856         Module rename.
50857         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
50858         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
50859
50860         Module rmdir.
50861         * m4/rmdir.m4: New file.
50862
50863         Module utime.
50864         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
50865         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
50866         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
50867
50868         Module dirname.
50869         * m4/dirname.m4: New file.
50870
50871         Module getopt.
50872         * m4/getopt.m4: New file.
50873
50874         Module unistd-safer.
50875         * m4/unistd-safer.m4: New file.
50876
50877         Module fnmatch.
50878         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
50879         declaration.
50880         (gl_PREREQ_FNMATCH_EXTRA): New macro.
50881         (gl_FUNC_FNMATCH_POSIX): New macro.
50882         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
50883         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
50884         simply fnmatch.
50885
50886         Module exclude.
50887         * m4/exclude.m4: New file.
50888
50889         Module human.
50890         * m4/human.m4: New file.
50891
50892         Module acl.
50893         * m4/acl.m4: Nop.
50894
50895         Module backupfile.
50896         * m4/backupfile.m4: New file.
50897         * m4/d-ino.m4: Indentation.
50898
50899         Module fsusage.
50900         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
50901         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
50902         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
50903
50904         Module dirfd.
50905         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
50906         requirements.
50907
50908         Module euidaccess.
50909         * m4/euidaccess.m4: New file.
50910
50911         Module file-type.
50912         * m4/file-type.m4: New file.
50913
50914         Module fileblocks.
50915         * m4/fileblocks.m4: New file.
50916
50917         Module filemode.
50918         * m4/filemode.m4: New file.
50919
50920         Module isdir.
50921         * m4/isdir.m4: New file.
50922
50923         Module lchown.
50924         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
50925         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
50926
50927         Module makepath.
50928         * m4/makepath.m4: New file.
50929
50930         Module modechange.
50931         * m4/modechange.m4: New file.
50932
50933         Module mountlist.
50934         * m4/mountlist.m4: New file.
50935         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
50936         Indentation.
50937
50938         Module path-concat.
50939         * m4/path-concat.m4: New file.
50940
50941         Module pathmax.
50942         * m4/pathmax.m4: New file.
50943
50944         Module same.
50945         * m4/same.m4: New file.
50946
50947         Module save-cwd.
50948         * m4/save-cwd.m4: New file.
50949
50950         Module savedir.
50951         * m4/savedir.m4: New file.
50952
50953         Module xgetcwd.
50954         * m4/xgetcwd.m4: New file.
50955         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
50956
50957         Module xreadlink.
50958         * m4/xreadlink.m4: New file.
50959
50960         Module safe-read.
50961         * m4/safe-read.m4: New file.
50962
50963         Module safe-write.
50964         * m4/safe-write.m4: New file.
50965
50966         Module closeout.
50967         * m4/closeout.m4: New file.
50968
50969         Module stdio-safer.
50970         * m4/stdio-safer.m4: New file.
50971
50972         Module getpass.
50973         * m4/getpass.m4: New file.
50974
50975         Module getugroups.
50976         * m4/getugroups.m4: New file.
50977
50978         Module group-member.
50979         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
50980         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
50981
50982         Module idcache.
50983         * m4/idcache.m4: New file.
50984
50985         Module userspec.
50986         * m4/userspec.m4: New file.
50987
50988         Module gettime.
50989         * m4/clock_time.m4: New file.
50990         * m4/gettime.m4: New file.
50991
50992         Module settime.
50993         * m4/settime.m4: New file.
50994
50995         Module posixtm.
50996         * m4/posixtm.m4: New file.
50997
50998         Module gethostname.
50999         * m4/gethostname.m4: New file.
51000
51001         Module canon-host.
51002         * m4/canon-host.m4: New file.
51003
51004         Module gettext.
51005         * m4/codeset.m4: New file, from gettext-0.11.5.
51006         * m4/gettext.m4: New file, from gettext-0.11.5.
51007         * m4/glibc21.m4: New file, from gettext-0.11.5.
51008         * m4/iconv.m4: New file, from gettext-0.11.5.
51009         * m4/intdiv0.m4: New file, from gettext-0.11.5.
51010         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
51011         * m4/inttypes.m4: New file, from gettext-0.11.5.
51012         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
51013         * m4/isc-posix.m4: New file, from gettext-0.11.5.
51014         * m4/lcmessage.m4: New file, from gettext-0.11.5.
51015         * m4/lib-ld.m4: New file, from gettext-0.11.5.
51016         * m4/lib-link.m4: New file, from gettext-0.11.5.
51017         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
51018         * m4/progtest.m4: New file, from gettext-0.11.5.
51019         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
51020         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
51021         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
51022
51023         Module localcharset.
51024         * m4/localcharset.m4: New file.
51025
51026         Module hard-locale.
51027         * m4/hard-locale.m4: New file.
51028
51029         Module mbswidth.
51030         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
51031         onceonly macros.
51032         * m4/mbrtowc.m4: Add comment.
51033
51034         Module memcasecmp.
51035         * m4/memcasecmp.m4: New file.
51036
51037         Module memcoll.
51038         * m4/memcoll.m4: New file.
51039
51040         Module unicodeio.
51041         * m4/unicodeio.m4: New file.
51042
51043         Module rpmatch.
51044         * m4/rpmatch.m4: New file.
51045
51046         Module yesno.
51047         * m4/yesno.m4: New file.
51048
51049         Module exitfail.
51050         * m4/exitfail.m4: New file.
51051
51052         Module c-stack.
51053         * m4/c-stack.m4 (gl_C_STACK): New macro.
51054         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
51055
51056         Module error.
51057         * m4/error.m4 (gl_ERROR): New macro.
51058         (jm_PREREQ_ERROR): Use onceonly macros.
51059
51060         Module fatal.
51061         * m4/fatal.m4: New file.
51062
51063         Module getloadavg.
51064         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
51065         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
51066
51067         Module getpagesize.
51068         * m4/getpagesize.m4: New file.
51069
51070         Module getusershell.
51071         * m4/getusershell.m4: New file.
51072
51073         Module physmem.
51074         * m4/physmem.m4: New file.
51075
51076         Module posixver.
51077         * m4/posixver.m4: New file.
51078
51079         Module quotearg.
51080         * m4/quotearg.m4: New file.
51081
51082         Module quote.
51083         * m4/quote.m4: New file.
51084
51085         Module readutmp.
51086         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
51087
51088         Module sig2str.
51089         * m4/sig2str.m4: New file.
51090
51091         Other.
51092         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
51093         ulonglong.m4.
51094         * m4/intmax_t.m4: New file.
51095         * m4/d-type.m4: Indentation.
51096         * m4/jm-macros.m4: Update.
51097         * m4/prereq.m4 (jm_PREREQ): Update.
51098         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
51099         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
51100         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
51101         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
51102         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
51103         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
51104         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
51105         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
51106         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
51107         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
51108         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
51109         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
51110         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
51111         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
51112         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
51113         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
51114         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
51115         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
51116         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
51117
51118 2002-12-24  Bruno Haible  <bruno@clisp.org>
51119
51120         * MODULES.txt: Update according to m4/ changes.
51121
51122         Module gettext.
51123         * config.rpath: New file, from gettext-0.11.5.
51124
51125         * modules/*: New module descriptions.
51126         * gnulib-tool: New file.
51127         * MODULES.html.sh: New file.
51128
51129 2002-12-21  Karl Berry  <karl@gnu.org>
51130
51131         * doc/fdl.texi: update to version 1.2.
51132
51133 2002-12-19  Karl Berry  <karl@gnu.org>
51134
51135         * config/config.guess: update from prep.
51136
51137 2002-12-18  Bruno Haible  <bruno@clisp.org>
51138
51139         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
51140         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
51141
51142 2002-12-17  Bruno Haible  <bruno@clisp.org>
51143
51144         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
51145         stdlib.h, string.h.
51146
51147 2002-12-17  Bruno Haible  <bruno@clisp.org>
51148
51149         * lib/canon-host.c (strdup): Remove unused declaration.
51150
51151         * lib/fsusage.c: Include full_read.h.
51152         (get_fs_usage): Use full_read instead of safe_read.
51153
51154         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
51155
51156 2002-12-12  Karl Berry  <karl@gnu.org>
51157
51158         * config/config.guess: update from prep.
51159
51160 2002-12-11  Bruno Haible  <bruno@clisp.org>
51161
51162         * m4/setenv.m4: New file, from gettext-0.11.5.
51163
51164 2002-12-11  Bruno Haible  <bruno@clisp.org>
51165
51166         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
51167         not unsetenv().
51168         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
51169         modifications:
51170
51171         2002-12-11  Bruno Haible  <bruno@clisp.org>
51172
51173                 * setenv.c (alloca): Fall back to malloc.
51174                 (freea): New macro.
51175                 (setenv): Use freea() to free memory allocated with alloca().
51176
51177         2002-11-13  Bruno Haible  <bruno@clisp.org>
51178
51179                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
51180                 function declarations.
51181                 * unsetenv.c (unsetenv): Likewise.
51182
51183         2002-03-04  Bruno Haible  <bruno@clisp.org>
51184
51185                 Portability to AIX 4.3.3.
51186                 * unsetenv.c: New file, extracted from setenv.c.
51187                 * setenv.c: Move the unsetenv() function to unsetenv.c.
51188
51189         2001-12-20  Bruno Haible  <bruno@clisp.org>
51190
51191                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
51192                 use malloc instead. For SunOS 4.
51193
51194         2001-12-11  Bruno Haible  <bruno@clisp.org>
51195
51196                 * setenv.c: Declare alloca.
51197                 (compar_fn_t): New typedef.
51198                 (KNOWN_VALUE, STORE_VALUE): Use it.
51199
51200         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
51201         setenv.h.
51202
51203 2002-12-10  Paul Eggert  <eggert@twinsun.com>
51204
51205         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
51206         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
51207         Choose values that are less likely to collide with system fnmatch
51208         options.
51209         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
51210         defined (e.g., a pure POSIX system).
51211         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
51212         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
51213
51214 2002-12-06  Paul Eggert  <eggert@twinsun.com>
51215
51216         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
51217         a pain in practice to deal with generated m4 files.  This change
51218         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
51219
51220         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
51221         and jm-glibc-io.m4, as they are no longer a special case.
51222         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
51223         kludge and the auto-generation stuff.  Check only whether the
51224         functions are declared, not whether they exist, since older hosts
51225         that don't declare the functions can't use the optimization anyway.
51226
51227 2002-12-06  Jim Meyering  <jim@meyering.net>
51228
51229         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
51230
51231         Merge in changes from libc's misc/error.c, in preparation
51232         for the merge of gnulib's changes back into libc.
51233
51234         * lib/error.c (_): Define only if not already defined.
51235         Move definition to follow all #include directives.
51236         Include unlocked-io.h only if !_LIBC.
51237         [_LIBC]: Include <libio/libioP.h>.
51238         [USE_IN_LIBIO]: Include <libio/iolibio.h>
51239         (fflush): Tweak definition to use INTUSE.
51240         (putc): Define.
51241
51242 2002-12-05  Paul Eggert  <eggert@twinsun.com>
51243
51244         * lib/alloca.c [defined emacs]: Include "lisp.h".
51245         (xalloc_die) [defined emacs]: New macro.
51246         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
51247         [! defined emacs]: Include <xalloc.h>.
51248         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
51249         (pointer): Typedef to POINTER_TYPE *.
51250         (malloc): Remove decl; we now always use xmalloc.
51251         (alloca): Use old-style definition, since Emacs needs this.
51252         Check for arithmetic overflow when computing combined size.
51253
51254 2002-12-04  Paul Eggert  <eggert@twinsun.com>
51255
51256         Do not generate unlocked-io.h automatically, since it's easier to
51257         maintain it by hand.
51258
51259         * lib/unlocked-io.h: New file, from GNU diffutils,
51260         but with proper copyright notice and attribution.
51261         * lib/gen-uio: Remove.
51262         * lib/Makefile.am: Add copyright notice.
51263         (libfetish_a_SOURCES): Add unlocked-io.h.
51264         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
51265         (DISTCLEANFILES, io_functions): Remove macros.
51266         (EXTRA_DIST): Remove gen_uio.
51267         (unlocked-io.h): Remove rule.
51268
51269 2002-12-04  Jim Meyering  <jim@meyering.net>
51270
51271         Reflect the fact that stat.c and lstat.c are no longer generated.
51272         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
51273         (DISTCLEANFILES): Likewise.
51274         (EXTRA_DIST): Likewise.
51275         (all_local): Don't depend on stat.c or lstat.c.
51276         (stat.c, lstat.c): Remove rules.
51277         (EXTRA_DIST): Remove xstat.in.
51278
51279         * lib/xstat.in: Remove file.  Contents moved into stat.c.
51280         * lib/stat.c: New file.  Contents mostly from xstat.in.
51281         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
51282         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
51283
51284         * lib/safe-read.c: Rework so that it may serve to define safe_write,
51285         too.
51286         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
51287
51288 2002-12-03  Jim Meyering  <jim@meyering.net>
51289
51290         * lib/safe-read.c, safe-write.c: Change variable names and comments,
51291         but not semantics, to minimize the differences between these two files.
51292         (safe_read): Change comment to mention SAFE_READ_ERROR.
51293
51294         * lib/safe-read.c (IS_EINTR): Define.
51295         (safe_read): Use IS_EINTR in place of in-function cpp directives.
51296
51297 2002-12-02  Jim Meyering  <jim@meyering.net>
51298
51299         * lib/safe-read.c (EINTR): Define.
51300         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
51301         (INT_MAX): Provide fallback.
51302         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
51303
51304         * lib/safe-read.h (SAFE_READ_ERROR): Define.
51305
51306 2002-12-02  Bruno Haible  <bruno@clisp.org>
51307
51308         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
51309         Define, taken from safe-read.c.
51310         (INT_MAX): Provide fallback.
51311         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
51312         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
51313
51314         * lib/safe-read.c (EINTR): Remove definition.
51315         (safe_read): Don't use EINTR if it is absent.
51316
51317 2002-12-01  Jim Meyering  <jim@meyering.net>
51318
51319         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
51320         zero.
51321         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
51322
51323 2002-11-27  Paul Eggert  <eggert@twinsun.com>
51324
51325         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
51326         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
51327         with `if (! (value < limit)) abort ();', for readability.
51328
51329 2002-11-26  Karl Berry  <karl@gnu.org>
51330
51331         * lib/strdup.c: copy from libc again, with jim's ok.
51332         * lib/.cppi-disable: re-add strdup.c
51333
51334 2002-11-25  Karl Berry  <karl@gnu.org>
51335
51336         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
51337         instead of "strtol.c".
51338
51339 2002-11-25  Karl Berry  <karl@gnu.org>
51340
51341         * config/install-sh: update from automake for variable quoting, $0 in
51342         error msgs, etc.
51343
51344         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
51345         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
51346         entry.
51347
51348 2002-11-25  Jim Meyering  <jim@meyering.net>
51349
51350         * lib/mktime.c: Sync from libc, now that it has the latest fix.
51351
51352 2002-11-24  Karl Berry  <karl@gnu.org>
51353
51354         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
51355         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
51356
51357 2002-11-24  Jim Meyering  <jim@meyering.net>
51358
51359         Update from coreutils:
51360
51361         * lib/mktime.c: Merge in changes from libc.
51362
51363         Avoid a link-time failure on some Linux systems.
51364         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
51365         (otherwise).
51366         (__mon_yday): Declare with the STATIC attribute.
51367         (__mktime_internal): Likewise.
51368         Based on a report from Greg Schafer.
51369
51370 2002-11-23  Jim Meyering  <jim@meyering.net>
51371
51372         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
51373         Use `unsigned', not `int', as type of index.
51374
51375         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
51376
51377         * lib/fsusage.c: Remove unneeded parentheses around operands of
51378         `defined'.
51379
51380 2002-11-22  Paul Eggert  <eggert@twinsun.com>
51381
51382         * lib/quotearg.h: Allow multiple inclusion by surrounding with
51383         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
51384         so that we can be included first.
51385         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
51386         * lib/quotearg.c: Include quotearg.h immediately after config.h.
51387         No need to include stddef.h or sys/types.h any more.
51388         Surround local include files with "", not "<>".
51389         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
51390         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
51391         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
51392         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
51393         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
51394         (ISPRINT): Remove; no longer needed now that we assume C89.
51395
51396         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
51397         Preserve errno.
51398
51399         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
51400         quotearg_char): Use SIZE_MAX rather than
51401         (size_t) -1 when we are talking about "infinity".
51402
51403         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
51404
51405 2002-11-22  Paul Eggert  <eggert@twinsun.com>
51406
51407         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
51408         hint that one should use `if (! x) abort ();' rather than `assert
51409         (x);', and anyway it's one less thing to worry about configuring.
51410         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
51411         hash_rehash, hash_insert): Use abort rather than assert.
51412
51413 2002-11-22  Bruno Haible  <bruno@clisp.org>
51414
51415         * lib/safe-read.h: Assume C89. Add comments.
51416         (safe_read): Change return type to size_t.
51417         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
51418         byte counts > SSIZE_MAX correctly.
51419         * lib/safe-write.h: New file.
51420         * lib/safe-write.c: New file.
51421         * lib/full-read.h: New file.
51422         * lib/full-read.c: New file.
51423         * lib/full-write.h: Assume C89. Add comments.
51424         * lib/full-write.c: Include safe-write.h.
51425         (full_write): Rewritten to use safe_write.
51426         Suggested by Jim Meyering and Paul Eggert.
51427
51428 2002-11-21  Jim Meyering  <jim@meyering.net>
51429
51430         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
51431
51432         Merge in changes from the coreutils.
51433
51434         2002-09-25  Paul Eggert  <eggert@twinsun.com>
51435         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
51436         <stdint.h>.
51437         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
51438         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
51439         int.  Work more efficiently if X is the same width as uintmax_t.
51440         Do not compare X to -1, to avoid bogus compiler warning.
51441         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
51442         Don't assume that f_frsize and f_bsize are the same type.
51443
51444         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
51445         warning on FreeBSD.
51446
51447         * lib/makepath.c (make_path): Restore umask *before* creating the final
51448         component.
51449         (make_path): Minor reformatting.
51450
51451         * lib/xmalloc.c: Adjust to work with new autoconf macros,
51452         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
51453         HAVE_MALLOC/HAVE_REALLOC.
51454
51455         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
51456         dummy ones.  At least on GNU/Linux systems, `auto' means something
51457         else.
51458         From Michael Stone.
51459
51460 2002-11-21  Bruno Haible  <bruno@clisp.org>
51461
51462         Remove case insensitive option matching.
51463         * lib/argmatch.h (argcasematch): Remove declaration.
51464         (ARGCASEMATCH): Remove macro.
51465         (__xargmatch_internal): Remove case_sensitive argument.
51466         (XARGMATCH): Update.
51467         (XARGCASEMATCH): Remove macro.
51468         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
51469         case_sensitive argument.
51470         (argcasematch): Remove function.
51471         (__xargmatch_internal): Remove case_sensitive argument.
51472         (main): Use XARGMATCH instead of XARGCASEMATCH.
51473
51474         * lib/xmalloc.c: Change compile-time error message. Add comment about
51475         required autoconf version.
51476
51477 2002-11-20  Paul Eggert  <eggert@twinsun.com>
51478
51479         Merge argmatch cleanups from Bison.  Assume C89.
51480
51481         * lib/argmatch.c: Include config.h here, not in argmatch.h.
51482         Include stdlib.h, for EXIT_FAILURE.
51483         Always include <string.h>, since we assume C89.
51484         (EXIT_FAILURE): Remove pre-C89 bug workaround.
51485         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
51486         Include <stddef.h> instead, since it's all we need for size_t.
51487         (PARAMS): Remove.  All uses removed.
51488         (ARRAY_CARDINALITY): Do not bother to #undef.
51489         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
51490         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
51491         Remove unnecessary parentheses.
51492         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
51493         Insert necessary parentheses.
51494         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
51495         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
51496
51497 2002-11-19  Bruno Haible  <bruno@clisp.org>
51498
51499         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
51500         * lib/mbswidth.h: Include <stddef.h>, for size_t.
51501
51502         * lib/mbswidth.h (PARAMS): Remove macro.
51503         (mbswidth, mbsnwidth): Use ANSI C function declarations.
51504         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
51505
51506         * lib/gcd.h (PARAMS): Remove macro.
51507         (gcd): Use ANSI C function declarations.
51508         * lib/gcd.c (gcd): Likewise.
51509
51510 2002-11-15  Bruno Haible  <bruno@clisp.org>
51511
51512         * lib/strcspn.c: Include <stddef.h>.
51513         (strcspn): Use ANSI C function declaration. Change return type to
51514         size_t. Use NULL.
51515         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
51516         (strpbrk): Use NULL.
51517         * lib/strpbrk.h (PARAMS): Remove macro.
51518         (strpbrk): Use ANSI C function declaration.
51519         * lib/strstr.c: Don't include <sys/types.h>.
51520         * lib/strstr.h (PARAMS): Remove macro.
51521         (strstr): Use ANSI C function declarations.
51522
51523 2002-11-14  Karl Berry  <karl@gnu.org>
51524
51525         * config/mkinstalldirs: `do' on separate line, instead of
51526         `for var; do'.
51527
51528 2002-11-06  Bruno Haible  <bruno@clisp.org>
51529
51530         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
51531         * lib/gcd.c (gcd): Likewise.
51532
51533 2002-11-05  Bruno Haible  <bruno@clisp.org>
51534
51535         * lib/gcd.h: New file, from gettext-0.11.5.
51536         * lib/gcd.c: New file, from gettext-0.11.5.
51537
51538 2002-11-05  Bruno Haible  <bruno@clisp.org>
51539
51540         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
51541         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
51542         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
51543         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
51544
51545         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
51546         <libintl.h>.
51547         * lib/makepath.c: Include gettext.h instead of <locale.h> and
51548         <libintl.h>.
51549
51550         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
51551         * lib/human.c: Include gettext.h instead of <libintl.h>.
51552         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
51553         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
51554         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
51555         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
51556         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
51557         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
51558         (textdomain): Remove definition.
51559         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
51560
51561         * lib/long-options.c: Remove include of <libintl.h> and definition of
51562         _.
51563         * lib/same.c: Remove include of <libintl.h> and definition of _.
51564
51565 2002-11-04  Owen Taylor  <otaylor@redhat.com>
51566
51567         * lib/config.charset: A few additions for Solaris.
51568
51569 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
51570
51571         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
51572         * lib/localcharset.c (locale_charset): Declare as extern "C".
51573
51574 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
51575
51576         * lib/config.charset: msdos in uk_UA uses CP1125.
51577
51578 2002-11-04  Bruno Haible  <bruno@clisp.org>
51579
51580         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
51581         * lib/strcase.h: New file, from GNU gettext-0.11.5.
51582         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
51583         * lib/strstr.h: New file, from GNU gettext-0.11.5.
51584         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
51585
51586 2002-11-04  Bruno Haible  <bruno@clisp.org>
51587
51588         * lib/localcharset.c (locale_charset): Don't return an empty string.
51589
51590 2002-11-04  Bruno Haible  <bruno@clisp.org>
51591
51592         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
51593         aliases.
51594
51595 2002-11-04  Bruno Haible  <bruno@clisp.org>
51596
51597         * lib/config.charset: Update for newest glibc. Add canonical names
51598         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
51599
51600 2002-11-04  Bruno Haible  <bruno@clisp.org>
51601
51602         * lib/config.charset: Add support for NetBSD.
51603
51604 2002-11-04  Bruno Haible  <bruno@clisp.org>
51605
51606         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
51607
51608 2002-11-01  Bruno Haible  <bruno@clisp.org>
51609
51610         * configure.in: Add AC_CONFIG_AUX_DIR call.
51611         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
51612         test/Makefile.
51613         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
51614
51615 2002-09-28  Karl Berry  <karl@gnu.org>
51616
51617         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
51618         installed automake until the next release, since changes have been
51619         made.
51620
51621 2002-09-25  Karl Berry  <karl@gnu.org>
51622
51623         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
51624         * lib/getopt*: copy from libc/posix.
51625         * lib/gettext.h: copy from gettext.
51626         * lib/.cppi-disable: add strdup.c, gettext.h.
51627
51628 2002-09-25  Karl Berry  <karl@gnu.org>
51629
51630         * config/srclist.txt: enable gettext.h check.
51631         * config/config.{guess,sub}: update from prep.
51632         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
51633                 from automake 1.6.3.
51634         See srclist*.
51635
51636 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
51637
51638         * regex.c (PATFETCH): Remove the translating fetch.
51639         (PATFETCH_RAW): Rename to PATFETCH.
51640         (set_image_of_range): New fun.
51641         (SET_RANGE_TABLE_WORK_AREA): Use it.
51642         (regex_compile): Don't translate the pattern chars so eagerly.
51643         Only do it when inserting an `exactn' bytecode or when handling
51644         a char-range.
51645         (mutually_exclusive_p): Avoid empty statement.
51646
51647 2002-07-06  Jim Meyering  <meyering@lucent.com>
51648
51649         * m4/README: Don't mention Makefile.am.in.
51650         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
51651
51652 2002-07-01  Jim Meyering  <meyering@lucent.com>
51653
51654         * lib/c-stack.c: Include sys/time.h.
51655         From Volker Borchert.
51656
51657 2002-06-26  Paul Eggert  <eggert@twinsun.com>
51658
51659         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
51660
51661 2002-06-26  Paul Eggert  <eggert@twinsun.com>
51662
51663         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
51664         New macro.  Use it uniformly instead of
51665         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
51666         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
51667         reported by Vin Shelton.
51668
51669 2002-06-22  Paul Eggert  <eggert@twinsun.com>
51670
51671         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
51672         Do not assume SA_SIGINFO behavior.
51673         Bug reported by Jim Meyering on NetBSD 1.5.2.
51674
51675 2002-06-22  Jim Meyering  <meyering@lucent.com>
51676
51677         * m4/c-stack.m4: New file, from diffutils-2.8.2.
51678         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
51679
51680         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
51681         now that configure.ac uses AC_GNU_SOURCE.
51682         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
51683         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
51684
51685         Update to latest tools.  Suggestions from Paul Eggert.
51686         * m4/stdbool.m4: New file, from diffutils-2.8.2.
51687         * m4/gnu-source.m4: Update from diffutils-2.8.2.
51688         * m4/fnmatch.m4: Likewise.
51689         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
51690         to AC_HEADER_STDBOOL
51691
51692 2002-06-22  Jim Meyering  <meyering@lucent.com>
51693
51694         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
51695         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
51696
51697 2002-06-22  Jim Meyering  <meyering@lucent.com>
51698
51699         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
51700
51701         * lib/exitfail.c, exitfail.h: Likewise.
51702         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
51703
51704         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
51705         of fnmatch.h.
51706         (EXTRA_DIST): Add fnmatch_loop.c.
51707         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
51708
51709         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
51710         * lib/fnmatch.c: Update from diffutils-2.8.2.
51711         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
51712         * lib/fnmatch.h: Remove file.
51713
51714 2002-06-21  Jim Meyering  <meyering@lucent.com>
51715
51716         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
51717         * m4/mbrtowc.m4: Likewise.
51718
51719         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
51720         * m4/mbswidth.m4: Reflect name change:
51721         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
51722         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
51723
51724         * m4/lib-link.m4: Update from gettext-0.11.2.
51725         * m4/gettext.m4: Likewise.
51726
51727         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
51728         From Alfred M. Szmidt.
51729
51730 2002-06-18  Paul Eggert  <eggert@twinsun.com>
51731
51732         * lib/file-type.h: Report an error if neither S_ISREG nor
51733         S_IFREG is defined, instead of using a test specific to glibc
51734         2.2.  This should be safe, since POSIX requires S_ISREG and
51735         Unix Version 7 had S_IFREG.  We don't need to check for
51736         <sys/types.h> since we don't use any symbols that it defines.
51737
51738 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
51739
51740         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
51741         $@-t, so that each temporary file name is unique and valid in the first
51742         8 characters, for operation under DOS.
51743
51744 2002-06-15  Paul Eggert  <eggert@twinsun.com>
51745
51746         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
51747
51748 2002-06-15  Jim Meyering  <meyering@lucent.com>
51749
51750         Work even with DJGPP 2.03, which lacks support for symlinks.
51751         From Richard Dawe.
51752         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
51753         is defined.
51754         * lib/lchown.c (S_ISLNK): Likewise.
51755
51756 2002-06-15  Jim Meyering  <meyering@lucent.com>
51757
51758         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
51759         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
51760         have been included before this file.
51761
51762 2002-06-14  Jim Meyering  <meyering@lucent.com>
51763
51764         * lib/file-type.h: Use the version from diffutils-2.8.2.
51765         * lib/file-type.c: Likewise.
51766
51767 2002-06-07  Jim Meyering  <meyering@lucent.com>
51768
51769         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
51770         They're needed at least for NetBSD 1.5.2.
51771         ($statxfs_includes): Include those same headers.
51772         ($statxfs_includes): Include sys/vfs.h if available.
51773         ($statxfs_includes): Likewise for sys/statvfs.h.
51774         Check for the following members in both structs statfs and statvfs:
51775         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
51776
51777 2002-06-01  Jim Meyering  <meyering@lucent.com>
51778
51779         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
51780         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
51781
51782 2002-05-28  Jim Meyering  <meyering@lucent.com>
51783
51784         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
51785         Reported by Volker Borchert.
51786
51787 2002-05-27  Jim Meyering  <meyering@lucent.com>
51788
51789         Fix a problem seen only on nonconforming systems whereby ls.c's
51790         use of localtime, and then of gettimeofday would cause trouble:
51791         the localtime call used to initialize rpl_gettimeofday's save
51792         mechanism would clobber ls's current local time information so
51793         that in any long listing the first file would always be listed
51794         with date 1970-01-01.  Analysis by Volker Borchert.
51795
51796         * lib/gettimeofday.c (localtime): Undefine.
51797         (rpl_localtime): New function.
51798
51799 2002-05-27  Jim Meyering  <meyering@lucent.com>
51800
51801         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
51802         localtime.
51803
51804         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
51805         use the replacement function; it wouldn't resolve at link time.
51806         Reported by Volker Borchert.
51807
51808 2002-05-22  Jim Meyering  <meyering@lucent.com>
51809
51810         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
51811         file-type.h.
51812         * lib/file-type.h: New file.
51813         * lib/file-type.c (file_type): New file/function.  Extracted from
51814         diffutils.
51815
51816 2002-04-30  Jim Meyering  <meyering@lucent.com>
51817
51818         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
51819
51820 2002-04-29  Paul Eggert  <eggert@twinsun.com>
51821
51822         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
51823
51824 2002-04-29  Paul Eggert  <eggert@twinsun.com>
51825
51826         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
51827         Do not check for alloca.h (no longer used) or stdbool.h (was never
51828         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
51829
51830 2002-04-29  Paul Eggert  <eggert@twinsun.com>
51831
51832         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
51833
51834 2002-04-29  Jim Meyering  <meyering@lucent.com>
51835
51836         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
51837         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
51838         Use AC_FUNC_STRNLEN here instead.
51839
51840         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
51841         With autoconf-2.53a, it's part of AC_PROG_CC.
51842
51843 2002-04-28  Paul Eggert  <eggert@twinsun.com>
51844
51845         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
51846         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
51847
51848 2002-04-28  Paul Eggert  <eggert@twinsun.com>
51849
51850         * lib/sig2str.h, lib/sig2str.c: New files.
51851         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
51852
51853 2002-04-28  Paul Eggert  <eggert@twinsun.com>
51854
51855         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
51856         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
51857         of 127, since 64 is the largest conceivable number for ancient
51858         nonstandard hosts.
51859         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
51860
51861 2002-04-28  Jim Meyering  <meyering@lucent.com>
51862
51863         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
51864
51865 2002-04-24  Jim Meyering  <meyering@lucent.com>
51866
51867         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
51868         (jm_PREREQ): Use it.
51869
51870         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
51871         mach/mach.h fcntl.h.
51872         Check for this function: setlocale.
51873
51874 2002-04-24  Jim Meyering  <meyering@lucent.com>
51875
51876         * lib/gettext.h: New file, from Gettext.
51877         * lib/Makefile.am (INCLUDES): Remove -I../intl.
51878         (libfetish_a_SOURCES): Add gettext.h.
51879
51880 2002-04-16  Jim Meyering  <meyering@lucent.com>
51881
51882         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
51883         ut_pid, ut_id, ut_exit.
51884
51885 2002-04-16  Jim Meyering  <meyering@lucent.com>
51886
51887         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
51888         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
51889         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
51890
51891 2002-04-12  Jim Meyering  <meyering@lucent.com>
51892
51893         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
51894         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
51895         existence of the getmntinfo function.  Needed for Darwin 5.3.
51896
51897         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
51898         This is necessary at least on Darwin 5.3.
51899
51900         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
51901         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
51902         strnlen.o in the library, and that makes some versions of ranlib
51903         object.
51904
51905 2002-04-12  Jim Meyering  <meyering@lucent.com>
51906
51907         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
51908
51909 2002-04-09  Jim Meyering  <meyering@lucent.com>
51910
51911         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
51912         to be more precise.  Rather than saying we're checking whether the
51913         function `works', say what we're testing.
51914         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
51915         Reported by Bruno Haible.
51916
51917 2002-03-10  Jim Meyering  <meyering@lucent.com>
51918
51919         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
51920         Suggestion from Santiago Vila.
51921
51922 2002-03-08  Jim Meyering  <meyering@lucent.com>
51923
51924         * lib/rename.c: Mention that this wrapper is needed also on
51925         mips-dec-ultrix4.4 systems.
51926
51927 2002-03-02  Jim Meyering  <meyering@lucent.com>
51928
51929         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
51930         not HAVE_CLOCK_SETTIME.
51931
51932 2002-02-27  Paul Eggert  <eggert@twinsun.com>
51933
51934         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
51935         Check for clock_settime.
51936
51937 2002-02-27  Paul Eggert  <eggert@twinsun.com>
51938
51939         * lib/nanosleep.h: Rename to....
51940         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
51941
51942         * lib/gettime.c: New file.
51943         * lib/settime.c: New file.
51944         * lib/stime.c: Remove.
51945
51946         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
51947         timespec.h.  Remove nanosleep.h.
51948
51949 2002-02-25  Paul Eggert  <eggert@twinsun.com>
51950
51951         * m4/acl.m4: New file.
51952         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
51953         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
51954
51955 2002-02-25  Paul Eggert  <eggert@twinsun.com>
51956
51957         * lib/acl.c, lib/acl.h: New files.
51958         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
51959
51960 2002-02-24  Jim Meyering  <meyering@lucent.com>
51961
51962         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
51963         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
51964         cause trouble.  Reported by Nelson Beebe.
51965
51966 2002-02-23  Paul Eggert  <eggert@twinsun.com>
51967
51968         * lib/path-concat.c (xpath_concat): Reorder code to pacify
51969         compilers that don't know that xalloc_die never returns.
51970
51971 2002-02-20  Jim Meyering  <meyering@lucent.com>
51972
51973         * lib/getdate.c: Regenerate using bison-1.33.
51974
51975 2002-02-17  Jim Meyering  <meyering@lucent.com>
51976
51977         * config/config.guess (main): Don't use `head -1'; it's no longer
51978         portable. Use `sed 1q' instead.
51979
51980 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
51981
51982         * m4/codeset.m4: Upgrade to gettext-0.11.
51983         * m4/gettext.m4: Upgrade to gettext-0.11.
51984         * m4/glibc21.m4: Upgrade to gettext-0.11.
51985         * m4/iconv.m4: Upgrade to gettext-0.11.
51986         * m4/isc-posix.m4: Upgrade to gettext-0.11.
51987         * m4/lcmessage.m4: Upgrade to gettext-0.11.
51988         * m4/lib-ld.m4: New file, from gettext-0.11.
51989         * m4/lib-link.m4: New file, from gettext-0.11.
51990         * m4/lib-prefix.m4: New file, from gettext-0.11.
51991         * m4/progtest.m4: Upgrade to gettext-0.11.
51992
51993 2002-02-15  Paul Eggert  <eggert@twinsun.com>
51994
51995         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
51996         (jm_PREREQ): Use it.
51997
51998 2002-02-15  Paul Eggert  <eggert@twinsun.com>
51999
52000         * lib/posixver.c, lib/posixver.h: New files.
52001         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
52002
52003 2002-02-02  Paul Eggert  <eggert@twinsun.com>
52004             Bruno Haible  <bruno@clisp.org>
52005
52006         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
52007         (fwrite_success_callback): New declaration.
52008         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
52009         print_unicode_char. Call failure callback instead of error.
52010         (fwrite_success_callback): New function.
52011         (exit_failure_callback): New function.
52012         (fallback_failure_callback): New function.
52013         (print_unicode_char): Call unicode_to_mb.
52014
52015 2002-01-26  Jim Meyering  <meyering@lucent.com>
52016
52017         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
52018         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
52019
52020 2002-01-26  Jim Meyering  <meyering@lucent.com>
52021
52022         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
52023
52024 2002-01-22  Paul Eggert  <eggert@twinsun.com>
52025
52026         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
52027
52028 2002-01-22  Jim Meyering  <meyering@lucent.com>
52029
52030         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
52031         Otherwise, some versions of automake would omit the rule that makes
52032         Makefile from Makefile.in.
52033
52034 2002-01-21  Paul Eggert  <eggert@twinsun.com>
52035
52036         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
52037         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
52038         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
52039         (memcoll): Set errno to zero if there is no error.
52040
52041         * lib/quotearg.c (quotearg_buffer_restyled):
52042         Fix bug with quoting buffers containing NUL when backslashing escapes.
52043         This bug was exposed by the other changes in this patch.
52044         (quotearg_n_options): New arg ARGSIZE.
52045         All callers changed.
52046         (quoting_options_from_style): New function.
52047         (quotearg_n_style): Use it.
52048         (quotearg_n_style_mem): New function.
52049
52050         * lib/quotearg.h (quotearg_n_style_mem): New function.
52051
52052 2002-01-19  Jim Meyering  <meyering@lucent.com>
52053
52054         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
52055         Remove useless quotes: DF_PROG="df".
52056         * m4/strnlen.m4: New file.
52057
52058 2002-01-16  Paul Eggert  <eggert@twinsun.com>
52059
52060         * lib/backupfile.c (ISDIGIT): Comment fix.
52061         * lib/getdate.y (ISDIGIT): Likewise.
52062         * lib/posixtm.c (ISDIGIT, year): Likewise.
52063         * lib/strverscmp.c (ISDIGIT): Likewise.
52064         * lib/userspec.c (ISDIGIT): Likewise.
52065
52066 2002-01-16  Jim Meyering  <meyering@lucent.com>
52067
52068         * lib/getdate.y: Add three semicolons, each just before a closing
52069         brace. Bison (as of version 1.31) no longer papers over that mistake.
52070
52071 2002-01-05  Jim Meyering  <meyering@lucent.com>
52072
52073         * lib/version-etc.c (version_etc_copyright): Update copyright year.
52074
52075 2001-12-19  Paul Eggert  <eggert@twinsun.com>
52076
52077         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
52078         not silently exit merely because the output buffer happens to
52079         have nothing pending.
52080
52081 2001-12-18  Paul Eggert  <eggert@twinsun.com>
52082
52083         See the big note in ../ChangeLog.
52084         * lib/human.c (suffixes): Prefer K to k for 1024.
52085         (generate_suffix_backwards): New function.
52086         (human_readable_inexact): Use it.
52087         * lib/xstrtol.c (__xstrtol): If there is no number but there
52088         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
52089         Accept 'K' as well as 'k'.
52090
52091 2001-12-15  Jim Meyering  <meyering@lucent.com>
52092
52093         * lib/regex.h (__restrict_arr): Update from libc.
52094
52095         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
52096         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
52097         (STREQ): Define.
52098
52099 2001-12-14  Jim Meyering  <meyering@lucent.com>
52100
52101         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
52102         Suggestion from Bruno Haible.
52103
52104 2001-12-10  Jim Meyering  <meyering@lucent.com>
52105
52106         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
52107         xrealloc, Instead, include "xalloc.h".
52108         (initbuffer): Don't cast xmalloc return value to char*.
52109         (readline): Reword comment.
52110         Don't cast xrealloc return value to char*
52111         Return NULL, not 0.
52112
52113 2001-12-09  Jim Meyering  <meyering@lucent.com>
52114
52115         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
52116         about `signed and unsigned type in conditional expression'.
52117         * lib/posixtm.c (posix_time_parse): Likewise.
52118
52119         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
52120
52121         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
52122         to avoid a pedantic warning.
52123
52124         * lib/getstr.c: Don't include assert.h.
52125         (getstr): Remove warning-evoking assertions.
52126         Return -1 if offset parameter is out of bounds.
52127         Change the type of a local from int to size_t.
52128
52129         * lib/strftime.c (my_strftime_localtime_r): Include this function
52130         definition in the `#if ! HAVE_TM_GMTOFF' block.
52131
52132         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
52133         Include xalloc.h instead.
52134
52135 2001-12-02  Jim Meyering  <meyering@lucent.com>
52136
52137         * lib/tempname.c: Don't declare getenv, thus reverting the change of
52138         2001-11-18.  It's no longer necessary, now that stdlib.h is always
52139         included.
52140
52141         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
52142         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
52143
52144 2001-11-30  Akim Demaille  <akim@epita.fr>
52145
52146         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
52147         before being defined.
52148
52149 2001-11-27  Paul Eggert  <eggert@twinsun.com>
52150
52151         * lib/quotearg.h (quotearg_n, quotearg_n_style):
52152         First arg is int, not unsigned.
52153         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
52154         (SIZE_MAX, UINT_MAX): New macros.
52155         (quotearg_n_options): Abort if N is negative.
52156         Avoid overflow check on hosts where size_t is 64 bits and int
52157         is 32 bits, as overflow is impossible there.
52158         Fix off-by-one typo that caused unnecessary reallocation.
52159
52160 2001-11-27  Jim Meyering  <meyering@lucent.com>
52161
52162         * lib/tempname.c: Merge with version from libc.
52163         * lib/regex.c: Likewise.
52164
52165         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
52166         systems for which STDC_HEADERS is 0, it was not included, resulting in
52167         a warning about an integer-to-pointer conversion problem with getenv.
52168         Reported by Volker Borchert.
52169
52170 2001-11-26  Jim Meyering  <meyering@lucent.com>
52171
52172         * lib/gtod.h: Remove file.
52173         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
52174         * lib/gettimeofday.c: Don't include gtod.h.
52175         (GTOD_init): Remove function.
52176         (rpl_gettimeofday): Do its job here instead, rather than aborting.
52177         Suggestion from Volker Borchert.
52178
52179 2001-11-23  Jim Meyering  <meyering@lucent.com>
52180
52181         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
52182         it.
52183         * lib/hash.c (struct hash_table): Define it here instead.
52184
52185 2001-11-22  Jim Meyering  <meyering@lucent.com>
52186
52187         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
52188
52189 2001-11-20  Jim Meyering  <meyering@lucent.com>
52190
52191         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
52192         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
52193
52194 2001-11-19  Jim Meyering  <meyering@lucent.com>
52195
52196         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
52197         directory.  Use "conftestXXXXXX" as the template.
52198         Suggestion from Paul Eggert.
52199
52200         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
52201         immediately, so the test doesn't mistakenly hit the max-open-files
52202         limit.
52203
52204 2001-11-18  Paul Eggert  <eggert@twinsun.com>
52205
52206         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
52207         (TEMPORARIES): New macro.
52208         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
52209         removes an artificial limitation (e.g. HP-UX 10.20, where
52210         TMP_MAX is 17576).
52211
52212 2001-11-18  Jim Meyering  <meyering@lucent.com>
52213
52214         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
52215
52216 2001-11-18  Jim Meyering  <meyering@lucent.com>
52217
52218         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
52219         on SunOS 4.
52220
52221         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
52222         files will be created before anything else.
52223
52224 2001-11-17  Paul Eggert  <eggert@twinsun.com>
52225
52226         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
52227         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
52228
52229 2001-11-17  Jim Meyering  <meyering@lucent.com>
52230
52231         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
52232         Prompted by a report from Bob Proulx.
52233
52234         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
52235         Instead, require UTILS_FUNC_MKSTEMP.
52236
52237 2001-11-17  Jim Meyering  <meyering@lucent.com>
52238
52239         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
52240         Now, that's done as part of AC_FUNC_STRTOD.
52241
52242 2001-11-17  Jim Meyering  <meyering@lucent.com>
52243
52244         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
52245         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
52246         rather than group writable.  Patch by Juan F. Codagnone.
52247
52248         * lib/readtokens.c: Remove explicit declarations of xmalloc and
52249         xrealloc, Instead, include "xalloc.h".
52250
52251         * lib/mountlist.c: Include unlocked-io.h after all system headers.
52252         Remove explicit declarations of xmalloc, xrealloc,
52253         and xstrdup.  Instead, include "xalloc.h".
52254
52255         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
52256         unlocked-io.h.
52257         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
52258         Likewise.
52259         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
52260
52261         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
52262         Reported by Padraig Brady.
52263
52264         * lib/mkstemp.c: #undef mkstemp.
52265         Include config.h.
52266         (rpl_mkstemp): Rename from mkstemp.
52267         Protoize.
52268
52269 2001-11-16  Jim Meyering  <meyering@lucent.com>
52270
52271         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
52272         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
52273         determine the amount of total physical memory, use pstat_getstatic.
52274         HPUX-11 doesn't define _SC_PHYS_PAGES.
52275         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
52276         If sysconf couldn't be used to determine the amount of available
52277         physical memory, use both pstat_getstatic and pstat_getdynamic.
52278         Based on a patch from Bob Proulx.
52279
52280 2001-11-10  Jim Meyering  <meyering@lucent.com>
52281
52282         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
52283         (jm_PREREQ): Use it.
52284
52285 2001-11-09  Jim Meyering  <meyering@lucent.com>
52286
52287         * m4/jm-macros.m4: Require autoconf-2.52f.
52288         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
52289         Use these AC_-prefixed names, not the AM_-prefixed ones.
52290
52291         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
52292
52293 2001-11-05  Jim Meyering  <meyering@lucent.com>
52294
52295         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
52296
52297 2001-11-04  Jim Meyering  <meyering@lucent.com>
52298
52299         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
52300         $DEFS.
52301
52302 2001-11-03  Jim Meyering  <meyering@lucent.com>
52303
52304         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
52305         of AC_DEFUN.
52306
52307         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
52308         know the name of the variable in the macro definition.
52309
52310 2001-11-03  Jim Meyering  <meyering@lucent.com>
52311
52312         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
52313         in argmatch_to_argument call.
52314
52315         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
52316         argument.
52317
52318         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
52319         e.g., a fault due to an attempt to free a NULL pointer.
52320
52321 2001-11-01  Jim Meyering  <meyering@lucent.com>
52322
52323         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
52324         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
52325
52326 2001-11-01  Jim Meyering  <meyering@lucent.com>
52327
52328         * lib/dirfd.c, lib/dirfd.h: New files.
52329         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
52330
52331         * lib/hash.c (hash_print) [TESTING]: Clean up.
52332
52333 2001-10-22  Paul Eggert  <eggert@twinsun.com>
52334
52335         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
52336         to avoid a warning if -Wall.
52337
52338 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
52339
52340         * README: New file
52341         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
52342         (per RMS's instructions, this is now the canonical source)
52343         * lgpl/, gpl/: New directories.
52344
52345 2001-10-21  Paul Eggert  <eggert@twinsun.com>
52346
52347         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
52348
52349 2001-10-21  Jim Meyering  <meyering@lucent.com>
52350
52351         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
52352         this code would end up calling gettext even in packages built
52353         with --disable-nls.
52354         * lib/getopt.c (_): Likewise.
52355         * lib/regex.c (_): Likewise.
52356
52357 2001-10-20  Paul Eggert  <eggert@twinsun.com>
52358
52359         * m4/error.m4 (jm_PREREQ_ERROR):
52360         Do not invoke AC_CHECK_FUNCS with strerror_r, as
52361         AC_FUNC_STRERROR_R does that.
52362         Check for strerror declaration.
52363
52364         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
52365         are supposed to have them these days.
52366         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
52367         Merge changes from latest Autoconf CVS.
52368         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
52369         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
52370         POSIX decided to standardize on the int flavor of strerror_r.
52371
52372 2001-10-20  Paul Eggert  <eggert@twinsun.com>
52373
52374         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
52375         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
52376         Use strerror_r that is only a macro, even if it is not a function.
52377         (strerror): Check for HAVE_DECL_STRERROR before declaring.
52378         (private_strerror): Use prototypes, not old-style function definition.
52379         (print_errno_message): New function.
52380         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
52381         char*-flavored one.
52382         (error_tail, error, error_at_line): Use it.
52383
52384 2001-10-11  Jim Meyering  <meyering@lucent.com>
52385
52386         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
52387         and quote_n (1, ... to avoid clobbering a buffer.
52388
52389 2001-10-05  Jim Meyering  <meyering@lucent.com>
52390
52391         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
52392         hash-pjw.h.
52393         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
52394         * lib/hash-pjw.h: New file.
52395
52396 2001-09-30  Jim Meyering  <meyering@lucent.com>
52397
52398         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
52399         `struct fsstat' has the `f_fstypename' member.
52400         Use that to define FS_TYPE, which is now used to make
52401         the getfsstat link test tighter.
52402
52403 2001-09-30  Jim Meyering  <meyering@lucent.com>
52404
52405         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
52406         Include <sys/ucred.h>, for Apple Darwin.
52407         Include sys/mount.h and sys/fs_types.h only if available.
52408         (FS_TYPE): Define.
52409         (read_filesystem_list): Use FS_TYPE.
52410
52411 2001-09-29  Paul Eggert  <eggert@twinsun.com>
52412
52413         * lib/exclude.c (excluded_filename): 0 -> false, since it's
52414         a boolean context.
52415
52416 2001-09-29  Jim Meyering  <meyering@lucent.com>
52417
52418         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
52419         [one-argument getmntent function]): Include stdio.h before mntent.h.
52420         SunOS 4.1.x needs it for the declaration of `FILE'.
52421         Patch by Volker Borchert.
52422
52423         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
52424         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
52425         sys/fs_types.h, and make the link-test for getfsstat guard #include
52426         directives with appropriate #if HAVE_*_H tests so that we can
52427         detect getfsstat on Apple Darwin1.3.7 systems.
52428         Reported by Nelson Beebe.
52429         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
52430
52431 2001-09-28  Paul Eggert  <eggert@twinsun.com>
52432
52433         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
52434         #defines strtoimax.  Also treat the other strto* functions
52435         like strtoimax.
52436
52437         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
52438         Check for strtoul and strtoumax,
52439         as those declarations are made even in the signed case.
52440         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
52441         Likewise, for strtol and strtoimax.
52442
52443 2001-09-28  Paul Eggert  <eggert@twinsun.com>
52444
52445         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
52446         #defines strtoimax.  Also treat the other strto* functions
52447         like strtoimax.
52448
52449         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
52450         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
52451         (strtoimax, strtoumax): Do not declare if already defined as a macro.
52452
52453 2001-09-26  Jim Meyering  <meyering@lucent.com>
52454
52455         Most macros in unlocked-io.h had the wrong number of arguments.
52456         * lib/gen-uio: New script.
52457         (USE_UNLOCKED_IO): Define to 1 if not already defined.
52458         * lib/unlocked-io.hin: Remove file.
52459         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
52460         rather than trying to embed it here.
52461         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
52462         Reported by Padraig Brady.
52463
52464 2001-09-25  Volker Borchert  <bt@teknon.de>
52465
52466         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
52467         `result'.
52468
52469 2001-09-24  Jim Meyering  <meyering@lucent.com>
52470
52471         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
52472
52473 2001-09-23  Jim Meyering  <meyering@lucent.com>
52474
52475         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
52476         instead of the mere test for existence of mntent.h.  The latter
52477         would get a false-positive on AIX 3.4 systems.
52478         In the outer getmntent if-block, don't die if neither of the getmntent
52479         tests succeeds.  Instead, just fall through and continue with the
52480         remaining tests.
52481
52482 2001-09-23  Jim Meyering  <meyering@lucent.com>
52483
52484         * lib/mountlist.c: Remove useless parentheses in #if directives.
52485         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
52486         the deprecated MOUNTED symbol is no longer defined in mntent.h.
52487
52488 2001-09-22  Jim Meyering  <meyering@lucent.com>
52489
52490         * m4/gettext.m4: New file.  From gettext.
52491         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
52492         * m4/progtest.m4: Likewise
52493         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
52494         * m4/glibc21.m4: Likewise.
52495
52496         * m4/libintl.m4: Remove.  No longer used.
52497
52498 2001-09-22  Jim Meyering  <meyering@lucent.com>
52499
52500         * lib/localcharset.c: Update from latest gettext.
52501         * lib/config.charset: Likewise.
52502
52503 2001-09-20  Jim Meyering  <meyering@lucent.com>
52504
52505         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
52506         strtoimax.
52507         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
52508         strtoumax.
52509
52510 2001-09-20  Jim Meyering  <meyering@lucent.com>
52511
52512         * lib/xstrtol.c (strtoimax): Guard declaration with
52513         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
52514         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
52515         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
52516         (strtoumax): Likewise, for completeness (it wasn't necessary).
52517
52518 2001-09-17  Paul Eggert  <eggert@twinsun.com>
52519
52520         * lib/strtoimax.c (HAVE_LONG_LONG):
52521         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
52522         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
52523         to work around bug in IBM C compiler.
52524
52525 2001-09-17  Jim Meyering  <meyering@lucent.com>
52526
52527         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
52528         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
52529         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
52530         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
52531         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
52532         whenever the right hand side need not be expanded by the shell.
52533
52534 2001-09-16  Paul Eggert  <eggert@twinsun.com>
52535
52536         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
52537         library.  It's not correct, as some older glibcs are buggy.
52538         fnmatch wasn't fixed until glibc 2.2.
52539
52540         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
52541         special shell magic here.
52542
52543 2001-09-16  Jim Meyering  <meyering@lucent.com>
52544
52545         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
52546         * m4/jm-macros.m4: Require it.
52547
52548 2001-09-16  Jim Meyering  <meyering@lucent.com>
52549
52550         * lib/mkdir.c: New file.
52551
52552 2001-09-15  Jim Meyering  <meyering@lucent.com>
52553
52554         * m4/jm-macros.m4: Check for help2man.
52555
52556 2001-09-11  Jim Meyering  <meyering@lucent.com>
52557
52558         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
52559         The body, by Paul Eggert, was moved here from configure.in.
52560         * m4/jm-macros.m4: Require UTILS_HOST_OS.
52561
52562 2001-09-04  Paul Eggert  <eggert@twinsun.com>
52563
52564         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
52565         (jm_PREREQ): Use it.
52566
52567 2001-09-04  Paul Eggert  <eggert@twinsun.com>
52568
52569         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
52570         Use ssize_t, not int, to store result of readlink.
52571         Check for ssize_t overflow as well as size_t overflow,
52572         as POSIX says the result of readlink is implementation-defined
52573         when ssize_t overflows.
52574         Remove unnecessary cast to char*.
52575         Use free+malloc instead of realloc, as the storage doesn't need
52576         to be preserved and it's clearer and can be more efficient that way.
52577         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
52578         * lib/xreadlink.h (xreadlink): Update prototype.
52579
52580 2001-09-04  Paul Eggert  <eggert@twinsun.com>
52581
52582         * lib/xgetcwd.c: Revert some of the previous change; intead,
52583         fix the HAVE_GETCWD_NULL code to behave more like the
52584         !HAVE_GETCWD_NULL code used to.
52585
52586         Include "xalloc.h".
52587         (xgetcwd): Do not return NULL when memory is exhausted; instead,
52588         invoke xalloc_die.
52589
52590 2001-09-03  Paul Eggert  <eggert@twinsun.com>
52591
52592         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
52593         sys/param.h, as pathmax.h includes them.
52594
52595 2001-09-03  Paul Eggert  <eggert@twinsun.com>
52596
52597         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
52598         (jm_PREREQ_XGETCWD): New macro.
52599
52600         * m4/getcwd.m4: New file.
52601
52602 2001-09-03  Paul Eggert  <eggert@twinsun.com>
52603
52604         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
52605         like the HAVE_GETCWD_NULL code.
52606         Include pathmax.h if not HAVE_GETCWD.
52607         Do not include xalloc.h.
52608         (INITIAL_BUFFER_SIZE): New symbol.
52609         Do not use xmalloc / xrealloc, since the caller is responsible for
52610         handling errors.  Preserve errno around `free' during failure.
52611         Do not overrun buffer when using getwd.
52612
52613 2001-09-03  Paul Eggert  <eggert@twinsun.com>
52614
52615         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
52616         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
52617         getcwd (NULL, 0).
52618
52619 2001-09-03  Paul Eggert  <eggert@twinsun.com>
52620
52621         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
52622         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
52623         spotted by Jim Meyering.
52624
52625 2001-09-03  Jim Meyering  <meyering@lucent.com>
52626
52627         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
52628         failure.
52629
52630 2001-09-02  Jim Meyering  <meyering@lucent.com>
52631
52632         * lib/error.c: Update from GNU libc.
52633
52634 2001-09-01  Jim Meyering  <meyering@lucent.com>
52635
52636         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
52637         Used by df.
52638
52639 2001-09-01  Jim Meyering  <meyering@lucent.com>
52640
52641         * lib/xreadlink.c: New file.
52642         * lib/xreadlink.h: New file.
52643         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
52644         xreadlink.h.
52645
52646         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
52647         doesn't conflict with sparc Solaris 7's definition in
52648         /usr/include/sys/int_types.h.
52649
52650         * lib/exclude.c: Use `""', not `<>' to #include non-system header
52651         files.
52652         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
52653         and strncasecmp as r-values.  Unixware didn't have declarations.
52654
52655 2001-08-31  Paul Eggert  <eggert@twinsun.com>
52656
52657         * lib/xstrtol.h: Add copyright notice.
52658         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
52659         LONGINT_INVALID_SUFFIX_CHAR.
52660
52661 2001-08-31  Paul Eggert  <eggert@twinsun.com>
52662
52663         * lib/xstrtol.c (strtoimax): New decl.
52664
52665 2001-08-31  Paul Eggert  <eggert@twinsun.com>
52666
52667         * lib/xgetcwd.c: Don't include pathmax.h.
52668         Include stdlib.h and unistd.h if available.
52669         Include xalloc.h.
52670         (xmalloc, xstrdup, free): Remove decls.
52671         (xgetcwd): Don't assume sizes fit in unsigned.
52672         Check for overflow when computing sizes.
52673         Simplify reallocation code.
52674
52675 2001-08-31  Paul Eggert  <eggert@twinsun.com>
52676
52677         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
52678         a directory's st_size can have an arbitrary value, so the old
52679         usage could waste an arbitrary amount of memory.  All uses
52680         changed.
52681         * lib/savedir.h: Update prototype.
52682
52683 2001-08-31  Paul Eggert  <eggert@twinsun.com>
52684
52685         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
52686
52687         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
52688         old strtoimax.c.
52689
52690         Also, make the following further changes to make this file's
52691         configuration more similar to that of strtol.c:
52692         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
52693         (strtoumax, uintmax_t, strtoull, strtol): Remove.
52694         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
52695         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
52696         changed to signed values.
52697
52698         And make the following changes as well:
52699         Fix copyright notice, as 1999 was missing.
52700         (verify): New macro.
52701         (strtoimax): Check sizes at compile-time, not run-time.
52702         Prefer strtol to strtoll if both work.
52703         (main): Remove; it was not that useful and was a pain to maintain.
52704
52705         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
52706
52707 2001-08-31  Jim Meyering  <meyering@lucent.com>
52708
52709         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
52710         Use an initial, malloc'd, buffer of length 128 rather than
52711         a statically allocated one of length 1024.
52712
52713 2001-08-30  Paul Eggert  <eggert@twinsun.com>
52714
52715         Simplify code, partly by assuming autoconf 2.52 semantics.
52716
52717         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
52718
52719         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
52720         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
52721         All uses removed.
52722         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
52723         Move AC_REQUIRE to next-to-top level, to avoid confusion.
52724         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
52725         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
52726         jm_AC_HEADER_INTTYPES_H.
52727         * m4/jm-macros.m4 (jm_MACROS): Likewise.
52728
52729         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
52730
52731         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
52732         Quote first arg of AC_DEFUN.
52733         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
52734         since they are needed to parse the include file even if we need
52735         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
52736         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
52737         but with opposite signedness.
52738
52739 2001-08-30  Paul Eggert  <eggert@twinsun.com>
52740
52741         Merge 'exclude' changes from tar 1.13.22.
52742         This fixes one or two unlikely storage allocation overflow bugs,
52743         but doesn't change user-visible behavior otherwise.
52744
52745 2001-08-30  Paul Eggert  <eggert@twinsun.com>
52746
52747         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
52748         (jm_PREREQ_EXCLUDE): New macro.
52749
52750 2001-08-30  Paul Eggert  <eggert@twinsun.com>
52751
52752         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
52753         tm to be declared.
52754
52755 2001-08-30  Paul Eggert  <eggert@twinsun.com>
52756
52757         * lib/hash.c: Remove '2001' from copyright notice.
52758
52759 2001-08-30  Paul Eggert  <eggert@twinsun.com>
52760
52761         * lib/full-write.h: New file.
52762         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
52763         * lib/full-write.c: Correct credits, as cccp.c no longer
52764         exists and anyway it was so heavily changed from the old cccp
52765         code as to be unrecognizable.  Include full-write.h.
52766         (full_write) Return size_t, with short writes meaning failure.
52767         All callers changed.  This fixes a bug with large buffers
52768         on 64-bit hosts.
52769         * lib/utime.c: Include full-write.h.
52770
52771 2001-08-30  Paul Eggert  <eggert@twinsun.com>
52772
52773         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
52774         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
52775         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
52776         Include if available.
52777         (<xalloc.h>): Include
52778         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
52779         (verify): New macro.  Use it to verify that EXCLUDE macros do not
52780         collide with FNM macros.
52781         (struct patopts): New struct.
52782         (struct exclude): Use it, as exclude patterns now come with options.
52783         (new_exclude): Support above changes.
52784         (new_exclude, add_exclude_file):
52785         Initial size must now be a power of two to simplify overflow checking.
52786         (free_exclude, fnmatch_no_wildcards): New function.
52787         (excluded_filename): No longer requires options arg, as the options
52788         are determined by add_exclude.  Now returns bool, not int.
52789         (excluded_filename, add_exclude):
52790         Add support for the fancy new exclusion options.
52791         (add_exclude, add_exclude_file): Now takes int options arg.
52792         Check for arithmetic overflow when computing sizes.
52793         (add_exclude_file): xrealloc might modify errno, so don't
52794         realloc until after errno might be used.
52795
52796         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
52797         New macros.
52798         (free_exclude): New decl.
52799         (add_exclude, add_exclude_file): Now takes int options arg.
52800         (excluded_filename): No longer requires options arg, as the options
52801         are determined by add_exclude.  Now returns bool, not int.
52802
52803 2001-08-30  Paul Eggert  <eggert@twinsun.com>
52804
52805         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
52806
52807 2001-08-27  Jim Meyering  <meyering@lucent.com>
52808
52809         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
52810
52811         * lib/version-etc.c (N_): Remove definition.
52812         Revert most of last change.
52813         Instead, simply don't mark the `Copyright...' string for translation.
52814         Based on advice from Paul Eggert.
52815
52816         * lib/strtoxmax.c: Tweak comment.
52817
52818 2001-08-26  Jim Meyering  <meyering@lucent.com>
52819
52820         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
52821
52822         * m4/xstrtoimax.m4: New file.
52823         * m4/xstrtoumax.m4: Add comments explaining why we
52824         AC_REPLACE_FUNCS(strtol).
52825
52826 2001-08-26  Jim Meyering  <meyering@lucent.com>
52827
52828         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
52829         of copyright with `%s' so translators don't get an untranslated
52830         message in 2002.
52831         (COPYRIGHT_YEAR): Define.
52832         (version_etc): Use fprintf rather than fputs.
52833         Suggestion from Ulrich Drepper.
52834
52835         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
52836
52837         * lib/strtoll.c: New file, from GNU libc.
52838         * lib/xstrtoimax.c: New file.
52839
52840         * lib/xstrtol.h: Add xstrtoimax.
52841         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
52842         * lib/strtoimax.c: New file.  Likewise, but first define
52843         STRTOUXMAX_SIGNED.
52844
52845         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
52846         ...
52847         * lib/strtoxmax.c: ... then renamed to this.
52848
52849 2001-08-18  Paul Eggert  <eggert@twinsun.com>
52850
52851         * m4/inttypes.m4: Add AC_PREREQ(2.13).
52852         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
52853         (jm_AC_TYPE_INTMAX_T): New macro.
52854         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
52855
52856         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
52857
52858         * m4/longlong.m4: Renamed from ulonglong.m4.
52859         * m4/inttypes.m4: Renamed from inttypes_h.m4.
52860         * m4/uintmax_t.m4: Removed.
52861
52862 2001-08-13  Paul Eggert  <eggert@twinsun.com>
52863
52864         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
52865         Port to Solaris 8, where 'sed' requires a space after the 'r'
52866         command, and where sh dislikes "$/".  Clean up the spacing a bit.
52867         Redirect output to $tmp just once.
52868
52869 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
52870
52871         * lib/addext.c (<errno.h>): Include.
52872         (errno): Declare if not defined.
52873         (addext): Work correctly when pathconf returns -1 and leaves
52874         errno alone because there is no limit.  Also, work even if
52875         pathconf returns a value greater than SIZE_MAX.
52876
52877 2001-08-12  Jim Meyering  <meyering@lucent.com>
52878
52879         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
52880         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
52881         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
52882         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
52883         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
52884         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
52885         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
52886         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
52887         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
52888         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
52889         utime.m4, utimes.m4, xstrtoumax.m4:
52890         Quote the first argument in each use of AC_DEFUN.
52891
52892 2001-08-12  Jim Meyering  <meyering@lucent.com>
52893
52894         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
52895         Simply `return getcwd (NULL, 0);'.
52896         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
52897         Use 1300 as initial value for length, not PATH_MAX.
52898
52899         * lib/pathmax.h: Clean up cpp syntax.
52900
52901 2001-08-12  Jim Meyering  <meyering@lucent.com>
52902
52903         * lib/gettimeofday.c: New file.
52904         * lib/gtod.h: New file.
52905         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
52906
52907 2001-08-05  Jim Meyering  <meyering@lucent.com>
52908
52909         * m4/jm-macros.m4: Require autoconf-2.52.
52910
52911 2001-08-04  Jim Meyering  <meyering@lucent.com>
52912
52913         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
52914         stmt, to get in sync with glibc.
52915
52916 2001-08-03  Paul Eggert  <eggert@twinsun.com>
52917
52918         The following changes are from gettext 0.10.39 as maintained by
52919         Bruno Haible.
52920
52921         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
52922         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
52923         with inverted sense.  All uses changed.
52924
52925         * lib/mbswidth.c: Don't include <limits.h>.
52926         Include <stdlib.h> and <string.h> unconditionally.
52927         (iswcntrl, mbsinit, ISCNTRL): New macros.
52928         (mbsnwidth): Use K&R style function declarations.
52929         Don't bother checking for MB_LEN_MAX == 1, since the compiler
52930         can optimize it when MB_CUR_MAX == 1.
52931         The width of control characters is zero, not 1.
52932
52933 2001-08-03  Paul Eggert  <eggert@twinsun.com>
52934
52935         The following changes are from gettext 0.10.39 as maintained by
52936         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
52937
52938         * m4/codeset.m4: Upgrade to serial AM1.
52939         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
52940         all uses changed.  Quote first arg of AC_DEFUN.
52941         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
52942
52943         * m4/iconv.m4: Upgrade to serial AM2.
52944         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
52945         Add --with-libconv-prefix.
52946         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
52947         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
52948         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
52949         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
52950         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
52951
52952         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
52953         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
52954         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
52955         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
52956         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
52957         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
52958         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
52959         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
52960         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
52961
52962         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
52963         string.h any more.
52964
52965         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
52966         not the default value.
52967
52968         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
52969         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
52970         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
52971         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
52972         Also check for iswcntrl, used for wcwidth fallback.
52973         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
52974         to Autoconf 2.13.
52975
52976 2001-08-03  Jim Meyering  <meyering@lucent.com>
52977
52978         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
52979         as it was in the original.  Reported by Paul Eggert.
52980
52981 2001-07-16  Jim Meyering  <meyering@lucent.com>
52982
52983         * m4/gettimeofday.m4: New file.
52984         Prompted by a report from Bernhard Baehr.
52985
52986 2001-07-15  Jim Meyering  <meyering@lucent.com>
52987
52988         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
52989         stuff. Now it's in ../Makefile.cfg.
52990
52991 2001-07-15  Jim Meyering  <meyering@lucent.com>
52992
52993         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
52994         (BUILT_SOURCES): Add unlocked-io.h.
52995         (io_functions): Define.
52996         (unlocked-io.h): New rule.
52997         (DISTCLEANFILES): Add unlocked-io.h.
52998         (all-local): Depend on unlocked-io.h, to ensure it is created.
52999
53000         * lib/unlocked-io.hin: New file
53001
53002         * lib/regex.c: Update from glibc.
53003
53004 2001-07-05  Jim Meyering  <meyering@lucent.com>
53005
53006         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
53007         recommendation.
53008         (libfetish_a_SOURCES): Put all .h files here instead.
53009         Remove a thus-exposed (better checks in automake) duplicate and
53010         two unnecessary .h files.
53011
53012 2001-07-04  Jim Meyering  <meyering@lucent.com>
53013
53014         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
53015         that generates jm-glibc-io.m4 so that it doesn't trigger any make
53016         distcheck failure.
53017
53018 2001-07-02  Jim Meyering  <meyering@lucent.com>
53019
53020         The following changes were prompted by suggestions from Bruno Haible.
53021
53022         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
53023         is now generated.
53024         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
53025         definition of EXTRA_DIST.
53026         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
53027         ensure that the generated file is created/updated whenever the list
53028         of $(unlocked_functions) is changed.
53029         (jm-glibc-io.m4): New rule.
53030         (unlocked-io.h): New rule -- currently unused.
53031
53032 2001-06-24  Jim Meyering  <meyering@lucent.com>
53033
53034         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
53035         unmatched right bracket, rather than kludging it with an extra,
53036         falsely-matching quote in a comment.  Patch by Akim Demaille.
53037
53038 2001-06-11  Jim Meyering  <meyering@lucent.com>
53039
53040         * lib/regex.c: Update from GNU libc.
53041
53042 2001-05-27  Jim Meyering  <meyering@lucent.com>
53043
53044         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
53045         Check for ut_type in struct utmp.
53046
53047 2001-05-27  Jim Meyering  <meyering@lucent.com>
53048
53049         * lib/readutmp.h (UT_TYPE): Define.
53050
53051 2001-05-24  Jim Meyering  <meyering@lucent.com>
53052
53053         * lib/argmatch.c: Include "quote.h".
53054         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
53055         quote function.  Reported by Göran Uddeborg.
53056
53057 2001-05-22  Jim Meyering  <meyering@lucent.com>
53058
53059         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
53060         now that we use the package-supplied version unconditionally.
53061         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
53062
53063 2001-05-21  Jim Meyering  <meyering@lucent.com>
53064
53065         * m4/regex.m4: Change a couple backticks to single quotes to avoid
53066         shell syntax errors.
53067
53068 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
53069
53070         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
53071
53072 2001-05-20  Paul Eggert  <eggert@twinsun.com>
53073
53074         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
53075         Don't bother to check library strftime, since
53076         we'll be using our own my_strftime function anyway.
53077         Define my_strftime instead of strftime.
53078
53079 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
53080
53081         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
53082         which is not yet declared.
53083
53084 2001-05-15  Jim Meyering  <meyering@lucent.com>
53085
53086         * m4/regex.m4: Use proper quoting so brackets appear in the test
53087         program.
53088         Reported by, and with help from, Bruno Haible.
53089
53090 2001-05-13  Jim Meyering  <meyering@lucent.com>
53091
53092         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
53093         undefined.
53094
53095 2001-05-11  Paul Eggert  <eggert@twinsun.com>
53096
53097         dirname code cleanup.  base_name now behaves more compatibly
53098         with POSIX basename when given file names that have trailing
53099         slashes, and similarly for dir_name.  Add new primitives
53100         base_len and dir_len.  Put the directory-name-related decls
53101         into dirname.h.
53102
53103         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
53104         * lib/backupfile.c (base_name): Likewise.
53105         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
53106         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
53107         * lib/makepath.c (strip_trailing_slashes): Likewise.
53108         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
53109         ISSLASH): Likewise.
53110         * lib/rename.c (strip_trailing_slashes): Likewise.
53111         * lib/same.c (base_name): Likewise.
53112         * lib/stripslash.c (ISSLASH): Likewise.
53113
53114         * lib/addext.c: Include <dirname.h> after size_t is defined.
53115         * lib/backupfile.c: Likewise.
53116
53117         * lib/addext.c (addext): Use base_len to trim redundant
53118         trailing slashes instead of doing it ourselves.
53119         But do not trim the last slash if it is not redundant.
53120
53121         * lib/backupfile.c (find_backup_file_name,
53122         max_backup_version): Use base_len instead of rolling it ourselves.
53123         Handle the case of "" and (on DOS) "C:" correctly.
53124
53125         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
53126         needed. Include <string.h>, <dirname.h>.
53127         (base_name): Allow file names ending in slashes, other than names
53128         that are all slashes.  In this case, return the basename followed
53129         by the slashes.  This is more general, and can be used in places
53130         where the original base_name purposely had an assertion failure.
53131         (base_len): New function.
53132
53133         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
53134         Do not include <assert.h>; no longer needed.
53135         Include xalloc.h.
53136         (memrchr): Remove decl.
53137         (dir_name_r): Remove.
53138         (dir_len): Renamed from dirlen.  All callers changed.
53139         Rewrite in terms of base_name, for simplicity and consistency.
53140         (dir_name): Never return NULL.  All callers changed.
53141         Do not include <stdlib.h> in test program; no longer needed.
53142         return 0; is fine for test program.
53143
53144         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
53145         New macros.
53146         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
53147
53148         * lib/path-concat.c (path_concat): Use base_len to compute
53149         base length, not strlen; this means we cannot rely on memcpy
53150         to null-terminate.
53151
53152         * lib/same.c (STREQ): Remove.
53153         (same_name): Handle the case where the basename ends in trailing '/'.
53154
53155         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
53156         a slash was stripped.  Do not strip the last slash after a
53157         file system prefix.
53158
53159 2001-05-11  Paul Eggert  <eggert@twinsun.com>
53160
53161         * lib/Makefile.am (libfetish_a_SOURCES):
53162         Add strftime.c, since we now compile it on all hosts.
53163
53164         * lib/strftime.c (my_strftime):
53165         Define to nstrftime if emacs, but only if my_strftime is not defined.
53166         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
53167         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
53168         Add one more extra argument: a nanoseconds value.
53169         All uses changed.
53170         (ns): New macro.
53171         (my_strftime function): Add %N format.
53172         (emacs_strftimeu): Renamed from emacs_strftime,
53173         with extra ut argument.
53174
53175 2001-05-09  Paul Eggert  <eggert@twinsun.com>
53176
53177         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
53178
53179 2001-04-21  Jim Meyering  <meyering@lucent.com>
53180
53181         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
53182         doesn't interfere.
53183
53184 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
53185
53186         * m4/ftruncate.m4: Check for chsize.
53187         Link with ftruncate.o unconditionally if ftruncate is missing.
53188         This was required when cross-compiling to i586-mingw32msvc.
53189
53190 2001-04-08  Jim Meyering  <meyering@lucent.com>
53191
53192         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
53193         recomputed; that's necessary when the offset spans a DST transition.
53194         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
53195
53196 2001-04-02  Jim Meyering  <meyering@lucent.com>
53197
53198         * lib/regex.h, regex.c: Update from GNU libc.
53199
53200 2001-03-24  Jim Meyering  <meyering@lucent.com>
53201
53202         * m4/jm-macros.m4: Require autoconf-2.49d.
53203
53204 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
53205
53206         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
53207
53208 2001-03-19  Paul Eggert  <eggert@twinsun.com>
53209
53210         * lib/version-etc.c (version_etc_copyright): Update to 2001.
53211
53212 2001-03-17  Jim Meyering  <meyering@lucent.com>
53213
53214         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
53215         now that the version in autoconf is equivalent.
53216         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
53217
53218         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
53219         Suggestion from Akim Demaille.
53220
53221         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
53222         (jm_PREREQ_TEMPNAME): New function.
53223
53224 2001-03-16  Paul Eggert  <eggert@twinsun.com>
53225
53226         * lib/tempname.c (uint64_t): Define to uintmax_t if
53227         not defined, and if UINT64_MAX is not defined.
53228         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
53229         Reported by John David Anglin.
53230
53231 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
53232
53233         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
53234         resolve alias if codeset is empty.
53235         * lib/config.charset (BeOS): Use wildcard syntax.
53236
53237 2001-03-13  Jim Meyering  <meyering@lucent.com>
53238
53239         * lib/path-concat.c (path_concat)
53240         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
53241         concatenating e.g., `C:' and `foo'.
53242         From Bruno Haible.
53243
53244 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
53245
53246         * lib/localcharset.c (locale_charset): Don't use
53247         setlocale(LC_CTYPE,NULL). Don't return NULL.
53248         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
53249
53250 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
53251
53252         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
53253         support for DOS/DJGPP.
53254
53255 2001-03-01  Paul Eggert  <eggert@twinsun.com>
53256
53257         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
53258         lacks mkstemp.  Compile our own tempname.c if we compile our own
53259         mkstemp.c, as mkstemp relies on tempname.
53260
53261 2001-03-01  Jim Meyering  <meyering@lucent.com>
53262
53263         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
53264         AH_VERBATIM really does output its argument verbatim.
53265
53266 2001-02-28  Paul Eggert  <eggert@twinsun.com>
53267
53268         * lib/Makefile.am (libfetish_a_SOURCES):
53269         Add dup-safer.c, fopen-safer.c.
53270         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
53271
53272         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
53273         * lib/unistd-safer.h: New files.
53274
53275 2001-02-25  Paul Eggert  <eggert@twinsun.com>
53276
53277         The mkstemp replacement is taken from glibc 2.2.2, with some
53278         portability fixes for use outside glibc, as follows:
53279
53280         * lib/tempname.c (struct_stat64): New macro.
53281         (direxists, __gen_tempname): Use it.
53282         This avoids a portability problem with Solaris 8.
53283
53284         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
53285         (<stddef.h>, <stdint.h>, <string.h>):
53286         Include only if STDC_HEADERS || _LIBC.
53287         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
53288         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
53289         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
53290         (__set_errno): Define this macro if <errno.h> doesn't.
53291         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
53292         Define these macros if <stdio.h> doesn't.
53293         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
53294         Define these macros if <sys/stat.h>
53295         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
53296         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
53297         __xstat64): Define if not _LIBC.
53298         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
53299         (__gen_tempname): Invoke gettimeofday only if
53300         HAVE_GETTIMEOFDAY || _LIBC;
53301         otherwise, fall back on plain "time".
53302         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
53303
53304         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
53305
53306         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
53307
53308 2001-02-18  Paul Eggert  <eggert@twinsun.com>
53309
53310         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
53311
53312 2001-02-17  Paul Eggert  <eggert@twinsun.com>
53313
53314         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
53315         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
53316         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
53317         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
53318
53319 2001-02-17  Paul Eggert  <eggert@twinsun.com>
53320
53321         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
53322         Remove workaround macros for hosts that have mbrtowc but not
53323         mbstate_t, as we now insist on proper declarations for both
53324         before using mbrtowc.
53325
53326 2001-02-17  Jim Meyering  <meyering@lucent.com>
53327
53328         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
53329         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
53330         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
53331         UnixWare 7.1.1.
53332
53333         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
53334         rather than AC_CACHE_VAL.
53335
53336 2001-02-17  Jim Meyering  <meyering@lucent.com>
53337
53338         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
53339         around included file name.
53340
53341         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
53342
53343         * lib/strftime.c: Update from GNU libc (the only changes were to
53344         comments).
53345
53346 2001-02-17  Jim Meyering  <meyering@lucent.com>
53347
53348         * lib/regex.c: Update from libc.
53349
53350 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
53351
53352         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
53353         clash.
53354
53355 2001-02-16  Paul Eggert  <eggert@twinsun.com>
53356
53357         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
53358         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
53359         Reported by Mark Hounschell via Paul Eggert.
53360
53361 2001-02-07  Jim Meyering  <meyering@lucent.com>
53362
53363         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
53364
53365 2001-02-05  Jim Meyering  <meyering@lucent.com>
53366
53367         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
53368         it includes the patch required for `large file' support with at least
53369         HP-UX's 10.20 /bin/cc.
53370
53371 2001-02-03  Jim Meyering  <meyering@lucent.com>
53372
53373         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
53374         AS_IF, now that it works once again (mysteriously).
53375         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
53376
53377 2001-01-30  Jim Meyering  <meyering@lucent.com>
53378
53379         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
53380         * m4/chown.m4: Rename conftestchown to conftest.chown.
53381         * m4/rename.m4: s/conftestdir/conftest.d1/ and
53382         s/conftestdir2/conftest.d2/.
53383         * m4/utimes.m4: s/conftestdata/conftest.data/
53384         Inspired by Pavel Roskin's change in autoconf.
53385
53386 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
53387
53388         * lib/config.charset: Update for FreeBSD 4.2.
53389
53390 2001-01-27  Jim Meyering  <meyering@lucent.com>
53391
53392         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
53393         a use of AS_IF.
53394         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
53395
53396 2001-01-26  Jim Meyering  <meyering@lucent.com>
53397
53398         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
53399         quotearg.c includes it.
53400
53401 2001-01-26  Jim Meyering  <meyering@lucent.com>
53402
53403         * lib/quotearg.c: Include stddef.h.
53404         * lib/quote.c: Include stddef.h.
53405         Reported by Axel Kittenberger.
53406
53407         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
53408         line in double quotes so that it evokes a better diagnostic.
53409         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
53410         Reported by Axel Kittenberger.
53411
53412 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
53413
53414         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
53415         as if it was a `charset'.
53416
53417 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
53418
53419         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
53420         has const.
53421
53422 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
53423
53424         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
53425         to avoid a warning.  Add back 'const' to inptr.
53426
53427 2001-01-20  Jim Meyering  <meyering@lucent.com>
53428
53429         Be sure that headers are checked before used in code compiled
53430         for the type checks.
53431         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
53432         In place of that, invoke jm_CHECK_ALL_TYPES.
53433         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
53434         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
53435         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
53436         The check for ssize_t was mistakenly run before the test for unistd.h.
53437
53438         The configure-time check for stdbool.h was missing.
53439         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
53440         (jm_PREREQ_HASH): New function.
53441
53442 2001-01-17  Jim Meyering  <meyering@lucent.com>
53443
53444         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
53445         for autoconf-2.49c.
53446         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
53447
53448 2001-01-16  Jim Meyering  <meyering@lucent.com>
53449
53450         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
53451         From Bruno Haible.
53452
53453 2001-01-14  Jim Meyering  <meyering@lucent.com>
53454
53455         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
53456         foo and bar.  Create conftestdir/ in the script, not in the C code.
53457         Remove directories in the script, not in the C code.
53458         Remove conftestdir{,2} before trying to create the directory.
53459         Make the entire configure script fail if the mkdir fails.
53460
53461 2001-01-14  Jim Meyering  <meyering@lucent.com>
53462
53463         * lib/rename.c: New file.  From Volker Borchert.
53464         Include stdlib.h, string.h or strings.h, and xalloc.h.
53465         Use strip_trailing_slashes rather than open-coding it.
53466
53467 2001-01-03  Paul Eggert  <eggert@twinsun.com>
53468
53469         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
53470
53471 2001-01-03  Jim Meyering  <meyering@lucent.com>
53472
53473         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
53474         of local `inptr' to avoid warning with some system declarations of
53475         iconv.
53476
53477 2001-01-02  Volker Borchert  <bt@teknon.de>
53478
53479         * m4/rename.m4: New file.
53480         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
53481
53482 2001-01-01  Jim Meyering  <meyering@lucent.com>
53483
53484         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
53485         even on systems with utmpx.h.  It's necessary for the declaration of
53486         utmp's ut_user member.  Reported by Andreas Jaeger.
53487
53488         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
53489         available. They are required for the declarations of getgrgid and
53490         getpwuid resp.
53491         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
53492         Reported by Andreas Jaeger.
53493
53494 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
53495
53496         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
53497         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
53498         so `make install' also works in VPATH builds.
53499
53500 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
53501
53502         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
53503         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
53504         can be used in subdirectories.
53505
53506 2000-12-29  Paul Eggert  <eggert@twinsun.com>
53507
53508         * lib/modechange.c: Do not assume that mode_t uses the
53509         traditional octal encoding.  E.g. "chmod 1 FOO" should set
53510         the other-execute bit of FOO even if S_IXOTH != 1.
53511
53512         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
53513         WOTH, XOTH, ALLM): New macros.
53514         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
53515          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
53516         Use them.
53517         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
53518         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
53519         (mode_compile):
53520         No need to use uintmax_t; unsigned long is long enough.
53521         Don't bother to get suffix since we don't use it.
53522
53523 2000-12-26  Jim Meyering  <meyering@lucent.com>
53524
53525         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
53526         better with autoheader.
53527
53528 2000-12-24  Jim Meyering  <meyering@lucent.com>
53529
53530         * lib/hash.c (is_prime): Return explicit boolean values.
53531         (hash_get_first): Return NULL to appease Irix5.6's 89.
53532         Reported by Nelson Beebe.
53533
53534 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
53535
53536         * lib/localcharset.c (locale_charset): Add support for Win32.
53537
53538 2000-12-18  Paul Eggert  <eggert@twinsun.com>
53539
53540         * lib/physmem.h, lib/physmem.c: New files.
53541
53542         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
53543         (noinst_HEADERS): Add physmem.h.
53544
53545         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
53546         't' for compatibility with Solaris 8 sort.
53547
53548 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
53549
53550         * lib/config.charset: Add support for BeOS.
53551
53552 2000-12-17  Jim Meyering  <meyering@lucent.com>
53553
53554         * m4/dos.m4 (jm_AC_DOS): New file and macro.
53555         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
53556
53557 2000-12-16  Jim Meyering  <meyering@lucent.com>
53558
53559         This bug had a serious impact on chown: `chown N:M FILE' (for integer
53560         N and M) would have treated it like `chown N:N FILE'.
53561
53562         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
53563
53564 2000-12-16  Jim Meyering  <meyering@lucent.com>
53565
53566         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
53567         SHELLS_FILE to a file name that's useful on djgpp systems.
53568         Include stdlib.h.
53569         (ADDITIONAL_DEFAULT_SHELLS): Define.
53570         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
53571         Based mostly on a patch from Prashant TR.
53572
53573 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
53574
53575         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
53576         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
53577         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
53578
53579 2000-12-08  Andreas Schwab  <schwab@suse.de>
53580
53581         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
53582         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
53583
53584 2000-12-07  Jim Meyering  <meyering@lucent.com>
53585
53586         * lib/stripslash.c (ISSLASH): Define.
53587         (strip_trailing_slashes): Use ISSLASH rather than comparing against
53588         `/'.
53589         From Prashant TR.
53590
53591         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
53592         (dir_name_r): Declare this function as static.
53593         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
53594         manifest itself on a name containing a mix of slashes and
53595         backslashes.
53596         Make this function work with names starting with a DOS-style
53597         drive letter and colon prefix.
53598         (dir_name): Append `.' if necessary.
53599         Based mostly on patches from Prashant TR and Eli Zaretskii.
53600
53601         * lib/dirname.h (dir_name_r): Remove prototype.
53602
53603 2000-12-06  Paul Eggert  <eggert@twinsun.com>
53604
53605         * m4/off_t-format.m4: Remove this file.
53606         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
53607
53608 2000-12-06  Jim Meyering  <meyering@lucent.com>
53609
53610         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
53611         replacement strtoull, we may well need the replacement strtoul, too.
53612         Check for declarations of strtoul and strtoull.
53613         Check for strtol.  Mainly as a cue to cause automake to include
53614         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
53615         Check for limits.h -- strtol.c needs it.
53616
53617 2000-12-05  Jim Meyering  <meyering@lucent.com>
53618
53619         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
53620
53621 2000-12-04  Jim Meyering  <meyering@lucent.com>
53622
53623         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
53624         Also include memory.h, stdlib.h, unistd.h if appropriate.
53625         Reported by Andreas Jaeger (conflicting declaration of malloc).
53626
53627 2000-12-02  Jim Meyering  <meyering@lucent.com>
53628
53629         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
53630         * m4/jm-macros.m4 (jm_MACROS): require it.
53631
53632 2000-12-02  Jim Meyering  <meyering@lucent.com>
53633
53634         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
53635
53636 2000-12-01  Paul Eggert  <eggert@twinsun.com>
53637
53638         * lib/memrchr.c: Include <config.h> before any system include file.
53639
53640 2000-11-30  Jim Meyering  <meyering@lucent.com>
53641
53642         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
53643
53644 2000-11-30  Jim Meyering  <meyering@lucent.com>
53645
53646         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
53647
53648 2000-11-29  Paul Eggert  <eggert@twinsun.com>
53649
53650         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
53651
53652 2000-11-26  Jim Meyering  <meyering@lucent.com>
53653
53654         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
53655
53656 2000-11-22  Paul Eggert  <eggert@twinsun.com>
53657
53658         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
53659         size of (size_t) -1; it's not portable.
53660
53661 2000-11-17  Jim Meyering  <meyering@lucent.com>
53662
53663         * lib/strstr.c: Update from GNU libc.
53664
53665 2000-11-17  Akim Demaille  <akim@epita.fr>
53666
53667         * lib/obstack.h: Formatting changes.
53668         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
53669         prevent type checking.
53670         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
53671         cast the value to (void *): assigning a `foo *' to a `void *'
53672         variable is valid.
53673         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
53674
53675 2000-11-16  Jim Meyering  <meyering@lucent.com>
53676
53677         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
53678
53679 2000-11-11  Jim Meyering  <meyering@lucent.com>
53680
53681         * lib/error.c: Add a couple #includes, merging from GNU libc version.
53682
53683 2000-11-10  Jim Meyering  <meyering@lucent.com>
53684
53685         * lib/obstack.h: Update from GNU libc.
53686         * lib/obstack.c: Likewise.
53687
53688 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
53689
53690         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
53691
53692 2000-11-06  Paul Eggert  <eggert@twinsun.com>
53693
53694         * lib/getusershell.c (setusershell): Use rewind rather than
53695         fseek/fseeko, to avoid configuration hassles with fseeko.
53696         Don't bother opening SHELLS_FILE if shellstream is NULL;
53697         it's not necessary.
53698
53699 2000-11-05  Jim Meyering  <meyering@lucent.com>
53700
53701         * lib/makepath.h (make_dir): Declare.
53702         * lib/makepath.c (make_dir): Remove `static' attribute.
53703         Tweak a comment.
53704
53705 2000-11-04  Jim Meyering  <meyering@lucent.com>
53706
53707         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
53708
53709 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
53710
53711         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
53712         last one in a bucket, advance to the next bucket.
53713
53714 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
53715
53716         * lib/fnmatch.c: Do not comment out all the code if we are using
53717         the GNU C library, because in some cases we are replacing buggy
53718         code in the GNU C library itself.
53719
53720 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
53721
53722         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
53723         (regex_compile): Catch bogus \(\1\).
53724
53725 2000-10-30  Paul Eggert  <eggert@twinsun.com>
53726
53727         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
53728         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
53729         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
53730
53731 2000-10-30  Paul Eggert  <eggert@twinsun.com>
53732
53733         * lib/error.h, getline.h, modechange.h:
53734         Remove "2000" from Copyright line, as the file hasn't been
53735         changed this year other than in the copyright notice.
53736
53737         * lib/xalloc.h: Add "2000" to Copyright line, as this file
53738         was changed this year.
53739
53740 2000-10-29  Jim Meyering  <meyering@lucent.com>
53741
53742         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
53743         renaming.
53744         * m4/ls-mntd-fs.m4: Likewise
53745
53746 2000-10-29  Jim Meyering  <meyering@lucent.com>
53747
53748         * lib/xstat.in: Fix grammar in comment.
53749
53750 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
53751
53752         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
53753         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
53754         doesn't define __restrict_arr.
53755
53756 2000-10-28  Jim Meyering  <meyering@lucent.com>
53757
53758         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
53759         (jm_PREREQ_MEMCHR): New function.
53760
53761 2000-10-28  Jim Meyering  <meyering@lucent.com>
53762
53763         * lib/memchr.c: Update from libc.
53764         Adjust for portability:
53765         [HAVE_STDLIB_H]: Include stdlib.h.
53766         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
53767         Undef __memchr, too.
53768         [!weak_alias]: Define __memchr to memchr.
53769
53770         * lib/regex.c: Update from libc.
53771         * lib/regex.h: Likewise.
53772         * lib/getopt1.c: Likewise.
53773         * lib/memcmp.c: Likewise.
53774
53775         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
53776         Avoid using fseek, when possible -- it's broken by design.
53777         Patch by Ulrich Drepper.
53778
53779 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
53780
53781         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
53782         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
53783         Giving in to popular pressure to shut up the compiler with casts.
53784
53785 2000-10-26  Jim Meyering  <meyering@lucent.com>
53786
53787         * lib/strftime.c: Update from libc.
53788
53789 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
53790
53791         * regex.c: More `unsigned char' -> `re_char' changes.
53792         Also change several `int' into `re_wchar_t'.
53793         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
53794         (PUSH_FAILURE_POINTER): Don't cast any more.
53795         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
53796         We want GCC to complain, since this piece of code makes
53797         re_match non-reentrant, which *should* be fixed.
53798         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
53799         (EXTEND_BUFFER): Use RETALLOC.
53800         (SET_LIST_BIT): Don't cast.
53801         (re_wchar_t): New type.
53802         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
53803         that those two functions will always properly return.
53804         (IMMEDIATE_QUIT_CHECK): Cast to void.
53805         (analyse_first): Use recursion rather than an explicit stack.
53806         (re_compile_fastmap): Can't fail anymore.
53807         (re_search_2): Don't check re_compile_fastmap for failure.
53808         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
53809         Now also sets the new value (passed in a new argument).
53810         (re_match_2_internal): Use it.
53811         Also, use a new var `reg' of type size_t when looping through regs
53812         rather than reuse the inappropriate `mcnt'.
53813
53814 2000-10-25  Jim Meyering  <meyering@lucent.com>
53815
53816         * lib/obstack.c: Update from libc.
53817
53818 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
53819
53820         * regex.c (regex_compile): Change the way of handling a range from
53821         a char less than 256 to a char not less than 256.
53822
53823 2000-10-24  Andrew Innes  <andrewi@gnu.org>
53824
53825         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
53826         NT-Emacs only.
53827         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
53828         so that re_search functions only quit when callers expect them to.
53829
53830 2000-10-23  Jim Meyering  <meyering@lucent.com>
53831
53832         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
53833         wrong.  That set_locale call must not have any side effects.
53834         From Paul Eggert.
53835
53836 2000-10-22  Jim Meyering  <meyering@lucent.com>
53837
53838         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
53839         [CYCLIC]: Remove now-unused definition.
53840
53841         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
53842         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
53843         Suggestion from Ulrich Drepper.
53844
53845 2000-10-21  Jim Meyering  <meyering@lucent.com>
53846
53847         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
53848         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
53849         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
53850
53851 2000-10-21  Jim Meyering  <meyering@lucent.com>
53852
53853         * lib/dirname.c (memrchr): Declare if necessary.
53854         (dir_name): Remove the restriction that there be no
53855         trailing slashes.  Now, this code skips past them, effectively
53856         ignoring them.
53857         [TEST_DIRNAME] (main): New unit tests.
53858
53859         * lib/memrchr.c: New file from GNU libc.
53860         Undef __memrchr, too.
53861         [!weak_alias]: Define __memrchr to memrchr.
53862         Guard weak_alias use with `#ifdef weak_alias'.
53863
53864 2000-10-21  Jim Meyering  <meyering@lucent.com>
53865
53866         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
53867         (dir_name): Use dir_name_r.
53868         * lib/dirname.h (dir_name_r): Declare it.
53869
53870 2000-10-17  Jim Meyering  <meyering@lucent.com>
53871
53872         * lib/quote.h (PARAMS): Define and use.
53873         Reported by Akim Demaille.
53874
53875         * lib/getopt.c: Update from libc.
53876
53877 2000-10-16  Jim Meyering  <meyering@lucent.com>
53878
53879         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
53880         setlocale.
53881         From Jan Fedak.
53882
53883 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
53884
53885         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
53886
53887 2000-09-25  Jim Meyering  <meyering@lucent.com>
53888
53889         * lib/md5.h (rol): Define (from GnuPG).
53890
53891         * lib/sha.c: Give credit (GnuPG) where due.
53892         (M): Use rol rather than open-coding it.
53893         Add a FIXME comment.
53894
53895 2000-09-21  Jim Meyering  <meyering@lucent.com>
53896
53897         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
53898         Reported by Michael Stone.
53899
53900 2000-09-20  Jim Meyering  <meyering@lucent.com>
53901
53902         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
53903         (noinst_HEADERS): Add sha.h.
53904         Based on code from Scott G. Miller and from GnuPG.
53905
53906 2000-09-18  Jim Meyering  <meyering@lucent.com>
53907
53908         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
53909         LIBS. Otherwise, everyone ends up linking with -lelf for some
53910         configurations.
53911         Reported by Mike Stone.
53912
53913 2000-09-15  Jim Meyering  <meyering@lucent.com>
53914
53915         * lib/regex.c: Update from libc.
53916
53917 2000-09-10  Jim Meyering  <meyering@lucent.com>
53918
53919         * lib/getopt.c (_getopt_internal): Update from glibc.
53920
53921 2000-09-09  Jim Meyering  <meyering@lucent.com>
53922
53923         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
53924         think it should be used as a general replacement for isascii.
53925         * lib/fnmatch.c: Likewise.
53926         * lib/mbswidth.c: Likewise
53927         * lib/regex.c: Likewise.
53928
53929         Don't use atoi.
53930         * lib/userspec.c: Include sys/param.h and limits.h.
53931         Include xstrtol.h.
53932         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
53933         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
53934         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
53935         UID, GID.  Check range.
53936
53937 2000-09-06  Jim Meyering  <meyering@lucent.com>
53938
53939         * lib/getopt.c (_getopt_internal): Update from glibc.
53940
53941 2000-08-30  Jim Meyering  <meyering@lucent.com>
53942
53943         * lib/strftime.c: Merge in changes from GNU libc.
53944
53945 2000-08-26  Jim Meyering  <meyering@lucent.com>
53946
53947         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
53948         * m4/fpending.m4: New file.
53949
53950 2000-08-26  Jim Meyering  <meyering@lucent.com>
53951
53952         * lib/closeout.c: Include "__fpending.h".
53953         (close_stdout_status): Return right away if there's nothing to flush.
53954
53955         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
53956         * lib/__fpending.c: New file.
53957         * lib/__fpending.h: New file.
53958
53959 2000-08-20  Jim Meyering  <meyering@lucent.com>
53960
53961         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
53962         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
53963         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
53964
53965 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
53966
53967         Improve fileutils installation on systems where running
53968         programs (like install) can't be unlinked.
53969         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
53970         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
53971
53972 2000-08-07  Paul Eggert  <eggert@twinsun.com>
53973
53974         Standardize on "memory exhausted" instead of "Memory exhausted"
53975         or "virtual memory exhausted".
53976         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
53977         "virtual memory exhausted".
53978         * lib/same.c (same_name): Invoke xalloc_die instead of printing
53979         our own message.
53980         * lib/userspec.c (parse_user_spec): Likewise.
53981         * lib/bumpalloc.h: comment fix
53982         * lib/same.c, userspec.c: Include xalloc.h.
53983
53984         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
53985         not char *const and pointing to a constant array.
53986         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
53987         (xrealloc): Comment fix.
53988
53989         * lib/userspec.c (parse_user_spec):
53990         Don't translate a message until just before returning,
53991         to avoid unnecessary translation.
53992
53993 2000-08-07  Jim Meyering  <meyering@lucent.com>
53994
53995         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
53996         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
53997         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
53998         getgroups.c, gethostname.c, getopt.h, group-member.c,
53999         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
54000         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
54001         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
54002         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
54003         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
54004         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
54005         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
54006         yesno.c: Back out Copyright date changes for each file with no change
54007         this year.  This eases coordination with other programs using the same
54008         source code modules.  From Paul Eggert.
54009
54010 2000-08-06  Paul Eggert  <eggert@twinsun.com>
54011
54012         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
54013         not char, for compatibility with glibc 2.1.3 strftime.c.
54014
54015 2000-08-03  Greg McGary  <greg@mcgary.org>
54016
54017         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
54018         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
54019         (EXTEND_BUFFER): Use them.
54020
54021 2000-08-01  Jim Meyering  <meyering@lucent.com>
54022
54023         * lib/dirname.c (ISSLASH): Define.
54024         (BACKSLASH_IS_PATH_SEPARATOR): Define.
54025         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
54026         both `\' and `/' may be use as path separators.
54027         Based on a patch from Prashant TR.
54028
54029 2000-07-31  Paul Eggert  <eggert@twinsun.com>
54030
54031         * lib/quotearg.c (quotearg_n_options): Don't make the initial
54032         slot vector a constant, since it might get modified.
54033
54034 2000-07-31  Jim Meyering  <meyering@lucent.com>
54035
54036         * lib/xmalloc.c: Use `virtual memory exhausted', not
54037         `Memory exhausted'.
54038         * lib/obstack.c (print_and_abort): Likewise.
54039
54040 2000-07-30  Paul Eggert  <eggert@twinsun.com>
54041
54042         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
54043         buffer, so that the caller can always quote one small
54044         component of a "memory exhausted" message in slot 0.
54045         From a suggestion by Jim Meyering.
54046
54047 2000-07-30  Jim Meyering  <meyering@lucent.com>
54048
54049         * lib/makepath.c (make_path): Quote the other instance, too.
54050
54051         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
54052         (STATIC_BUF_SIZE): Define.
54053         (quotearg_n_options): Use only statically allocated storage when
54054         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
54055         than STATIC_BUF_SIZE.
54056
54057 2000-07-29  Jim Meyering  <meyering@lucent.com>
54058
54059         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
54060         * lib/dirname.c (dir_name): Likewise.
54061
54062         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
54063         `/'.
54064
54065         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
54066         (dir_name): Assert that there are no trailing slashes.
54067
54068 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
54069
54070         * lib/mbswidth.h (mbswidth): Add a flags argument.
54071         (mbswidth): New declaration.
54072         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
54073         * lib/mbswidth.c (mbswidth): Add a flags argument.
54074         (mbsnwidth): New function.
54075
54076 2000-07-24  Jim Meyering  <meyering@lucent.com>
54077
54078         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
54079
54080 2000-07-23  Paul Eggert  <eggert@twinsun.com>
54081
54082         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
54083
54084 2000-07-23  Paul Eggert  <eggert@twinsun.com>
54085
54086         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
54087         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
54088         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
54089         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
54090         invoke multibyte primitives.
54091
54092 2000-07-23  Paul Eggert  <eggert@twinsun.com>
54093
54094         * lib/quotearg.c:
54095         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
54096         so that mbstate_t is always defined.
54097
54098         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
54099         be 1 in at least one GCC installation, and this configuration
54100         error is likely to be common.  Ignoring MB_LEN_MAX hurts
54101         performance on hosts that have mbrtowc but have only unibyte
54102         locales, but I assume these hosts are rare.
54103
54104 2000-07-23  Paul Eggert  <eggert@twinsun.com>
54105
54106         * lib/mbswidth.c (_XOPEN_SOURCE):
54107         Don't define; this causes problems on Solaris 7.
54108         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
54109
54110 2000-07-23  Jim Meyering  <meyering@lucent.com>
54111
54112         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
54113         too: getgrgid, getpwuid, getuid.
54114
54115 2000-07-23  Jim Meyering  <meyering@lucent.com>
54116
54117         * lib/basename.c (base_name): Add an assertion.
54118
54119 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
54120
54121         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
54122         shadow its mbsinit function.
54123
54124 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
54125
54126         * lib/mbswidth.h: New file.
54127         * lib/mbswidth.c: New file.
54128         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
54129         (noinst_HEADERS): Add mbswidth.h.
54130
54131 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
54132
54133         * lib/config.charset: Add support for FreeBSD. Improve support for
54134         HP-UX and IRIX 6.
54135
54136 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
54137
54138         * m4/mbswidth.m4: New file.
54139         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
54140
54141 2000-07-15  Jim Meyering  <meyering@lucent.com>
54142
54143         * lib/makepath.c: Include quote.h.
54144         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
54145         corresponding argument in a `quote (...)' call.
54146         Give better diagnostics.
54147
54148         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
54149         (noinst_HEADERS): Add quote.h.
54150
54151         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
54152         from tar's src/misc.c.
54153         * lib/quote.h: New file.  Prototypes for same.
54154
54155 2000-07-14  Paul Eggert  <eggert@twinsun.com>
54156
54157         From a suggestion by Bruno Haible.
54158         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
54159         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
54160         to decide whether to define the BeOS workaround macro;
54161         this adjusts to the change to AC_MBSTATE_T.
54162
54163 2000-07-14  Jim Meyering  <meyering@lucent.com>
54164
54165         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
54166         jm_AC_TYPE_UINTMAX_T.
54167
54168 2000-07-13  Paul Eggert  <eggert@twinsun.com>
54169
54170         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
54171
54172         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
54173         quotearg_buffer_restyled): Add support for
54174         clocale_quoting_style.  Undo previous change to
54175         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
54176         and "{RIGHT QUOTATION MARK}" msgids.
54177
54178 2000-07-10  Paul Eggert  <eggert@twinsun.com>
54179
54180         From a suggestion by Bruno Haible.
54181         * m4/mbstate_t.m4 (AC_MBSTATE_T):
54182         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
54183         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
54184         and mbstate_t, to a single-part test that simply defines mbstate_t.
54185         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
54186         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
54187
54188 2000-07-10  Jim Meyering  <meyering@lucent.com>
54189
54190         * m4/strerror_r.m4: Mirror the correction made in autoconf.
54191
54192         * m4/gnu-source.m4: Output to confdefs.h directly.
54193         Suggestion from Akim Demaille.
54194
54195 2000-07-09  Paul Eggert  <eggert@twinsun.com>
54196
54197         The old behavior of quoting `like this' doesn't look good with
54198         newer, ISO-style fonts.  See:
54199         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
54200
54201         Instead, quote "like this" by default.  Let the translator
54202         tailor the locale-specific quoting behavior by providing
54203         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
54204
54205         * lib/quotearg.c (N_): New macro.
54206         (gettext_default): New function.
54207         (quotearg_buffer_restyled): Use
54208         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
54209         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
54210
54211 2000-07-09  Jim Meyering  <meyering@lucent.com>
54212
54213         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
54214         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
54215
54216         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
54217         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
54218
54219 2000-07-09  Jim Meyering  <meyering@lucent.com>
54220
54221         * lib/Most files: Update copyright dates to include 2000.
54222
54223 2000-07-08  Jim Meyering  <meyering@lucent.com>
54224
54225         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
54226         if not defined.
54227         (xgethostname): Remove now-unnecessary #ifdef.
54228         Move declaration of `err' into loop where it's used.
54229
54230 2000-07-05  Paul Eggert  <eggert@twinsun.com>
54231         and Bruno Haible  <haible@clisp.cons.org>
54232
54233         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
54234         only if the test for an object-type mbstate_t fails.  This
54235         prevents us from mistakenly reporting that mbstate_t is a
54236         system object type after we "#define mbstate_t int" to work
54237         around its lack.
54238
54239 2000-07-05  Paul Eggert  <eggert@twinsun.com>
54240         and Bruno Haible  <haible@clisp.cons.org>
54241
54242         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
54243
54244 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
54245
54246         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
54247         to strerror_r.
54248         Include <ctype.h> for use of isalpha.
54249
54250 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
54251
54252         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
54253         by allocating a larger buffer. Test the gethostname return value for
54254         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
54255         returns an error and ENAMETOOLONG isn't defined.
54256
54257 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
54258
54259         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
54260         dimension.
54261
54262 2000-07-04  Jim Meyering  <meyering@lucent.com>
54263
54264         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
54265         of the deprecated AC_CHECKING.
54266
54267 2000-07-04  Jim Meyering  <meyering@lucent.com>
54268
54269         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
54270         Reported by Bruno Haible.
54271
54272 2000-07-04  Jim Meyering  <meyering@lucent.com>
54273
54274         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
54275         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
54276         lacks mbrtowc.
54277
54278 2000-07-03  Paul Eggert  <eggert@twinsun.com>
54279
54280         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
54281         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
54282
54283 2000-07-03  Paul Eggert  <eggert@twinsun.com>
54284         and Bruno Haible  <haible@clisp.cons.org>
54285
54286         * lib/quotearg.c (mbrtowc):
54287         Assign to *pwc, and return 1 only if result is nonzero.
54288         (iswprint): Use ISPRINT when substituting our own mbrtowc.
54289
54290 2000-07-03  Jim Meyering  <meyering@lucent.com>
54291
54292         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
54293
54294 2000-07-03  Jim Meyering  <meyering@lucent.com>
54295
54296         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
54297         This is necessary to get a definition of e.g., UTMP_FILE on
54298         HP-UX 10.20.
54299         From Bob Proulx.
54300
54301 2000-07-02  Jim Meyering  <meyering@lucent.com>
54302
54303         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
54304
54305         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
54306         AC_LIBOBJ(function_name).
54307         * m4/chown.m4: Likewise.
54308         * m4/fnmatch.m4: Likewise.
54309         * m4/ftruncate.m4: Likewise.
54310         * m4/getgroups.m4: Likewise.
54311         * m4/getline.m4: Likewise.
54312         * m4/group-member.m4: Likewise.
54313         * m4/jm-macros.m4: Likewise.
54314         * m4/lstat.m4: Likewise.
54315         * m4/malloc.m4: Likewise.
54316         * m4/memcmp.m4: Likewise.
54317         * m4/nanosleep.m4: Likewise.
54318         * m4/putenv.m4: Likewise.
54319         * m4/realloc.m4: Likewise.
54320         * m4/regex.m4: Likewise.
54321         * m4/stat.m4: Likewise.
54322         * m4/strftime.m4: Likewise.
54323
54324 2000-07-02  Jim Meyering  <meyering@lucent.com>
54325
54326         * lib/quotearg.c (mbstate_t): Don't define here.
54327
54328 2000-07-02  Jim Meyering  <meyering@lucent.com>
54329
54330         * lib/nanosleep.c (SIGCONT): Define if not already defined.
54331
54332 2000-07-01  Jim Meyering  <meyering@lucent.com>
54333
54334         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
54335
54336 2000-07-01  Jim Meyering  <meyering@lucent.com>
54337
54338         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
54339         problem.
54340
54341 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
54342
54343         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
54344         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
54345
54346 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
54347
54348         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
54349         per change in ../m4/ls-mntd-fs.m4.
54350         (read_filesystem_list): Ignore symbolic links.
54351
54352 2000-06-29  Jim Meyering  <meyering@lucent.com>
54353
54354         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
54355         for declaration of strcmp.
54356
54357         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
54358
54359         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
54360         Avoid warning by casting result to `char *' to remove `const'.
54361
54362 2000-06-28  Jim Meyering  <meyering@lucent.com>
54363
54364         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
54365         included by quotearg.c, for which we perform this test.  From
54366         Bruno Haible.
54367
54368 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
54369
54370         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
54371         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
54372         <utmpx.h> exists, put readutmp.o into LIBOBJS.
54373
54374 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
54375
54376         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
54377
54378 2000-06-26  Paul Eggert  <eggert@twinsun.com>
54379
54380         savedir now sets errno on failure and invokes xmalloc to get memory.
54381         Fix a couple of other minor bugs while we're at it.
54382
54383         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
54384         (NAMLEN): Remove macro.
54385         (malloc, realloc): Remove decls.
54386         (stpcpy): Likewise.
54387         ("xalloc.h"): Include.
54388         (NAME_SIZE_DEFAULT): New macro.
54389         (savedir): Use xmalloc / xrealloc to allocate memory.
54390         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
54391         Skip "" directory entries.
54392         Use strlen to calculate directory entry length, since the old method
54393         is rarely used these days and isn't worth supporting.
54394         Don't use a pointer after freeing it.
54395         Check for integer overflow when calculating allocation size.
54396         Use memcpy to copy entries, instead of stpcpy.
54397         Set errno properly when returning NULL.
54398         Check for readdir error.
54399
54400 2000-06-26  Jim Meyering  <meyering@lucent.com>
54401
54402         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
54403
54404 2000-06-25  Jim Meyering  <meyering@lucent.com>
54405
54406         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
54407         Linux header bug when _XOPEN_SOURCE is defined to 500.
54408
54409 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
54410
54411         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
54412         deficiency.
54413
54414 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
54415
54416         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
54417         Include xalloc.h.
54418         Don't include <stdlib.h>.  Don't declare malloc, realloc.
54419
54420 2000-06-24  Jim Meyering  <meyering@lucent.com>
54421
54422         * m4/strerror_r.m4: Revive this file -- to try out an experimental
54423         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
54424         for which strerror does return char*, but which lacks a conveniently
54425         accessible declaration of the function.  If the compile-test says
54426         strerror_r doesn't work, then resort to a `run'-test that works on
54427         BeOS and segfaults on DEC Unix.
54428
54429 2000-06-24  Jim Meyering  <meyering@lucent.com>
54430
54431         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
54432
54433 2000-06-23  Paul Eggert  <eggert@twinsun.com>
54434
54435         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
54436         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
54437
54438 2000-06-23  Paul Eggert  <eggert@twinsun.com>
54439
54440         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
54441         (mbrtowc, mbstate_t): Define substitutes if
54442         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
54443         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
54444         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
54445
54446 2000-06-23  Jim Meyering  <meyering@lucent.com>
54447
54448         * m4/afs.m4: Add missing AC_MSG_RESULT.
54449         Reported by Bruno Haible.
54450
54451         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
54452         Suggestion from Bruno Haible.
54453
54454 2000-06-23  Jim Meyering  <meyering@lucent.com>
54455
54456         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
54457
54458 2000-06-21  Jim Meyering  <meyering@lucent.com>
54459
54460         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
54461
54462 2000-06-21  Jim Meyering  <meyering@lucent.com>
54463
54464         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
54465         (noinst_HEADERS): Add getstr.h.
54466
54467         * lib/getline.c (getstr): Move into a separate file.
54468         * lib/getstr.c (getstr): New file, extracted from getline.c, with
54469         the following changes: new parameter, delim2; both delim[12]
54470         parameters have type `int', not `char'.  The latter would lose
54471         with 8-bit delimiters.
54472         * lib/getstr.h: New file.
54473
54474 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
54475
54476         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
54477         than 1024, return a memory chunk of least possible size, instead
54478         of size PATH_MAX + 2. In the loop, increment the size proportionally.
54479         Use free/xmalloc instead of xrealloc to avoid copying for very long
54480         paths.
54481
54482 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
54483
54484         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
54485         the empty string.
54486
54487 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
54488
54489         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
54490         address, not strdup.  Include <stdlib.h> and don't declare free().
54491
54492 2000-06-19  Jim Meyering  <meyering@lucent.com>
54493
54494         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
54495
54496 2000-06-18  Jim Meyering  <meyering@lucent.com>
54497
54498         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
54499
54500         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
54501         `checking whether...' message to be consistent with that of the
54502         lstat test.
54503
54504 2000-06-18  Jim Meyering  <meyering@lucent.com>
54505
54506         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
54507         Besides, these days every porting target provides a mkdir function.
54508
54509         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
54510         needed. (this snippet comes from src/system.h).
54511
54512 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
54513
54514         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
54515
54516 2000-06-15  Paul Eggert  <eggert@twinsun.com>
54517
54518         * lib/human.c (adjust_value): New function.
54519         (human_readable_inexact): Apply rounding style even when
54520         printing approximate values.
54521
54522 2000-06-14  Paul Eggert  <eggert@twinsun.com>
54523
54524         * lib/human.c (human_readable_inexact): Allow an input block
54525         size that is not a multiple of the output block size, and vice versa.
54526         Reported by Piergiorgio Sartor.
54527
54528 2000-06-14  Paul Eggert  <eggert@twinsun.com>
54529
54530         * lib/getdate.y (get_date): Apply relative times after time
54531         zone indicator, not before.  Reported by Todd A. Jacobs.
54532
54533 2000-06-13  Jim Meyering  <meyering@lucent.com>
54534
54535         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
54536
54537         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
54538
54539 2000-06-12  Paul Eggert  <eggert@twinsun.com>
54540
54541         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
54542
54543 2000-06-12  Jim Meyering  <meyering@lucent.com>
54544
54545         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
54546         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
54547         optional argument.
54548         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
54549         the optional argument, `lib'.
54550
54551 2000-06-08  Jim Meyering  <meyering@lucent.com>
54552
54553         * m4/largefile.m4: Remove file (now that it's part of autoconf).
54554
54555 2000-06-04  Paul Eggert  <eggert@twinsun.com>
54556
54557         Rewrite largefile configuration so that we don't need to run
54558         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
54559         AC_CANONICAL_HOST in configure.in -- jmm]
54560
54561         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
54562         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
54563         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
54564         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
54565         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
54566         All uses changed.
54567         Instead of inspecting the output of getconf, try to compile the
54568         test program without and with the macro definition.
54569         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
54570         for getconf.  Instead, check for the needed flags by compiling
54571         test programs.
54572
54573 2000-06-04  Paul Eggert  <eggert@twinsun.com>
54574
54575         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
54576
54577 2000-06-04  Jim Meyering  <meyering@lucent.com>
54578
54579         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
54580         SunOS 4.1.4 for which gid_t is an unsigned type.
54581
54582 2000-06-03  Jim Meyering  <meyering@lucent.com>
54583
54584         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
54585         now that autoconf requires that.
54586
54587         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
54588         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
54589         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
54590
54591 2000-06-03  Jim Meyering  <meyering@lucent.com>
54592
54593         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
54594
54595 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
54596
54597         * m4/glibc21.m4: New file.
54598         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
54599
54600 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
54601
54602         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
54603         newer, don't install charset.alias.
54604         * lib/config.charset: Change the Linux/glibc rules so they become empty
54605         on glibc-2.1 or newer.
54606
54607 2000-06-02  Jim Meyering  <meyering@lucent.com>
54608
54609         * lib/mountlist.c: Back out last change.  Instead, do this...
54610         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
54611         me_dummy member using the same `ignore'-testing code.
54612         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
54613         fs_type strings.
54614         From Mark D. Roth.
54615
54616 2000-05-29  Jim Meyering  <meyering@lucent.com>
54617
54618         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
54619         mounts with the `ignore' attribute.  Based on a patch from
54620         Mark D. Roth.
54621
54622 2000-05-28  Jim Meyering  <meyering@lucent.com>
54623
54624         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
54625         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
54626         * m4/stat.m4: Likewise.
54627         * m4/lstat.m4: Likewise.
54628         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
54629
54630         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
54631         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
54632
54633 2000-05-26  Jim Meyering  <meyering@lucent.com>
54634
54635         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
54636
54637 2000-05-24  Jim Meyering  <meyering@lucent.com>
54638
54639         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
54640         autoconf requires that.
54641         * m4/lib-check.m4: Likewise.
54642         * m4/jm-macros.m4: Likewise.
54643         * m4/strftime.m4: Likewise.
54644
54645         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
54646         AC_CHECK_DECLS, now that autoconf requires that.
54647
54648 2000-05-22  Jim Meyering  <meyering@lucent.com>
54649
54650         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
54651         * m4/lstat.m4: Likewise.
54652
54653 2000-05-22  Jim Meyering  <meyering@lucent.com>
54654
54655         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
54656
54657 2000-05-20  Jim Meyering  <meyering@lucent.com>
54658
54659         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
54660         (jm_PREREQ): Use it.
54661
54662 2000-05-18  Jim Meyering  <meyering@lucent.com>
54663
54664         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
54665         back, too, since it may have been modified by allocate_entry.
54666         (hash_delete): Rewrite to use neither the assignment operator
54667         nor the comma operator in an if-expression.
54668
54669 2000-05-15  Paul Eggert  <eggert@twinsun.com>
54670
54671         * lib/closeout.c:
54672         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
54673         Remove; no longer needed.
54674         "quotearg.h": Add include.
54675         (file_name): Do not bother to explicitly initialize to NULL; it's less
54676         efficient on some hosts.
54677         (close_stdout_status): Remove test as to whether stdout was already
54678         closed; it breaks for the case "echo x | sort >&-".
54679         Quote file name colons.
54680         Do not assume that _("write error") lacks format strings.
54681
54682 2000-05-15  Jim Meyering  <meyering@lucent.com>
54683
54684         * lib/version-etc.c (version_etc_copyright): Update the copyright
54685         string used in all --version output.
54686
54687 2000-05-14  Jim Meyering  <meyering@lucent.com>
54688
54689         * lib/closeout.c (close_stdout_set_file_name): New function.
54690         (close_stdout_status): Use new file-scoped global.
54691         Return right away if fstat says the stdout file descriptor is invalid.
54692         * lib/closeout.h (close_stdout_set_file_name): Declare.
54693
54694 2000-05-10  Jim Meyering  <meyering@lucent.com>
54695
54696         * lib/closeout.c [default_exit_status]: New file-scoped variable.
54697         (close_stdout_set_status): New function.
54698         * lib/closeout.h (close_stdout_set_status): Declare.
54699
54700 2000-05-09  Jim Meyering  <meyering@lucent.com>
54701
54702         * m4/gettext.m4: Rename this...
54703         * m4/libintl.m4: ...to this.
54704
54705 2000-05-08  Jim Meyering  <meyering@lucent.com>
54706
54707         * lib/long-options.c: Don't include closeout.h.
54708         (parse_long_options): Don't call close_stdout for --version.
54709
54710 2000-05-06  Paul Eggert  <eggert@twinsun.com>
54711
54712         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
54713         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
54714         2.1.3 bug.  This avoids a clash when files like regex.c define
54715         _GNU_SOURCE.
54716
54717 2000-05-06  Jim Meyering  <meyering@lucent.com>
54718
54719         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
54720         (AC_REPLACE_FUNCS): Add strnlen.
54721
54722         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
54723         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
54724
54725         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
54726         AC_SEARCH_LIBS call for nanosleep.
54727         (LIB_NANOSLEEP): Set and AC_SUBST.
54728
54729 2000-05-06  Jim Meyering  <meyering@lucent.com>
54730
54731         * lib/strnlen.c: Undefine __strnlen and strnlen.
54732         [!weak_alias]: Define __strnlen to strnlen.
54733
54734         * lib/atexit.c: New file, from libiberty.
54735
54736 2000-05-06  Jim Meyering  <meyering@lucent.com>
54737
54738         * lib/closeout.c (close_stdout_status): Also check for errors on the
54739         stderr stream.
54740
54741 2000-05-05  Jim Meyering  <meyering@lucent.com>
54742
54743         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
54744         AC_SEARCH_LIBS call for clock_gettime.
54745         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
54746
54747         * m4/search-libs.m4: Update from autoconf.
54748
54749         su doesn't work on Solaris 2.6.
54750         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
54751         <shadow.h>.  Reported by Dragos Harabor.
54752
54753 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
54754
54755         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
54756         memcpy instead of xmalloc, xrealloc, path_concat.
54757         (locale_charset): Treat empty environment variables as absent.
54758         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
54759
54760 2000-05-04  Jim Meyering  <meyering@lucent.com>
54761
54762         * lib/getopt.c: Update from glibc.
54763         * lib/obstack.c: Likewise.
54764         * lib/obstack.h: Likewise.
54765         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
54766         file
54767
54768         * lib/regex.h: Likewise.
54769         * lib/strndup.c: Likewise.
54770         * lib/strnlen.c: New file, from glibc.
54771
54772 2000-05-03  Jim Meyering  <meyering@lucent.com>
54773
54774         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
54775
54776 2000-05-02  Paul Eggert  <eggert@twinsun.com>
54777
54778         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
54779         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
54780         compile-time test, rather than inspecting host and OS, to
54781         decide whether to define _LARGEFILE_SOURCE.
54782
54783 2000-05-01  Jim Meyering  <meyering@lucent.com>
54784
54785         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
54786
54787         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
54788         Based on a patch from Bruno Haible.
54789
54790 2000-05-01  Jim Meyering  <meyering@lucent.com>
54791
54792         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
54793
54794 2000-04-29  Jim Meyering  <meyering@lucent.com>
54795
54796         * lib/path-concat.c: Declare strdup only if it's not defined.
54797         * lib/canon-host.c: Likewise.
54798
54799 2000-04-28  Jim Meyering  <meyering@lucent.com>
54800
54801         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
54802         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
54803         is included first, then limits.h is included by locale.h by libintl.h.
54804         From John David Anglin.
54805
54806 2000-04-25  Jim Meyering  <meyering@lucent.com>
54807
54808         * lib/makepath.c (S_IRWXUGO): Define.
54809         (make_path): Always perform explicit chmod if MODE specifies any
54810         of the `special' permission bits.  Prompted by a bug report against
54811         install from Mate Wierdl and Joost van Baal.
54812
54813 2000-04-18  Jim Meyering  <meyering@lucent.com>
54814
54815         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
54816         (jm_PREREQ): Use it.
54817
54818 2000-04-18  Jim Meyering  <meyering@lucent.com>
54819
54820         * lib/README: New file.
54821
54822         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
54823         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
54824
54825 2000-04-17  Jim Meyering  <meyering@lucent.com>
54826
54827         Get it right :-)
54828         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
54829         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
54830         Suggestion from Akim Demaille.
54831
54832 2000-04-17  Jim Meyering  <meyering@lucent.com>
54833
54834         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
54835         the definition of it to rpl_strftime also defined-away the system's
54836         declaration.
54837
54838 2000-04-15  Jim Meyering  <meyering@lucent.com>
54839
54840         Use `C' to denote so-called `contiguous' files, the same way
54841         that tar does.
54842         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
54843         (ftypelet): Use S_ISCTG.
54844         From Michael Deutschmann.
54845
54846 2000-04-14  Jim Meyering  <meyering@lucent.com>
54847
54848         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
54849         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
54850         clobbered.
54851
54852 2000-04-14  Jim Meyering  <meyering@lucent.com>
54853
54854         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
54855
54856 2000-04-13  Jim Meyering  <meyering@lucent.com>
54857
54858         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
54859         AH_VERBATIM to insert required #ifndef into config.h.in.
54860         Suggestion from Akim Demaille.
54861
54862 2000-04-12  Jim Meyering  <meyering@lucent.com>
54863
54864         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
54865         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
54866         Christian Krackowizer.
54867
54868         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
54869         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
54870         (AC_SYS_LARGEFILE): Require.
54871         (AM_C_PROTOTYPES): Require.
54872
54873 2000-04-08  Jim Meyering  <meyering@lucent.com>
54874
54875         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
54876         names don't conflict.  Reported by Eli Zaretskii.
54877
54878 2000-04-07  Jim Meyering  <meyering@lucent.com>
54879
54880         * lib/putenv.c: Move inclusion of errno.h so it follows that of
54881         sys/types.h, to work around system header problems on AIX 3.2.5.
54882         From Bruno Haible.
54883
54884 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
54885
54886         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
54887         bug.  Deal with the different error behavior of Irix iconv.
54888
54889 2000-04-05  Paul Eggert  <eggert@twinsun.com>
54890
54891         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
54892         IRIX if the installer said otherwise.
54893
54894 2000-04-05  Jim Meyering  <meyering@lucent.com>
54895
54896         Portability tweaks required for ultrix4.3.
54897         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
54898         (jm_CHECK_DECLS): Add getutent to the list of functions.
54899         (_jm_DECL_HEADERS): Add utmpx.h.
54900         From John David Anglin.
54901
54902         * m4/strftime.m4: Back out the 2000-04-02 change.
54903         Instead of that change, simply undefine putenv in the test program.
54904
54905 2000-04-05  Jim Meyering  <meyering@lucent.com>
54906
54907         Portability tweaks required for ultrix4.3.
54908         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
54909         getutent.
54910         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
54911         * lib/canon-host.c: Declare strdup.
54912         * lib/path-concat.c: Likewise.
54913         From John David Anglin.
54914
54915 2000-04-04  Jim Meyering  <meyering@lucent.com>
54916
54917         Be more DOS 8.3-friendly.
54918         * lib/ref-add.sin: Renamed from ref-add.sed.in.
54919         * lib/ref-del.sin: Renamed from ref-del.sed.in.
54920         * lib/Makefile.am: Reflect renaming.
54921         Reported by Eli Zaretskii.
54922
54923         Use a temporary file name that won't clash with `charset.alias'
54924         in the DOS 8.3 name space.
54925         * lib/Makefile.am (charset_tmp): Define.
54926         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
54927         (uninstall-local): Likewise.
54928         Reported by Eli Zaretskii.
54929
54930 2000-04-03  Jim Meyering  <meyering@lucent.com>
54931
54932         * m4/gettext.m4: Fix typo in comment.
54933
54934         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
54935         textutils/configure.in).  Suggestion from Paul Eggert.
54936         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
54937
54938 2000-04-02  Paul Eggert  <eggert@twinsun.com>
54939
54940         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
54941         variable in the shell rather than using putenv, which isn't
54942         portable.  This avoids the configure-time inter-test dependency
54943         on the potentially-renamed putenv function.
54944
54945 2000-03-30  Paul Eggert  <eggert@twinsun.com>
54946
54947         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
54948         before checking struct stat.st_blksize, so that
54949         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
54950
54951 2000-03-29  Paul Eggert  <eggert@twinsun.com>
54952
54953         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
54954         since strftime.c uses HAVE_STRFTIME to decide whether to use
54955         the underlying strftime.
54956
54957 2000-03-29  Paul Eggert  <eggert@twinsun.com>
54958
54959         * lib/time/strftime.c (my_strftime): Make sure we call the system
54960         strftime, not ourselves, when invoking the underlying strftime.
54961
54962 2000-03-24  Jim Meyering  <meyering@lucent.com>
54963
54964         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
54965         (charset_alias): Define.
54966         (install-exec-local): Factor out common code.
54967         (uninstall-local): Split lines longer than 80.
54968         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
54969         (SUFFIXES): Define.
54970         (.sed.in.sed): New rule.  Don't redirect directly to $@.
54971         (CLEANFILES): Add ref-add.sed and ref-del.sed.
54972
54973 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
54974
54975         * lib/config.charset: Output a line containing "Packages using this
54976         file".
54977         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
54978         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
54979         ref-del.sed): New rules.
54980
54981 2000-03-17  Jim Meyering  <meyering@lucent.com>
54982
54983         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
54984         Otherwise, include <strings.h>
54985
54986 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
54987
54988         * lib/unicodeio.c (utf8_wctomb): New function.
54989         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
54990         format instead of in UCS-4 with platform dependent endianness.
54991
54992 2000-03-10  Jim Meyering  <meyering@lucent.com>
54993
54994         * m4/lib-check.m4: Look for getspnam in -lgen, too.
54995         From Marco Franzen.
54996
54997 2000-03-07  Paul Eggert  <eggert@twinsun.com>
54998
54999         * lib/savedir.c (savedir): Work even if directory size is
55000         negative; this can happen with some screwy NFS configurations.
55001
55002 2000-03-06  Jim Meyering  <meyering@lucent.com>
55003
55004         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
55005         if it's NULL (because we ran out of memory).  From Bruno Haible.
55006
55007 2000-03-05  Jim Meyering  <meyering@lucent.com>
55008
55009         * lib/localcharset.c ("path-concat.h"): Include.
55010         (get_charset_aliases): Use path_concat instead of ANSI string
55011         concatenation.
55012
55013         * lib/unicodeio.h (PARAMS): Define.
55014         Use it to guard prototype.
55015
55016 2000-03-04  Jim Meyering  <meyering@lucent.com>
55017
55018         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
55019         for lib/localcharset.c.
55020
55021 2000-03-04  Jim Meyering  <meyering@lucent.com>
55022
55023         * lib/Makefile.am (install-exec-local): Create $(libdir) before
55024         installing into it.
55025         (uninstall-local): Uncomment this rule so `make distcheck' works
55026         once again.
55027
55028         * lib/unicodeio.c (<errno.h>): Include it.
55029         (errno): Declare if not defined.
55030
55031         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
55032
55033         * lib/config.charset: New version, incorporating remarks from a linux
55034         i18n mailing list.  From Bruno Haible.
55035
55036 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
55037
55038         * m4/codeset.m4: New file.
55039         * m4/iconv.m4: New file.
55040         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
55041
55042 2000-03-03  Jim Meyering  <meyering@lucent.com>
55043
55044         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
55045
55046 2000-03-02  Jim Meyering  <meyering@lucent.com>
55047
55048         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
55049         the messages come out on separate lines.
55050
55051         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
55052         rather than jm_CHECK_DECLARATIONS.
55053         * m4/decl.m4: Remove now-unused file.
55054
55055         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
55056         geteuid.
55057
55058 2000-03-02  Jim Meyering  <meyering@lucent.com>
55059
55060         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
55061
55062 2000-03-01  Jim Meyering  <meyering@lucent.com>
55063
55064         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
55065         * lib/unicodeio.c: Likewise.
55066
55067 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
55068
55069         * lib/config.charset: New file.
55070         * lib/localcharset.c: New file.
55071         * lib/unicodeio.h, lib/unicodeio.c: New files.
55072         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
55073         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
55074         (noinst_HEADERS): Add unicodeio.h.
55075         (all-local, install-exec-local, charset.alias): New targets.
55076
55077 2000-02-28  Paul Eggert  <eggert@twinsun.com>
55078
55079         * lib/quotearg.c (ALERT_CHAR): New macro.
55080         (quotearg_buffer_restyled): Use it.
55081
55082 2000-02-27  Jim Meyering  <meyering@lucent.com>
55083
55084         * m4/check-decl.m4: Add getenv to the list.
55085
55086 2000-02-27  Jim Meyering  <meyering@lucent.com>
55087
55088         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
55089         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
55090
55091         * lib/backupfile.c: Guard inclusion of stdlib.h with
55092         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
55093         Declare malloc if needed.
55094
55095         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
55096         `#ifndef HAVE_DECL..'
55097         now that autoconf always defines the HAVE_DECL_ symbols.
55098         * lib/human.c: Likewise.
55099         * lib/same.c: Likewise.
55100         * lib/strtoumax.c: Likewise.
55101
55102         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
55103         declaration check was not run.
55104         * lib/hash.c: Likewise.
55105         * lib/human.c: Likewise.
55106         * lib/same.c: Likewise.
55107         * lib/strtoumax.c: Likewise.
55108
55109         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
55110         `.', then first look up the entire `.'-containing string as a login
55111         name.
55112
55113 2000-02-23  Jim Meyering  <meyering@lucent.com>
55114
55115         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
55116         in place of my hack.
55117
55118 2000-02-18  Paul Eggert  <eggert@twinsun.com>
55119
55120         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
55121         (textint): New typedef.
55122         (parser_control): Member year changed from int to textint.
55123         All uses changed.
55124         (YYSTYPE): Removed; replaced by %union with int and textint members.
55125         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
55126         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
55127         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
55128         (tSNUMBER, tUNUMBER): Now of type <textintval>.
55129         (date, number, to_year): Use width of number in digits, not its value,
55130         to determine whether it's a 2-digit year, or a 2-digit time.
55131         (yylex): Store number of digits of numeric tokens.
55132         Reported by John Kendall.
55133
55134         (parser_control): Changed from struct parser_control to typedef (for
55135         consistency).  All uses changed.
55136
55137         (tID): Removed; not used.
55138         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
55139
55140 2000-02-14  Paul Eggert  <eggert@twinsun.com>
55141
55142         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
55143         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
55144
55145 2000-02-12  Jim Meyering  <meyering@lucent.com>
55146
55147         * lib/userspec.c (ISDIGIT): Define it.
55148         (isdigit): Remove definition.
55149         (is_number): Use ISDIGIT, not isdigit.
55150         <libintl.h>: Include.
55151         (_ and N_): Define.
55152         (parse_user_spec): Mark translatable strings.
55153
55154 2000-02-10  Jim Meyering  <meyering@lucent.com>
55155
55156         With these changes, nanosleep.[ch] are finally enough like the other
55157         lib/* replacement files to compile on a few more losing systems.
55158
55159         * lib/nanosleep.h: Don't include config.h.
55160         Remove prototype from declaration of nanosleep.
55161         (PARAMS): Remove now-unneeded definition.
55162         * lib/nanosleep.c: #undef nanosleep.
55163         (rpl_nanosleep): Rename from nanosleep.
55164
55165 2000-02-10  Jim Meyering  <meyering@lucent.com>
55166
55167         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
55168         gnu_nanosleep to rpl_nanosleep.
55169
55170 2000-02-09  Jim Meyering  <meyering@lucent.com>
55171
55172         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
55173         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
55174
55175 2000-02-08  Akim Demaille  <akim@epita.fr>
55176
55177         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
55178         `[' and `]' and remove uses of `changequote'.
55179         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
55180         (AC_SYS_LARGEFILE): Likewise.
55181         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
55182         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
55183         of changequote.
55184         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
55185         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
55186         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
55187         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
55188
55189 2000-02-05  Jim Meyering  <meyering@lucent.com>
55190
55191         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
55192         Remove explicit use of AC_HEADER_TIME.  It is required by
55193         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
55194         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
55195         in autoconf whereby the expansion of the latter ended up preceding
55196         the expansion of its prerequisite, AC_HEADER_TIME.
55197         Reported by Volker Borchert.
55198
55199 2000-02-03  Jim Meyering  <meyering@lucent.com>
55200
55201         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
55202
55203 2000-02-03  Jim Meyering  <meyering@lucent.com>
55204
55205         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
55206         rather than with `#if HAVE_UTMPNAME'.
55207
55208 2000-02-02  Jim Meyering  <meyering@lucent.com>
55209
55210         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
55211         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
55212         Reported by Eli Zaretskii.
55213
55214 2000-02-01  Jim Meyering  <meyering@lucent.com>
55215
55216         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
55217
55218 2000-01-31  Jim Meyering  <meyering@lucent.com>
55219
55220         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
55221         functions.  Add the time.h and sys/time.h headers along with the
55222         AC_REQUIRE'ment of AC_HEADER_TIME.
55223
55224 2000-01-31  Jim Meyering  <meyering@lucent.com>
55225
55226         * lib/nanosleep.h (nanosleep): Guard declaration with
55227         `#if ! HAVE_DECL_NANOSLEEP'.
55228         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
55229         the declaration in that vendor's sys/timers.h.
55230         Reported by Christian Krackowizer.
55231
55232         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
55233         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
55234         (ISPRINT): Likewise.
55235         Reported by Tom Tromey.
55236
55237 2000-01-30  Jim Meyering  <meyering@lucent.com>
55238
55239         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
55240
55241         * m4/prereq.m4 (utmp_includes): Define.
55242         Check for ut_user and ut_name members in both struct utmpx
55243         and struct utmp.
55244
55245 2000-01-30  Jim Meyering  <meyering@lucent.com>
55246
55247         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
55248         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
55249         header files where only utmpx.ut_user is declared.
55250
55251         * lib/readutmp.h (UT_USER): Define.
55252
55253 2000-01-29  Jim Meyering  <meyering@lucent.com>
55254
55255         * m4/lib-check.m4: New file containing library-related checks from
55256         fileutils and sh-utils (textutils had none).
55257
55258 2000-01-28  Jim Meyering  <meyering@lucent.com>
55259
55260         * m4/perl.m4: Change format of warning message to look more like that
55261         from the missing script.  Suggestion from François Pinard.
55262
55263 2000-01-25  Jim Meyering  <meyering@lucent.com>
55264
55265         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
55266         well as time.h in the compile check.
55267         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
55268         Fix typo in cross-compiling case: s/yes/no/.
55269
55270 2000-01-23  Jim Meyering  <meyering@lucent.com>
55271
55272         * m4/jm-macros.m4: Move df-related tests here from
55273         fileutils/configure.in
55274
55275         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
55276         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
55277
55278         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
55279         s/space/ac_fsusage_space/.
55280         (jm_FILE_SYSTEM_USAGE): Take two parameters.
55281
55282         * m4/ftruncate.m4: New file (derived from part of
55283         fileutils/configure.in).
55284         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
55285         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
55286
55287         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
55288         AC_SUBST these here, rather than just in sh-util/configure.in, so
55289         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
55290         all the same.
55291         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
55292         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
55293         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
55294         (AC_SUBST(POW_LIBM)): Likewise.
55295         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
55296
55297 2000-01-23  Jim Meyering  <meyering@lucent.com>
55298
55299         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
55300         obstack.c.
55301
55302 2000-01-22  Jim Meyering  <meyering@lucent.com>
55303
55304         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
55305
55306         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
55307
55308         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
55309         configure.in
55310         (AC_CHECK_HEADERS): Likewise for sh-utils.
55311         (AC_CHECK_HEADERS): Likewise for textutils.
55312         Merge the three lists of headers.
55313
55314         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
55315         from fileutils' configure.in.
55316
55317         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
55318         code. Moved tests into their own function (_jm_DECL_HEADERS) in
55319         check-decl.m4.
55320
55321         * m4/check-decl.m4: Use #if rather than #ifdef.
55322         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
55323         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
55324         (_jm_DECL_HEADERS): Define new function.
55325         (jm_CHECK_DECLARATIONS): Require it.
55326
55327 2000-01-22  Jim Meyering  <meyering@lucent.com>
55328
55329         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
55330         [! HAVE_DECL_STRTOULL]: Declare strtoull.
55331         Required for some AIX systems.  Reported by Christian Krackowizer.
55332         [TESTING] (main): New function.
55333
55334         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
55335         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
55336         letters.
55337
55338         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
55339         iswprint.
55340
55341         * lib/strverscmp.c (ISDIGIT): Define.
55342         (strverscmp): Use ISDIGIT, not isdigit.
55343
55344 2000-01-19  Jim Meyering  <meyering@lucent.com>
55345
55346         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
55347         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
55348         defines `struct timespec' in <sys/time.h>
55349
55350         * m4/c-bs-a.m4: Remove uses of changequote altogether.
55351         Thanks to Akim for explaining.
55352
55353 2000-01-17  Paul Eggert  <eggert@twinsun.com>
55354
55355         * lib/nanosleep.c (nanosleep):
55356         Don't use SA_INTERRUPT to decide whether to call sigaction, as
55357         POSIX.1 doesn't require SA_INTERRUPT and some systems
55358         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
55359         it's been part of POSIX.1 since day 1 (in 1988).
55360
55361 2000-01-17  Jim Meyering  <meyering@lucent.com>
55362
55363         * lib/interlock: Remove unused file.  Reported by François Pinard.
55364
55365 2000-01-16  Paul Eggert  <eggert@twinsun.com>
55366
55367         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
55368         alert, backslash, formfeed, and vertical tab unnecessarily in
55369         shell quoting style.
55370
55371 2000-01-16  Jim Meyering  <meyering@lucent.com>
55372
55373         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
55374         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
55375         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
55376         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
55377
55378 2000-01-16  Jim Meyering  <meyering@lucent.com>
55379
55380         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
55381         because the latter didn't work.
55382
55383 2000-01-15  Jim Meyering  <meyering@lucent.com>
55384
55385         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
55386         (AC_REPLACE_FUNCS): Add memcpy and memset.
55387         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
55388         Add strpbrk.
55389         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
55390
55391 2000-01-12  Jim Meyering  <meyering@lucent.com>
55392
55393         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
55394         (jm_PREREQ): Use it.
55395         (jm_PREREQ_READUTMP): New macro.
55396         (jm_PREREQ): Use it.
55397
55398 2000-01-11  Paul Eggert  <eggert@twinsun.com>
55399
55400         Quote multibyte characters correctly.
55401         * m4/c-bs-a.m4: New file.
55402         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
55403         (jm_PREREQ): Use it.
55404
55405 2000-01-11  Paul Eggert  <eggert@twinsun.com>
55406
55407         * m4/uintmax_t.m4: Port to autoconf 2.13.
55408
55409 2000-01-08  Jim Meyering  <meyering@ascend.com>
55410
55411         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
55412         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
55413
55414 2000-01-04  Jim Meyering  <meyering@ascend.com>
55415
55416         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
55417         jm_STRUCT_DIRENT_D_TYPE.
55418         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
55419         jm_STRUCT_DIRENT_D_INO.
55420         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
55421         jm_STRUCT_UTIMBUF.
55422         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
55423         renamings.
55424         * m4/utime.m4: Likewise.
55425
55426         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
55427         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
55428
55429 2000-01-03  Paul Eggert  <eggert@twinsun.com>
55430
55431         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
55432         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
55433
55434 2000-01-02  Jim Meyering  <meyering@ascend.com>
55435
55436         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
55437         remember if this is necessary.
55438
55439 1999-12-26  Jim Meyering  <meyering@ascend.com>
55440
55441         * m4/jm-macros.m4: Use it here.
55442         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
55443
55444 1999-12-23  Jim Meyering  <meyering@ascend.com>
55445
55446         * m4/jm-macros.m4: Check for clock_gettime (moved from
55447         fileutils/configure.in)
55448         Check for gettimeofday.
55449
55450 1999-12-20  Jim Meyering  <meyering@ascend.com>
55451
55452         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
55453         autoconf-2.14a-1999-12-20.
55454
55455 1999-12-19  Jim Meyering  <meyering@ascend.com>
55456
55457         * m4/lstat-slash.m4: New file.
55458         * m4/jm-macros.m4: Use the new macro:
55459         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
55460
55461 1999-12-07  Jim Meyering  <meyering@ascend.com>
55462
55463         * m4/perl.m4: Require that File::Compare be available, too.
55464         Too many systems seem to lack it.
55465
55466         * m4/strftime.m4: Add checks for most of the cpp macros tested in
55467         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
55468
55469 1999-11-18  Paul Eggert  <eggert@twinsun.com>
55470
55471         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
55472         problem with the QNX 4.25 shell, which doesn't propagate exit
55473         status of failed commands inside shell assignments.
55474
55475 1999-11-17  Jim Meyering  <meyering@ascend.com>
55476
55477         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
55478
55479 1999-11-07  Jim Meyering  <meyering@ascend.com>
55480
55481         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
55482
55483 1999-11-06  Jim Meyering  <meyering@ascend.com>
55484
55485         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
55486         * m4/jm-macros.m4 (jm_MACROS): Use it here.
55487
55488 1999-11-05  Jim Meyering  <meyering@ascend.com>
55489
55490         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
55491         configure.in of textutils, fileutils, and sh-utils into this one
55492         (shared between those packages) file.
55493         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
55494         AC_STRUCT_ST_BLKSIZE.
55495
55496 1999-11-03  Jim Meyering  <meyering@ascend.com>
55497
55498         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
55499         of AC_CHECK_TYPE checks includes unistd.h.
55500         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
55501         Suggestion from Akim Demaille.
55502
55503 1999-10-30  Jim Meyering  <meyering@ascend.com>
55504
55505         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
55506         m4-quoted string.
55507         * m4/ls-mntd-fs.m4: Likewise.
55508         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
55509         * m4/jm-winsz1.m4: Likewise.
55510
55511         * m4/const.m4: Remove file, since the fix made it into the experimental
55512         version of autoconf.
55513         * m4/mktime.m4: Likewise.
55514
55515         * m4/check-type.m4: Remove file, now that the latest version of
55516         AC_CHECK_TYPE takes a third arg to specify additional #includes.
55517
55518         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
55519         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
55520         AC_CHECK_TYPE.
55521
55522 1999-10-04  Jim Meyering  <meyering@ascend.com>
55523
55524         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
55525
55526 1999-09-22  Paul Eggert  <eggert@twinsun.com>
55527
55528         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
55529         2.95.1 bug with HP-UX 10.20.
55530
55531 1999-09-17  Jim Meyering  <meyering@ascend.com>
55532
55533         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
55534         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
55535         due to missing strdup (against sh-utils-2.0).
55536
55537 1999-08-29  Jim Meyering  <meyering@ascend.com>
55538
55539         * m4/jm-macros.m4: Require jm_BISON.
55540         * m4/bison.m4: New file.
55541
55542 1999-08-17  Paul Eggert  <eggert@twinsun.com>
55543
55544         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
55545         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
55546
55547 1999-08-05  Jim Meyering  <meyering@ascend.com>
55548
55549         * m4/getline.m4: Rename test file from conftestdata to conftest.data
55550         to avoid conflicts with `conftest' on 8+3 filesystems.
55551         Suggestion from Eli Zaretskii.
55552
55553 1999-08-04  Jim Meyering  <meyering@ascend.com>
55554
55555         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
55556         fileutils and sh-utils (textutils's getline test was inadequate).
55557         (AM_FUNC_GETLINE): Run this test.
55558         (AC_CHECK_FUNCS): Check for getdelim.
55559         Reported by Bob Proulx.
55560
55561 1999-08-02  Jim Meyering  <meyering@ascend.com>
55562
55563         * m4/jm-macros.m4: Add a comment.
55564
55565 1999-08-01  Paul Eggert  <eggert@twinsun.com>
55566
55567         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
55568         <inttypes.h> defines strtoumax as a macro (and not as a
55569         function).
55570
55571 1999-08-01  Paul Eggert  <eggert@twinsun.com>
55572
55573         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
55574         that we can shift, multiply and divide unsigned long long
55575         values; Ultrix cc can't do it.
55576
55577 1999-08-01  Paul Eggert  <eggert@twinsun.com>
55578
55579         * m4/mktime.m4: New file, which is a preview of what should appear
55580         in the next public autoconf release.
55581
55582 1999-08-01  Paul Eggert  <eggert@twinsun.com>
55583
55584         * m4/lfs.m4: Remove this file.
55585         * m4/largefile.m4: New file.  It contains the old contents of
55586         lfs.m4, except that all names with prefix AC_LFS have been
55587         changed to use the prefix AC_SYS_LARGEFILE instead, to be
55588         compatible with future autoconf versions.  Also, some minor m4
55589         quoting problems have been fixed.
55590
55591 1999-08-01  Paul Eggert  <eggert@twinsun.com>
55592
55593         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
55594         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
55595         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
55596         and simplify the shell code.
55597
55598 1999-08-01  Jim Meyering  <meyering@ascend.com>
55599
55600         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
55601         m4.
55602
55603 1999-07-20  Jim Meyering  <meyering@ascend.com>
55604
55605         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
55606
55607 1999-07-15  Jim Meyering  <meyering@ascend.com>
55608
55609         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
55610
55611 1999-05-22  Jim Meyering  <meyering@ascend.com>
55612
55613         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
55614
55615 1999-05-20  Jim Meyering  <meyering@ascend.com>
55616
55617         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
55618         Add a colon after each `then' in case $4 is empty.
55619
55620 1999-05-16  Jim Meyering  <meyering@ascend.com>
55621
55622         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
55623
55624 1999-05-10  Jim Meyering  <meyering@ascend.com>
55625
55626         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
55627
55628         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
55629         AC_FUNC_MKTIME.
55630
55631 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
55632
55633         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
55634
55635 1999-05-04  Paul Eggert  <eggert@twinsun.com>
55636
55637         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
55638         not CPPFLAGS, so that linking works correctly in IRIX.
55639
55640 1999-04-30  Paul Eggert  <eggert@twinsun.com>
55641
55642         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
55643
55644 1999-04-20  Paul Eggert  <eggert@twinsun.com>
55645
55646         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
55647         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
55648         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
55649         jm_AC_TYPE_UNSIGNED_LONG_LONG.
55650         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
55651
55652         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
55653
55654 1999-04-20  Jim Meyering  <meyering@ascend.com>
55655
55656         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
55657         AC_REPLACE xstroull if necessary.  From Paul Eggert.
55658         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
55659
55660 1999-04-18  Jim Meyering  <meyering@ascend.com>
55661
55662         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
55663         * m4/jm-macros.m4: Use it.
55664
55665 1999-04-06  Jim Meyering  <meyering@ascend.com>
55666
55667         * m4/strftime.m4: Remove test for %f.
55668
55669 1999-03-29  Jim Meyering  <meyering@ascend.com>
55670
55671         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
55672         superset of the AC_TYPE_* checks in the textutils, fileutils,
55673         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
55674         AC_TYPE_PID_T.
55675
55676 1999-03-28  Jim Meyering  <meyering@ascend.com>
55677
55678         * m4/jm-macros.m4: Define GNU_PACKAGE here.
55679         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
55680         replaced e.g., in the *.sh files of the sh-utils.
55681
55682 1999-03-20  Jim Meyering  <meyering@ascend.com>
55683
55684         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
55685         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
55686         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
55687
55688 1999-03-19  Jim Meyering  <meyering@ascend.com>
55689
55690         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
55691
55692 1999-03-12  Jim Meyering  <meyering@ascend.com>
55693
55694         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
55695
55696 1999-03-07  Jim Meyering  <meyering@ascend.com>
55697
55698         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
55699         declared.
55700
55701 1999-02-17  Jim Meyering  <meyering@ascend.com>
55702
55703         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
55704         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
55705
55706 1999-02-07  Jim Meyering  <meyering@ascend.com>
55707
55708         * m4/group-member.m4: New file -- extracted from sh-utils'
55709         configure.in.
55710
55711         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
55712         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
55713
55714 1999-02-06  Jim Meyering  <meyering@ascend.com>
55715
55716         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
55717         * m4/fnmatch.m4: Likewise.
55718         * m4/getgroups.m4: Likewise.
55719         * m4/lstat.m4: Likewise.
55720         * m4/malloc.m4: Likewise.
55721         * m4/putenv.m4: Likewise.
55722         * m4/realloc.m4: Likewise.
55723         * m4/regex.m4: Likewise.
55724         * m4/stat.m4: Likewise.
55725         * m4/strftime.m4: Likewise.
55726         Suggestion from Alain Magloire.
55727
55728         * m4/chown.m4: Use `.$ac_objext', not `.o'.
55729         * m4/fnmatch.m4: Likewise.
55730         * m4/getgroups.m4: Likewise.
55731         * m4/getline.m4: Likewise.
55732         * m4/lstat.m4: Likewise.
55733         * m4/malloc.m4: Likewise.
55734         * m4/memcmp.m4: Likewise.
55735         * m4/putenv.m4: Likewise.
55736         * m4/realloc.m4: Likewise.
55737         * m4/regex.m4: Likewise.
55738         * m4/stat.m4: Likewise.
55739         * m4/strftime.m4: Likewise.
55740         Suggestion from Alain Magloire.
55741
55742         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
55743         an argument.
55744
55745         * m4/regex.m4: Add a run-time Test for proper operation of
55746         re_compile_pattern.
55747
55748 1999-01-31  Jim Meyering  <meyering@ascend.com>
55749
55750         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
55751
55752 1999-01-30  Jim Meyering  <meyering@ascend.com>
55753
55754         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
55755
55756         * m4/jm-mktime.m4: Make this a wrapper around the official
55757         AM_FUNC_MKTIME rather than my private copy, now that the official one
55758         is up to date.
55759         * m4/mktime.m4: Remove file.
55760
55761         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
55762         * m4/uptime.m4: Likewise.
55763         * m4/uintmax_t.m4: Likewise.
55764
55765 1999-01-28  Jim Meyering  <meyering@ascend.com>
55766
55767         * m4/jm-macros.m4: Use jm_AFS.
55768         * m4/afs.m4: New file (from fileutils' configure.in).
55769
55770         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
55771         * m4/chown.m4: Likewise.
55772         * m4/d-ino.m4: Likewise.
55773         * m4/d-type.m4: Likewise.
55774         * m4/fnmatch.m4: Likewise.
55775         * m4/getgroups.m4: Likewise.
55776         * m4/gettext.m4: Likewise.
55777         * m4/jm-mktime.m4: Likewise.
55778         * m4/jm-winsz2.m4: Likewise.
55779         * m4/lcmessage.m4: Likewise.
55780         * m4/ls-mntd-fs.m4: Likewise.
55781         * m4/malloc.m4: Likewise.
55782         * m4/memcmp.m4: Likewise.
55783         * m4/putenv.m4: Likewise.
55784         * m4/realloc.m4: Likewise.
55785         * m4/st_mtim.m4: Likewise.
55786         * m4/strftime.m4: Likewise.
55787
55788 1999-01-16  Jim Meyering  <meyering@ascend.com>
55789
55790         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
55791         (ARGMATCH_DIE_DECL): Define.
55792
55793 1999-01-12  Jim Meyering  <meyering@ascend.com>
55794
55795         * m4/Makefile.am.in: Rewrite to avoid using fmt.
55796         Reported by Lars Hecking.
55797
55798 1999-01-10  Jim Meyering  <meyering@ascend.com>
55799
55800         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
55801         gross kludge.
55802         * m4/inttypes_h.m4: Likewise.
55803         * m4/lstat.m4: Likewise.
55804         * m4/malloc.m4: Likewise.
55805         * m4/readdir.m4: Likewise.
55806         * m4/realloc.m4: Likewise.
55807         * m4/st_dm_mode.m4: Likewise.
55808         * m4/stat.m4: Likewise.
55809         * m4/utimbuf.m4: Likewise.
55810         * m4/utimes.m4: Likewise.
55811
55812         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
55813         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
55814         comments in config.h.in are meaningful.
55815
55816         * m4/jm-macros.m4: Require autoconf-2.13 here.
55817
55818         * m4/regex.m4: By default, don't use the included regex.c on systems
55819         with glibc 2.  Suggestion from Uli Drepper.
55820
55821 1999-01-02  Jim Meyering  <meyering@ascend.com>
55822
55823         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
55824
55825 1998-12-18  Jim Meyering  <meyering@ascend.com>
55826
55827         * m4/Makefile.am.in (Makefile.am): Simplify rule.
55828         Based on a suggestion from Lars Hecking.
55829
55830 1998-11-16  Paul Eggert  <eggert@twinsun.com>
55831
55832         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
55833
55834 1998-11-16  Jim Meyering  <meyering@ascend.com>
55835
55836         * m4/lfs.m4: Double-quote the `uname...` expression.
55837
55838 1998-11-14  Jim Meyering  <meyering@ascend.com>
55839
55840         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
55841         * m4/stat.m4: Likewise.
55842
55843 1998-11-03  Jim Meyering  <meyering@ascend.com>
55844
55845         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
55846         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
55847
55848 1998-10-18  Jim Meyering  <meyering@ascend.com>
55849
55850         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
55851
55852 1998-10-17  Jim Meyering  <meyering@ascend.com>
55853
55854         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
55855         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
55856         calls for those previously hard-coded headers.  Instead, take a new
55857         parameter.
55858         (jm_CHECK_DECLARATIONS): Reflect interface change.
55859         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
55860         (jm_CHECK_DECL_LOCALTIME_R): New macro.
55861
55862         * m4/mktime.m4: Test for spring-forward gap before long-running test.
55863
55864 1998-10-14  Jim Meyering  <meyering@ascend.com>
55865
55866         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
55867         instead of "TZ=America/Vancouver".  From Paul Eggert.
55868
55869 1998-10-11  Jim Meyering  <meyering@ascend.com>
55870
55871         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
55872         This adds a test for a recently added compatibility fix for mktime.c.
55873         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
55874
55875 1998-09-27  Jim Meyering  <meyering@ascend.com>
55876
55877         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
55878
55879         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
55880         ../configure.in, including a change from Gordon Matzigkeit to allow
55881         cross-compiling for the Hurd.
55882
55883         * m4/glibc.m4: New file/macro to test for the GNU C Library
55884         versions 1 and 2.  From Gordon Matzigkeit.
55885         Indent.
55886
55887 1998-09-21  Jim Meyering  <meyering@ascend.com>
55888
55889         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
55890
55891 1998-08-18  Paul Eggert  <eggert@twinsun.com>
55892
55893         Port nanosecond-resolution times to UnixWare 2.1.2 and
55894         pedantic Solaris 2.6.
55895
55896         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
55897         AC_STRUCT_ST_MTIM.
55898         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
55899         Generate name of ns member, instead of just 1 or undef.
55900         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
55901
55902 1998-08-15  Jim Meyering  <meyering@ascend.com>
55903
55904         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
55905         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
55906         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
55907         instead of jm_TYPE_SSIZE_T.
55908
55909 1998-08-12  Jim Meyering  <meyering@ascend.com>
55910
55911         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
55912
55913 1998-08-02  Jim Meyering  <meyering@ascend.com>
55914
55915         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
55916         in acconfig.h manually.
55917
55918 1998-07-31  Paul Eggert  <eggert@twinsun.com>
55919
55920         * m4/st_mtim.m4: New file.
55921
55922 1998-07-28  Jim Meyering  <meyering@ascend.com>
55923
55924         * m4/utimes.m4: Undef stat.
55925
55926 1998-07-25  Jim Meyering  <meyering@ascend.com>
55927
55928         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
55929         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
55930
55931 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
55932
55933         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
55934         uid and gid actually remain unchanged.
55935
55936 1998-07-07  Jim Meyering  <meyering@ascend.com>
55937
55938         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
55939
55940 1998-07-04  Jim Meyering  <meyering@ascend.com>
55941
55942         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
55943         to prove that this macro can be used in packages without regex.c.
55944
55945 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
55946
55947         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
55948         is to be used.
55949
55950 1998-07-03  Jim Meyering  <meyering@ascend.com>
55951
55952         * m4/gettext.m4: Add -lintl if it's found to be necessary.
55953
55954         * m4/gettext.m4: New file -- from gettext-0.10.35.
55955         * m4/lcmessage.m4: Likewise.
55956         * m4/progtest.m4: Likewise.
55957
55958         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
55959         * m4/jm-macros.m4: Require the new macro.
55960
55961 1998-06-29  Jim Meyering  <meyering@ascend.com>
55962
55963         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
55964         for the definition of NGROUPS (used in a system header included
55965         by sys/mount.h).
55966
55967 1998-06-28  Jim Meyering  <meyering@ascend.com>
55968
55969         * m4/ls-mntd-fs.m4: New file.
55970         * m4/fstypename.m4: New file.
55971
55972         * m4/jm-macros.m4: Require the new macro.
55973         * m4/jm-glibc-io.m4: New file.
55974
55975 1998-05-19  Jim Meyering  <meyering@ascend.com>
55976
55977         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
55978         * m4/lchown.m4: New file.
55979
55980         * m4/Makefile.am.in: New file.
55981         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
55982
55983 1998-05-14  Jim Meyering  <meyering@ascend.com>
55984
55985         * m4/Makefile.am (EXTRA_DIST): Add them.
55986         * m4/jm-macros.m4: New file.
55987         * m4/utimbuf.m4: New file.
55988
55989 1998-05-12  Jim Meyering  <meyering@ascend.com>
55990
55991         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
55992
55993 1998-05-11  Jim Meyering  <meyering@ascend.com>
55994
55995         * m4/isc-posix.m4: New file.
55996
55997 1998-05-10  Jim Meyering  <meyering@ascend.com>
55998
55999         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
56000
56001 1998-05-09  Jim Meyering  <meyering@ascend.com>
56002
56003         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
56004         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
56005         with automake.
56006
56007         * m4/ssize_t.m4: New file.
56008         * m4/mktime.m4: Remove file -- the new automake has this now.
56009
56010 1998-04-26  Jim Meyering  <meyering@ascend.com>
56011
56012         * m4/assert.m4: New file.
56013         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
56014
56015 1998-04-05  Jim Meyering  <meyering@ascend.com>
56016
56017         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
56018         (jm_PREREQ): Use it here.
56019
56020 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
56021
56022         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
56023         in acconfig.h.
56024
56025 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
56026
56027         * m4/prereq.m4: New file.
56028         * m4/error.m4: New file.
56029         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
56030
56031 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
56032
56033         * m4/getline.m4: Don't set am_cv_func_working_getline before the
56034         cache-check for the same variable -- that defeated the purpose of
56035         the test; the test program was never run.  This was a problem only
56036         on systems with losing getline functions -- HP-UX 10.20 is one.
56037         Reported by Bjorn Helgaas.
56038
56039 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
56040
56041         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
56042
56043 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
56044
56045         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
56046
56047         * m4/const.m4: New file.  Use an initializer in this declaration
56048         typedef int charset[2]; const charset x;
56049         Reported by Bob Glickstein.
56050
56051 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
56052
56053         * m4/chown.m4: Fix reversed types on -1 args to chown.
56054         From Kaveh Ghazi.
56055
56056 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
56057
56058         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
56059         Add lseek and memchr.
56060
56061         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
56062         T.E.Dickey <dickey@clark.net> said that some older preprocessors
56063         have a 20-character limit on names.
56064
56065 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
56066
56067         * m4/inttypes_h.m4: New file.
56068         * m4/uintmax_t.m4: New file.
56069         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
56070
56071
56072         -----
56073
56074         Local Variables:
56075         coding: utf-8
56076         End:
56077
56078         Copyright (C) 1997-2009 Free Software Foundation, Inc.
56079
56080         Copying and distribution of this file, with or without
56081         modification, are permitted provided the copyright notice
56082         and this notice are preserved.