Don't use poll() on MacOS X 10.4.
[gnulib.git] / m4 / ChangeLog
1 2005-06-01  Bruno Haible  <bruno@clisp.org>
2
3         * poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
4         When using lib/poll.c, define poll as rpl_poll.
5
6 2005-07-14  Bruno Haible  <bruno@clisp.org>
7
8         * argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
9         Instead, test for *_unlocked function declarations directly.
10
11 2005-07-14  Derek Price  <derek@ximbiot.com>
12
13         * glob.m4 (gl_GLOB): Cache glob interface check result.  Add check for
14         glob symlink bug.
15
16 2005-07-10  Bruno Haible  <bruno@clisp.org>
17
18         * size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
19         Needed when size_t is smaller than 'unsigned int'.
20         Reported by Paul Eggert.
21
22 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
23
24         * backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on pathconf.
25         * same.m4 (gl_SAME): Likewise.
26         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
27
28         * regex.m4: Adjust to new libc regex implementation.
29         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
30         all the .c and .h parts of (the new) regex.
31         Quote the m4 stuff better.
32         Check for RE_ICASE bug of old gnulib.
33         Check for REG_STARTEND of recent libc.
34         Rename local variables from jm_* to gl_*.
35         Quote operand of "test -f".
36         Say "recent enough" version of libc, not "version 2".
37         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
38         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
39         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
40         Remove check for btowc, isascii.
41         Require AM_LANGINFO_CODESET.
42
43 2005-07-05  Bruno Haible  <bruno@clisp.org>
44
45         * mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
46         autoconf CVS. Needed for mingw.
47
48 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
49
50         Remove the dependency of the strftime module on the tzset module.
51         * strftime.m4 (gl_FUNC_STRFTIME): Don't require gl_FUNC_TZSET_CLOBBER.
52
53 2005-07-02  Jim Meyering  <jim@meyering.net>
54
55         * chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
56         * getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
57         * pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
58         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
59
60 2005-06-28  Simon Josefsson  <jas@extundo.com>
61
62         * check-version.m4: New file, suggested by Jim Meyering
63         <jim@meyering.net>.
64
65 2005-06-24  Derek Price  <derek@ximbiot.com>
66         and Bruno Haible  <bruno@clisp.org>
67
68         Remove stat module & update lstat.
69         * lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
70         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
71         * stat.m4: Remove this file.
72
73 2005-06-20  Derek Price  <derek@ximbiot.com>
74
75         * bison.m4: Note that precious decls of YACC & YFLAGS will be
76         unnecessary for Autoconfs > 2.59c.
77
78 2005-06-16  Derek Price  <derek@ximbiot.com>
79
80         * bison.m4: Declare YACC & YFLAGS precious.
81
82 2005-06-08  Bruno Haible  <bruno@clisp.org>
83
84         * csharpcomp.m4: New file, from GNU gettext.
85
86 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
87
88         Sync from coreutils.
89         * mkdir-p.m4: Renamed from makepath.m4.
90         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
91         Rename files from makepath.c to mkdir-p.c, and from
92         makepath.h to mkdir-p.h.
93         * filenamecat.m4: Renamed from path-concat.m4.
94         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
95         Rename files from path-concat.c to filenamecat.c,
96         and from path-concat.h to filenamecat.h.
97         * getcwd-path-max.m4: Don't use "path" or "filename" to mean
98         "file name" in local variables or comments.
99         * rename.m4: Likewise.
100
101 2005-06-01  Bruno Haible  <bruno@clisp.org>
102
103         * csharp.m4: New file, from GNU gettext.
104         * csharpexec.m4: New file, from GNU gettext.
105
106 2005-05-31  Derek Price  <derek@ximbiot.com>
107             Paul Eggert  <eggert@cs.ucla.edu>
108
109         Sync from cvs.
110         * glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
111
112 2005-05-29  Derek Price  <derek@ximbiot.com>
113             Paul Eggert  <eggert@cs.ucla.edu>
114
115         * glob.m4: New file.
116
117 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
118
119         * fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
120         and don't require gt_INTTYPES_PRI.
121
122 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
123
124         * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
125         _POSIX_PTHREAD_SEMANTICS for Solaris.
126
127 2005-05-25  Derek Price  <derek@ximbiot.com>
128             Paul Eggert  <eggert@cs.ucla.edu>
129
130         * getlogin_r.m4: New files.
131
132 2005-05-22  Bruno Haible  <bruno@clisp.org>
133
134         * minmax.m4: New file.
135         Based on a patch by Derek Price <derek@ximbiot.com>.
136
137 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
138
139         * fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
140         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
141
142 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
143
144         * chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
145         of -1.
146
147 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
148
149         * canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
150         Don't check for stddef.h.
151         * fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
152         don't use its results.
153         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
154         since we include them unconditionally.  Don't require
155         AM_STDBOOL_H, since stdbool is a prerequisite.
156         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
157         since we assume C89 or better.
158         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
159         as we don't use their results.
160         Don't check for fchdir, memmove, memset, strrchr, as we use
161         them unconditionally.
162         * gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
163         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
164
165 2005-05-18  Jim Meyering  <jim@meyering.net>
166
167         * fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
168         Reported by Yoann Vandoorselaere.
169
170 2005-05-17  Jim Meyering  <jim@meyering.net>
171
172         * fts.m4: New file, from coreutils.
173
174 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
175
176         Sync from coreutils.
177         * unlinkdir.m4: New file.
178
179 2005-05-10  Derek Price  <derek@ximbiot.com>
180
181         * getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
182         possible.
183
184 2005-05-10  Simon Josefsson  <jas@extundo.com>
185
186         * getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
187         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
188
189 2005-05-09  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
190             Bruno Haible  <bruno@clisp.org>
191
192         * inet_ntop.m4: New file.
193
194 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
195
196         * getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
197         needless checks.
198
199 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
200
201         * euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require AC_HEADER_STAT.
202         * lchown.m4 (gl_FUNC_CHOWN): Likewise.
203         (gl_PREREQ_CHOWN): Remove.
204         * lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
205         it.  Don't require AC_HEADER_STAT.
206         (gl_PREREQ_LSTAT): Remove.
207         * mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
208         Don't require AC_HEADER_STAT.
209         * rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
210         (gl_PREREQ_RMDIR): Remove.
211         * canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
212         mention stat-macros.h or AC_HEADER_STAT, since we'll make
213         the stat-macros module a prerequisite.
214         * file-type.m4 (gl_FILE_TYPE): Likewise.
215         * filemode.m4 (gl_FILEMODE): Likewise.
216         * makepath.m4 (gl_MAKEPATH): Likewise.
217         * modechange.m4 (gl_MODECHANGE): Likewise.
218         * clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
219         variable names.
220         * rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
221         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
222         variable prefixes.
223         * fcntl-safer.m4: Remove.
224         * stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
225         * unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
226         Invoke gl_PREREQ_FD_SAFER.
227         (gl_PREREQ_FD_SAFER): New macro.
228         * nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
229         * readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
230         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
231         Remove duplicate call to AC_LIBOBJ(readutmp).
232         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
233
234         * mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
235         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
236
237 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
238
239         * byteswap.m4: New file.
240
241 2005-04-25  karl
242
243         * gettext.m4: Update from GNU gettext 0.14.4.
244
245 2005-04-15  Simon Josefsson  <jas@extundo.com>
246
247         * getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
248
249 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
250
251         * getcwd-path-max.m4: Return success on systems such as Cygwin
252         where no absolute path name can be longer than PATH_MAX.
253
254 2005-03-22  Jim Meyering  <jim@meyering.net>
255
256         * stat-macros.m4 (gl_STAT_MACROS): New file/macro.
257
258 2005-03-21  Jim Meyering  <jim@meyering.net>
259         and  Paul Eggert  <eggert@cs.ucla.edu>
260
261         * acl.m4, backupfile.m4, c-strtod.m4, canon-host.m4, canonicalize.m4,
262         cloexec.m4, closeout.m4, dirfd.m4, dirname.m4, exclude.m4,
263         exitfail.m4, file-type.m4, filemode.m4, fpending.m4, fsusage.m4,
264         getcwd.m4, getdate.m4, getline.m4, getpagesize.m4, getpass.m4,
265         getugroups.m4, group-member.m4, hard-locale.m4, hash.m4, human.m4,
266         idcache.m4, inttostr.m4, long-options.m4, makepath.m4, md5.m4,
267         memcasecmp.m4, memcoll.m4, modechange.m4, mountlist.m4, nanosleep.m4,
268         path-concat.m4, pathmax.m4, physmem.m4, posixtm.m4, posixver.m4,
269         quote.m4, quotearg.m4, readtokens.m4, readutmp.m4, safe-read.m4,
270         safe-write.m4, same.m4, savedir.m4, settime.m4, sha1.m4, sig2str.m4,
271         strdup.m4, strftime.m4, strndup.m4, strverscmp.m4, timespec.m4,
272         unlocked-io.m4, userspec.m4, utimecmp.m4, utimens.m4, xalloc.m4,
273         xnanosleep.m4, xstrtol.m4, yesno.m4:
274         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
275         for these modules.
276
277 2005-03-21  Jim Meyering  <jim@meyering.net>
278
279         * chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
280         * memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
281
282 2005-03-16  Bruno Haible  <bruno@clisp.org>
283
284         * stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
285         HAVE_LONGLONG_64BIT.
286
287 2005-03-14  Bruno Haible  <bruno@clisp.org>
288
289         * lib-link.m4, gettext.m4, nls.m4, po.m4:
290         Update from GNU gettext 0.14.3.
291
292 2005-03-10  Jim Meyering  <jim@meyering.net>
293
294         * save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
295
296 2005-03-07  Bruno Haible  <bruno@clisp.org>
297
298         * mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
299
300 2005-03-03  Bruno Haible  <bruno@clisp.org>
301
302         * inttypes.m4, isc-posix.m4, once-only.m4:
303         Use an all-permissive copyright notice, recommended by RMS.
304
305 2005-03-03  Derek R. Price  <derek@ximbiot.com>
306
307         * mmap-anon.m4: New file.
308         * pagealign_alloc.m4: New file.
309
310 2005-01-28  Bruno Haible  <bruno@clisp.org>
311
312         * stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because of
313         AIX, the replacement has to be done only after <string.h> is included,
314         therefore not in config.h. stpncpy.h does the replacement, and
315         stpncpy.c uses it.
316
317 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
318
319         * xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
320         to detect nanosleep bug.
321
322 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
323
324         * gethrxtime.m4, xnanosleep.m4: New files.
325         * gettime.m4 (gl_GETTIME): Check for nanotime.
326
327 2005-02-24  Bruno Haible  <bruno@clisp.org>
328
329         * gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
330         * lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
331         * progtest.m4:
332         Update from GNU gettext 0.14.2.
333         * glibc2.m4: New file, from GNU gettext 0.14.2.
334
335 2005-02-22  Simon Josefsson  <jas@extundo.com>
336
337         * iconvme.m4: New file.
338
339 2005-02-23  Jim Meyering  <jim@meyering.net>
340
341         * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's change.
342         Thanks to Bruno Haible for catching it.
343
344 2005-02-22  Jim Meyering  <jim@meyering.net>
345
346         * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo: s/ifndef/ifdef/.
347
348 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
349
350         * memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
351
352 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
353
354         Sync from coreutils.
355         * getloadavg.m4, glibc.m4, search-libs.m4: Remove.
356
357         Remove files that are specific to coreutils.
358         * check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
359
360 2005-01-28  Bruno Haible  <bruno@clisp.org>
361
362         * javacomp.m4: New file, from GNU gettext.
363
364 2005-01-26  Bruno Haible  <bruno@clisp.org>
365
366         * javaexec.m4: New file, from GNU gettext.
367
368 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
369
370         * sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
371         must be defined if the header file was not found, in order
372         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
373
374 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
375
376         * acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
377         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
378         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
379         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
380         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
381         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
382         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
383         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
384         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
385         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
386         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
387         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
388         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
389         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
390         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
391         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
392         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
393         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
394         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
395         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
396         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
397         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
398         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
399         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
400         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
401         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
402         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
403         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
404         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
405         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
406         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
407         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
408         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
409         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
410         xstrtol.m4, xstrtoumax.m4, yesno.m4:
411         Use an all-permissive copyright notice, recommended by RMS.
412
413 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
414
415         * save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume it.
416
417 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
418
419         Merge from coreutils.
420         * ullong_max.m4: New file.
421         * jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
422         (gl_MACROS): Assume localeconv exists.
423
424 2005-01-18  Jim Meyering  <jim@meyering.net>
425
426         Merge from coreutils.
427         * chdir-long.m4, openat.m4: New files.
428         * save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
429         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
430         * chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
431         is sane and DOES follow symlinks.  Besides, testing 20 different
432         systems found no broken chown implementations.
433         Prompted by a change in rsync's copy of this macro.
434         * jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
435
436         * lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
437
438         * utimes.m4: Work around tests/touch/empty-file failure on a system
439         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
440         NULL-means-set-to-current-time semantics.
441         Remove temporary file immediately, rather than waiting
442         for configure's at-exit trap code to do it.
443
444 2005-01-18  Bruno Haible  <bruno@clisp.org>
445
446         * allocsa.m4, codeset.m4, copy-file.m4, eaccess.m4, eealloc.m4:
447         * eoverflow.m4, execute.m4, fatal-signal.m4, findprog.m4, glibc21.m4:
448         * iconv.m4, intmax_t.m4, inttypes_h.m4, lib-ld.m4, lib-link.m4:
449         * lib-prefix.m4, linebreak.m4, localcharset.m4, longdouble.m4:
450         * longlong.m4, mbrtowc.m4, mbstate_t.m4, mbswidth.m4, mkdtemp.m4:
451         * pipe.m4, readlink.m4, safe-read.m4, safe-write.m4, setenv.m4:
452         * sig_atomic_t.m4, signalblocking.m4, signed.m4, size_max.m4:
453         * ssize_t.m4, stdbool.m4, stdint_h.m4, stpcpy.m4, stpncpy.m4:
454         * strcase.m4, strcspn.m4, strpbrk.m4, strstr.m4, ucs4-utf.m4:
455         * uintmax_t.m4, ulonglong.m4, unicodeio.m4, utf-ucs4.m4, vasnprintf.m4:
456         * vasprintf.m4, wait-process.m4, wchar_t.m4, wint_t.m4, xsize.m4:
457         Use an all-permissive copyright notice, recommended by RMS.
458
459 2005-01-06  Bruno Haible  <bruno@clisp.org>
460
461         * stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
462
463 2005-01-04  Jim Meyering  <jim@meyering.net>
464
465         Changes imported from coreutils.
466         * mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
467         as the mkstemp template, use a temporary directory and an
468         8.3-friendly template to avoid trouble on systems like DJGPP.
469         Reported by Juan M. Guerrero via Stepan Kasal.
470         * (gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of close.
471         Remove the temporary directory right away, rather than waiting
472         for configure's at-exit trap code to do it.
473         Suggestion from Stepan Kasal.
474
475 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
476
477         * c-strtod.m4 (gl_C99_STRTOLD): New macro.
478         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
479
480 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
481
482         * getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
483
484 2004-12-18  Bruno Haible  <bruno@clisp.org>
485
486         * fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
487
488 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
489
490         * ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
491         spurious "-l"s.  Problem reported by Stepan Kasal.
492
493 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
494
495         * ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
496         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
497
498 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
499
500         Changes imported from coreutils.
501         * hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
502         exist.
503         * human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
504
505 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
506
507         * getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
508         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
509
510         * readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
511
512 2004-11-30  Simon Josefsson  <jas@extundo.com>
513
514         * base64.m4: New file.
515
516 2004-11-30  Simon Josefsson  <jas@extundo.com>
517
518         * restrict.m4: Add copyright and copying conditions.
519
520 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
521
522         * getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
523         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
524         Use the _ONCE methods, for efficiency.
525         Check for fcntl.h.  In test program, include <errno.h>
526         and <fcntl.h> if available.  Remove old K&R cruft from
527         test program.  Check for common errors in GNU/Linux,
528         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
529         don't do AC_LIBOBJ, as that's getcwd.m4's job.
530         * getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
531         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
532         name accordingly.
533         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
534         accommodate new getcwd.c.
535         * jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
536         * prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
537         * xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
538         that's all we need now.
539
540 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
541
542         * utimens.m4 (gl_UTIMENS): Check for futimes function.
543
544 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
545
546         * argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
547         argp-parse.c depends on getopt internals, that means we should
548         always use our getopt, to be on the safe side.
549         * getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
550         order not to spoil the result of an eventual previous invocation
551         of gl_GETOPT_SUBSTITUTE.
552
553 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
554
555         * calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc implementations
556         that mishandle size_t overflow.
557
558 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
559
560         * canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
561
562 2004-11-13  Jim Meyering  <jim@meyering.net>
563
564         * jm-macros.m4: Do require gl_FUNC_FPENDING.
565
566 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
567
568         * getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
569         of replacing opterr, getopt, etc.  This should handle the
570         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
571
572 2004-11-11  Simon Josefsson  <jas@extundo.com>
573
574         * strtok_r.m4: New file.
575
576         * getopt.m4: Replace opterr.
577
578 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
579
580         * prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
581
582 2004-11-10  Jim Meyering  <jim@meyering.net>
583
584         * jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
585
586 2004-11-08  Simon Josefsson  <jas@extundo.com>
587
588         * getaddrinfo.m4: New file.
589
590 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
591
592         * strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
593         gl_FUNC_STRFTIME.
594         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
595         and AC_REQUIRE when possible, to avoid duplicate checks.
596         Check for <wchar.h>.
597
598 2004-11-09  Bruno Haible  <bruno@clisp.org>
599
600         * sockpfaf.m4: New file.
601
602 2004-11-03  Albert Chin <china@thewrittenword.com>
603             Paul Eggert  <eggert@cs.ucla.edu>
604
605         * uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
606         equivalent, substitute $ac_type for equivalent type rather than
607         blindly using uint32_t *always* which won't work if uint32_t is not
608         available.  Define _UINT32_T to work around typedef of uint32_t if
609         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
610         2.5.1.
611
612 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
613
614         * jm-macros.m4: Sync from coreutils.
615         (gl_MACROS): Check for mbrlen, for pathchk.
616         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
617
618 2004-11-02  Bruno Haible  <bruno@clisp.org>
619
620         * setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
621         returns void.
622
623 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
624
625         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
626         fflush_unlocked, flockfile, funlockfile, funlockfile,
627         fputs_unlocked, putc_unlocked.
628
629 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
630
631         * getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
632
633 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
634
635         * getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
636         implementation of getopt_long.  Problem reported by Alexander Taler in:
637         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
638
639 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
640
641         * vsnprintf.m4: New file.
642
643 2004-10-05  Bruno Haible  <bruno@clisp.org>
644
645         * strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
646         for the declaration of strsep.
647
648 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
649
650         * xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
651
652         * unlocked-io.m4: Add copyright notice.
653         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
654
655 2004-10-04  Simon Josefsson  <jas@extundo.com>
656
657         * memmem.m4: New file.
658
659 2004-10-01  Yoann Vandoorselaere <yoann@prelude-ids.org>
660
661         * strsep.m4: New file.
662
663 2004-09-30  Simon Josefsson  <jas@extundo.com>
664
665         * snprintf.m4: New file.
666
667 2004-09-09  Bruno Haible  <bruno@clisp.org>
668
669         * eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
670         modifications.
671         * vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
672
673 2004-09-08  Bruno Haible  <bruno@clisp.org>
674
675         * stdint.m4: New file, taken from GNU clisp with modifications.
676
677 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
678
679         * userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
680
681 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
682
683         * argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
684         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
685         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
686         Check for program_invocation_name, program_invocation_short_name,
687         flockfile, funlockfile, features.h, _getopt_long_only_r.
688
689 2004-08-12  Simon Josefsson  <jas@extundo.com>
690
691         * getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
692         as discussed with Paul Eggert in threads rooted at
693         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
694         and
695         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
696         Before, the test was empty, and relied on ELIDE_CODE in source
697         code.)
698         (gl_PREREQ_GETOPT): New macro.
699         (gl_GETOPT): Use them.
700
701 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
702
703         Merge from coreutils.
704
705         * fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
706
707         * obstack.m4 (gl_PREREQ_OBSTACK): Require
708         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
709
710 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
711
712         * uint32_t.m4, uintptr_t.m4: New files.
713         * sha1.m4: Renamed from sha.m4.
714         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
715
716 2004-08-08  Simon Josefsson  <jas@extundo.com>
717
718         * getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
719         Check getpass declaration.
720
721 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
722
723         More merge from coreutils.
724
725         * utimens.m4, utimecmp.m4: New files.
726         * backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
727         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
728         prereq.m4, sha.m4: Import changes from coreutils.
729
730 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
731
732         Merge from coreutils.
733
734         * c-strtod.m4, canonicalize.m4, fcntl-safer.m4, getcwd-path-max.m4:
735         New files.
736
737         * dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
738         FILESYSTEM_PREFIX_LEN ->
739         FILE_SYSTEM_PREFIX_LEN.
740         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
741         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
742         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
743         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
744
745         * path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
746         prerequisite modules now handle the DOS stuff.
747         Don't check for unistd.h.
748
749 2004-08-03  Simon Josefsson  <jas@extundo.com>
750
751         * strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
752
753 2004-08-02  Simon Josefsson  <jas@extundo.com>
754
755         * getsubopt.m4: New file.
756
757 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
758
759         * fatal.m4: Remove, as the "fatal" module wasn't used or working.
760
761 2004-07-13  Robert Millan  <robertmh@gnu.org>
762
763         * host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
764
765 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
766
767         * argz.m4: New file, which is autoupdated from libtool.
768
769 2004-06-01  Jim Meyering  <jim@meyering.net>
770
771         * calloc.m4: New file.
772
773 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
774
775         Merge from coreutils CVS.
776
777         * backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
778         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
779         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
780         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
781         xstrtol.m4: Fix copyright date and/or serial number.
782
783         * chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
784         See if we need an fchown replacement.
785         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
786         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
787         and use the replacement function if we detect either defect.
788
789         * prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
790         gl_UTIMECMP.
791
792 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
793
794         * stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
795         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
796         Also, fix a typo in a diagnostic.
797
798 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
799
800         * xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
801         or AC_FUNC_REALLOC.
802
803 2004-05-20  Andreas Schwab  <schwab@suse.de>
804
805         * free.m4: Replace free if it not known to work, not the other
806         way round.
807
808 2004-05-17  Derek R. Price  <derek@ximbiot.com>
809             Paul Eggert  <eggert@cs.ucla.edu>
810
811         * argp: Depend on alloca.
812
813 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
814
815         * alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
816         for backward compatibility with older code.  We need our own
817         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
818         it under some other name, and our alloca.h will define it.
819
820 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
821
822         * gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
823         Check for gettimeofday.
824         * settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
825         Check for settimeofday, stime.
826
827 2004-04-20  Paul Eggert  <eggert@twinsun.com>
828
829         * host-os.m4: Add a copyright notice.
830
831 2004-04-20  Jim Meyering  <jim@meyering.net>
832
833         Change UTILS_ to gl_ in AC_DEFINE'd names.
834         Change utils_- and jm_-prefixed variables, too.
835         * mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
836         UTILS_FUNC_MKDIR_TRAILING_SLASH.
837         * mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
838
839         * dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
840         Don't emit trailing blanks.
841         Also rename jm_-prefixed variables to have gl_ prefix.
842
843         * host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
844         Also rename jm_-prefixed variables to have gl_ prefix.
845
846         * jm-macros.m4: Reflect the renamings.
847         * prereq.m4: Likewise.
848
849 2004-04-19  Jim Meyering  <jim@meyering.net>
850
851         * readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
852         now that readutmp.c may call `free (0)'.
853
854 2004-04-19  Bruno Haible  <bruno@clisp.org>
855
856         * mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
857         * inttypes_h.m4: Likewise.
858         * stdint_h.m4: Likewise.
859         * intmax_t.m4: Likewise.
860         * uintmax_t.m4: Likewise.
861
862 2004-04-18  Jim Meyering  <jim@meyering.net>
863
864         * prereq.m4: Don't forbid jm_ prefix.
865
866         * afs.m4, allocsa.m4, assert.m4, backupfile.m4, bison.m4:
867         * check-decl.m4, chown.m4, d-ino.m4, d-type.m4, dirname.m4, dos.m4:
868         * error.m4, fpending.m4, fstypename.m4, fsusage.m4, ftruncate.m4:
869         * getdate.m4, getgroups.m4, gettext.m4, glibc21.m4, group-member.m4:
870         * human.m4, intmax.m4, intmax_t.m4, inttostr.m4, inttypes.m4:
871         * inttypes_h.m4, jm-macros.m4, jm-winsz1.m4, jm-winsz2.m4, lchown.m4:
872         * lib-check.m4, link-follow.m4, localcharset.m4, longlong.m4:
873         * ls-mntd-fs.m4, lstat.m4, makepath.m4, mbrtowc.m4, mbswidth.m4:
874         * memchr.m4, memcmp.m4, mkdtemp.m4, mkstemp.m4, mountlist.m4:
875         * nanosleep.m4, path-concat.m4, perl.m4, prereq.m4, putenv.m4:
876         * quotearg.m4, regex.m4, stat.m4, stdint_h.m4, strftime.m4:
877         * strtoimax.m4, strtoll.m4, strtoull.m4, strtoumax.m4, timespec.m4:
878         * uintmax_t.m4, ulonglong.m4, unlink-busy.m4, unlocked-io.m4:
879         * uptime.m4, utimbuf.m4, utime.m4, utimes-null.m4, vasnprintf.m4:
880         * xstrtoimax.m4, xstrtol.m4, xstrtoumax.m4:
881         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
882
883 2004-04-16  Jim Meyering  <jim@meyering.net>
884
885         * prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
886         coreutils' stat program.
887         (gl_PREREQ): Don't require jm_PREREQ_STAT.
888
889 2004-03-31  Jim Meyering  <jim@meyering.net>
890
891         * prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
892         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
893         * xalloc.m4: Likewise.
894
895 2004-03-30  Jim Meyering  <jim@meyering.net>
896
897         * realloc.m4: Remove file, since now it does no more than
898         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
899         the `configure.ac' section of module/realloc.
900         * malloc.m4: Likewise, but for AC_FUNC_MALLOC.
901
902 2004-03-30  Paul Eggert  <eggert@twinsun.com>
903
904         Merge from coreutils.
905
906         * inttostr.m4: New file.
907         * getdate.m4 (gl_GETDATE): Remove time-related stuff.
908         Require AM_STDBOOL_H and gl_TIMESPEC instead.
909         Require gl_CLOCK_TIME.
910         * clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
911
912 2004-03-30  Jim Meyering  <jim@meyering.net>
913
914         Merge from coreutils.
915
916         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
917         * ls-mntd-fs.m4: Test for sys/ucred.h separately, since
918         on some systems one must include <grp.h> before it.
919         Reported by Christian Krackowizer.
920
921 2004-03-29  Paul Eggert  <eggert@twinsun.com>
922
923         * cloexec.m4: New file.
924
925 2004-03-18  Paul Eggert  <eggert@twinsun.com>
926             Bruno Haible  <bruno@clisp.org>
927
928         * mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
929         mbswidth.
930
931 2004-03-07  Paul Eggert  <eggert@twinsun.com>
932
933         * c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
934         All uses changed.  Check for sa_sigaction member; this fixes
935         a bug first reported by Jason Andrade in
936         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
937
938 2004-01-18  Simon Josefsson  <jas@extundo.com>
939
940         * strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
941
942 2004-02-18  Bruno Haible  <bruno@clisp.org>
943
944         * xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
945         Reported by Derek Robert Price <derek@ximbiot.com>.
946
947 2004-02-06  Karl Berry  <karl@gnu.org>
948
949         * po.m4: update from gettext 0.14.1.
950
951 2004-02-03  Bruno Haible  <bruno@clisp.org>
952
953         * pipe.m4: New file, from GNU gettext.
954
955 2004-01-27  Bruno Haible  <bruno@clisp.org>
956
957         * execute.m4: New file, from GNU gettext.
958
959 2003-11-24  Bruno Haible  <bruno@clisp.org>
960
961         * allocsa.m4: New file, from GNU gettext.
962
963 2003-11-24  Bruno Haible  <bruno@clisp.org>
964
965         * eealloc.m4: New file, from GNU gettext.
966
967 2004-01-15  Paul Eggert  <eggert@twinsun.com>
968
969         Merge from coreutils.
970
971         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
972         * posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
973         (gl_DEFAULT_POSIX2_VERSION): Move
974         the documentation from 'configure' into 'config.hin',
975         so that 'configure --help' isn't burdened by it and
976         we don't have to worry about its formatting there.
977         Reword the documentation so that it's more succinct
978         and can be run together into a single paragraph.
979         * same.m4 (gl_SAME): Check for pathconf.
980
981 2004-01-15  Jim Meyering  <jim@meyering.net>
982
983         Merge from coreutils.
984
985         * clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
986         if no library is required.
987         * jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
988         * jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
989         * jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
990         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
991         * jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
992         * lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
993         value, $ac_cv_search_crypt, if it's "none required".
994         * posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
995         * prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
996         not gl_FUNC_GETLOADAVG.
997         * prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
998         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
999
1000 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
1001
1002         Merge from coreutils.
1003
1004         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
1005         value, $ac_cv_search_nanosleep, if it's "none required".
1006
1007 2003-12-03  Bruno Haible  <bruno@clisp.org>
1008
1009         * gettext.m4: Upgrade from gettext-0.13.
1010         * po.m4: Upgrade from gettext-0.13.
1011         * size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
1012         * intmax.m4: New file, from gettext-0.13.
1013         * printf-posix.m4: New file, from gettext-0.13.
1014
1015 2003-11-25  Bruno Haible  <bruno@clisp.org>
1016
1017         * vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
1018         gt_TYPE_SSIZE_T.
1019
1020 2003-11-17  Bruno Haible  <bruno@clisp.org>
1021
1022         * vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
1023
1024 2003-11-12  Paul Eggert  <eggert@twinsun.com>
1025
1026         * xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
1027         gl_PTRDIFF_MAX.
1028
1029 2003-11-11  Bruno Haible  <bruno@clisp.org>
1030
1031         * size_max.m4: New file.
1032         * ptrdiff_max.m4: New file.
1033         * xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
1034         * xalloc.m4 (gl_PREREQ_XALLOC): New macro.
1035         (gl_XALLOC): Invoke it.
1036
1037 2003-11-04  Bruno Haible  <bruno@clisp.org>
1038
1039         * xsize.m4: New file.
1040
1041 2003-11-03  Bruno Haible  <bruno@clisp.org>
1042
1043         * wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
1044
1045 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
1046
1047         * host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
1048         netbsd*-gnu*.  Suggested by Robert Millan.
1049
1050 2003-10-29  Paul Eggert  <eggert@twinsun.com>
1051
1052         * xalloc.m4 (gl_XALLOC): Undo previous change.
1053
1054 2003-10-29  Paul Eggert  <eggert@twinsun.com>
1055
1056         * host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
1057         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
1058         after the 'gnu' in these cases.  This fixes some bugs in the
1059         previous change, and is based on suggestions by Robert Millan.
1060
1061 2003-10-28  Paul Eggert  <eggert@twinsun.com>
1062
1063         * host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
1064         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
1065         NetBSD kernels.  Requested by Richard Stallman.
1066
1067 2003-10-26  Paul Eggert  <eggert@twinsun.com>
1068
1069         * xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
1070         now uses inline.
1071
1072 2003-10-23  Paul Eggert  <eggert@twinsun.com>
1073
1074         * getline.m4 (AM_FUNC_GETLINE):
1075         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
1076         hosts.  Problem reported by Derek Robert Price in
1077         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
1078         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
1079         * getndelim2.m4 (gl_GETNDELIM2): Likewise.
1080
1081 2003-10-20  Bruno Haible  <bruno@clisp.org>
1082
1083         * wait-process.m4: New file.
1084
1085 2003-10-14  Bruno Haible  <bruno@clisp.org>
1086
1087         * sig_atomic_t: New file, from GNU gettext.
1088         * fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
1089
1090 2003-10-12  Paul Eggert  <eggert@twinsun.com>
1091
1092         * xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
1093
1094 2003-10-10  Simon Josefsson  <jas@extundo.com>
1095
1096         * argp.m4: Add AC_C_INLINE.
1097
1098 2003-10-08  Paul Eggert  <eggert@twinsun.com>
1099
1100         * getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
1101
1102 2003-10-06  Bruno Haible  <bruno@clisp.org>
1103
1104         * fatal-signal.m4: New file.
1105         * signalblocking.m4: New file, from GNU gettext.
1106
1107 2003-09-27  Paul Eggert  <eggert@twinsun.com>
1108
1109         * free.m4: New file.
1110
1111 2003-09-26  Bruno Haible  <bruno@clisp.org>
1112
1113         * stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX stpncpy().
1114         Don't define stpncpy through config.h; it's now done through stpncpy.h.
1115
1116 2003-09-25  Simon Josefsson  <jas@extundo.com>
1117             Bruno Haible  <bruno@clisp.org>
1118
1119         * getdomainname.m4: New file.
1120
1121 2003-09-17  Paul Eggert  <eggert@twinsun.com>
1122
1123         * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
1124         to avoid spurious warnings like "AC_RUN_IFELSE was called before
1125         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
1126
1127 2003-09-12  Paul Eggert  <eggert@twinsun.com>
1128
1129         * error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
1130
1131         * extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
1132         and AC_MINIX, too, so that their extensions are available.
1133
1134         * prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
1135         This macro has been superseded by gl_BACKUPFILE.
1136
1137         More patches to assume C89 or better.
1138
1139         * error.m4 (gl_ERROR): Don't check for vprintf.
1140
1141         * check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
1142         unconditionally.
1143         * closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
1144         * gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
1145         Include <string.h>, <stdlib.h> unconditionally.
1146         * lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
1147         * readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
1148         * readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C headers
1149         or for string.h.
1150         * strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
1151         or strtoul.
1152
1153         * mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C headers.
1154         * strdup.m4 (gl_PREREQ_STRDUP): Likewise.
1155         * userspec.m4 (gl_USERSPEC): Likewise.
1156         * xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
1157         * xstrtod.m4 (gl_XSTRTOD): Likewise.
1158         * xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
1159         * strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
1160         memcpy, memset.
1161         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
1162         * strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
1163         * strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h, strtol.
1164         * strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
1165         * userspec.m4 (gl_USERSPEC): Do not check for string.h.
1166         * xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
1167         strtoul.
1168
1169 2003-09-11  Paul Eggert  <eggert@twinsun.com>
1170
1171         More patches to assume C89 or better.
1172         * strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
1173         * strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
1174         string.h, memchr, STDC_HEADERS.
1175
1176 2003-09-10  Bruno Haible  <bruno@clisp.org>
1177
1178         * strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
1179         * strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
1180         * strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
1181         * unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
1182         * setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
1183         <stdlib.h> and <string.h> checks.
1184         * xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
1185         * yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
1186
1187 2003-09-09  Paul Eggert  <eggert@twinsun.com>
1188
1189         More patches to assume C89 or better.
1190         * getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
1191         * getopt.m4 (gl_GETOPT): Don't check for string.h.
1192         * getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
1193         or for string.h.
1194         * getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for stdlib.h.
1195         * group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard C
1196         headers.
1197         * hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
1198         string.h.
1199         * hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
1200         * human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
1201         * idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
1202         or for string.h.
1203         * long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
1204         * makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
1205         C headers.
1206         * md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
1207         memcpy.
1208         * sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
1209         * memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
1210         * memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
1211         * memcoll.m4 (gl_MEMCOLL): Likewise.
1212         * memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
1213         * mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
1214         string.h, free.
1215         * mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
1216         * modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
1217         * mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
1218         C headers, or for string.h.
1219         * obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
1220         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
1221         * path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
1222         headers, memory.h, stdlib.h, string.h, strings.h.
1223         * posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
1224         * posixver.m4 (gl_POSIXVER): Don't check for getenv.
1225         * putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
1226         strchr.
1227         * readtokens.m4 (gl_READTOKENS): Don't check for standard C
1228         headers, memory.h, string.h.
1229         * regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
1230         * rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
1231         free.
1232         * rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C headers.
1233         * same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
1234         * save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
1235         * savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
1236         * strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
1237         * xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
1238
1239 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
1240
1241         * getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
1242         C89 spec.
1243
1244 2003-09-08  Paul Eggert  <eggert@twinsun.com>
1245
1246         Assume C89 or better; remove K&R cruft.
1247         * alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
1248         * backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
1249         string.h, getenv, malloc.
1250         * dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
1251         headers.
1252         * canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
1253         * error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
1254         do not check for strerror.
1255         * exclude.m4: Do not check for stdlib.h, string.h, strings.h.
1256         * exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
1257         * fatal.m4 (gl_FATAL): Do not require STDC headers, and
1258         do not check for doprnt or vprintf.
1259         * fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
1260         * getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
1261
1262 2003-09-06  Paul Eggert  <eggert@twinsun.com>
1263
1264         * time_r.m4: New file.
1265         * mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
1266         * timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime is.
1267         Check for timegm declaration.
1268         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
1269         Do not check for gmtime_r.
1270         Replace mktime if __mktime_internal does not exist and if mktime
1271         hasn't been replaced already.
1272
1273 2003-08-31  Simon Josefsson  <jas@extundo.com>
1274
1275         * timegm.m4: New file.
1276
1277 2003-08-26  Bruno Haible  <bruno@clisp.org>
1278
1279         * fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
1280         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
1281         followed by '#define fnmatch fnmatch_posix' gives an error.
1282
1283 2003-08-27  Jim Meyering  <jim@meyering.net>
1284
1285         * mkstemp.m4: Require that the system mkstemp be able to create
1286         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
1287         would fail after 32.  Reported by Danny Levinson.  Details here:
1288         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
1289
1290 2003-08-20  Karl Berry  <karl@gnu.org>
1291
1292         * lib-ld.m4: serial 1003 from gettext, no changes besides serial.
1293
1294 2003-08-19  Jim Meyering  <jim@meyering.net>
1295
1296         * lib-ld.m4: Revert yesterday's change, per Bruno's request here:
1297         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
1298
1299 2003-08-19  Bruno Haible  <bruno@clisp.org>
1300
1301         * xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any more.
1302
1303 2003-08-18  Jim Meyering  <jim@meyering.net>
1304
1305         * getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
1306         * lib-ld.m4: Likewise.
1307
1308 2003-08-17  Simon Josefsson  <jas@extundo.com>
1309
1310         * argp.m4: New file.
1311
1312 2003-08-17  Simon Josefsson  <jas@extundo.com>
1313
1314         * xstrndup.m4: New file.
1315
1316 2003-08-16  Jim Meyering  <jim@meyering.net>
1317
1318         * utimes.m4 (gl_FUNC_UTIMES): New file.
1319         * utimes.m4: Removed.
1320         * utimes-null.m4: Renamed from utimes.m4.
1321
1322         * c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
1323         to 1MB, so as not to render systems with no stack size limit (e.g.,
1324         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
1325         Include <unistd.h>.  On some systems,
1326         it is required for the definition of _SC_PAGESIZE.
1327
1328 2003-08-16  Paul Eggert  <eggert@twinsun.com>
1329
1330         Merges from coreutils, etc.
1331         * rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
1332         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
1333         * readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
1334         fixing a typo.
1335         * host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
1336         * hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
1337
1338 2003-08-16  Jim Meyering  <jim@meyering.net>
1339         and Paul Eggert  <eggert@cs.ucla.edu>
1340
1341         Merges from coreutils, etc.
1342
1343         * jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
1344         using the latest version from cvs.  This avoids problems with #line
1345         directives using a vendor (Sun) compiler.
1346         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
1347         Don't set GETGROUPS_LIB here; now it's
1348         done via getgroups.m4's wrapper function.
1349         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
1350         rather than just in sh-util/configure.in, so that the
1351         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
1352         same.
1353         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
1354         AC_FUNC_GETLOADAVG where to find getloadavg.c.
1355         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
1356         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
1357         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
1358         Remove code that is now done by the newly-required macros.
1359         Append $(EXEEXT) to DF_PROG.
1360         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
1361         Do not invoke or require the following here,
1362         since prereq.m4 or some gnulib .m4 now does this for us:
1363         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
1364         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
1365         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
1366         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
1367         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
1368         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
1369         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
1370         AC_FUNC_OBSTACK.
1371         Do not replace the following functions, as this is now the job
1372         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
1373         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
1374         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
1375         atexit getpass, strdup, getpagesize.
1376         Replace 'raise'.
1377         Do not check for the following functions, as this is now the job
1378         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
1379         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
1380         setregid.
1381         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
1382         Check for sys/sysctl.h.
1383         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
1384         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
1385         of checking for ssize_t ourselves.
1386
1387         * prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
1388         Require every macro that gnulib/modules/* suggests for us.
1389         (jm_PREREQ_ADDEXT): New macro.
1390         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
1391         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
1392
1393         * physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
1394         (gl_PHYSMEM): Use it.
1395         Also check for `table' function.
1396         Check for new headers and functions.
1397         Add check for sys/sysmp.h.
1398         With suggestions from Kaveh Ghazi.
1399         Ignore headers that are present but cannot be compiled.  This
1400         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
1401         C 5.4.
1402
1403 2003-08-16  Jim Meyering  <jim@meyering.net>
1404
1405         Merges from coreutils.
1406         * readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
1407         prefix.  Adjust cache variables similarly.  Create 500 rather than
1408         just 300 files, to exercise bug on Darwin6.5, too.
1409         * perl.m4 (jm_PERL): Use $am_missing_run, not undefined $missing_dir.
1410         * jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not AM_SYS_POSIX_TERMIOS.
1411         Reported by mkc@mathdogs.com.
1412         Also change use of $am_cv_sys_posix_termios
1413         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
1414         * getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
1415         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
1416         * fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point in
1417         /proc/mounts until it finds one with matching device number.  This is
1418         unnecessary when the FILE argument *is* a mount point.  No stat call
1419         is necessary in that case.  So, disable the statvfs-testing code on
1420         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
1421         as RedHat bug# 84846.
1422         * c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
1423         to 1MB, so as not to render systems with no stack size limit (e.g.,
1424         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
1425         Include <unistd.h>.  On some systems,
1426         it is required for the definition of _SC_PAGESIZE.
1427
1428 2003-08-15  Jim Meyering  <jim@meyering.net>
1429         and Paul Eggert  <eggert@cs.ucla.edu>
1430
1431         Merges from coreutils, etc.
1432         * strftime.m4 (_jm_STRFTIME_PREREQS):
1433         Require gl_FUNC_TZSET_CLOBBER.
1434         * readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit, ut_exit.e_exit,
1435         ut_exit.ut_termination, and ut_exit.e_termination members.
1436
1437 2003-08-14  Paul Eggert  <eggert@twinsun.com>
1438
1439         Help the merge from coreutils.
1440         * gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
1441         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
1442         * tzset.m4: Use it too.
1443
1444 2003-08-14  Jim Meyering  <jim@meyering.net>
1445
1446         Merge from coreutils.
1447         * tzset.m4: New file.
1448         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the MOUNTED_VMOUNT
1449         test to precede the MOUNTED_GETMNTENT1 tests, since otherwise, AIX 5.1
1450         systems would end up using the latter.  MOUNTED_GETMNTENT1 support
1451         is inadequate on such systems: 1) detecting whether a file system
1452         is remote doesn't work  2) the MOUNTED_VMOUNT code reports the
1453         HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1 code reports
1454         merely /MOUNT_POINT.  Reported by Mike Jetzer.
1455
1456 2003-08-13  Paul Eggert  <eggert@twinsun.com>
1457
1458         * exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
1459         Check for isascii.
1460
1461         * gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
1462         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
1463         Undo previous (whitespace-only) change.
1464
1465 2003-08-12  Paul Eggert  <eggert@twinsun.com>
1466
1467         * gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
1468         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
1469         Normalize leading white space and remove trailing white space.
1470
1471         Merge from coreutils
1472         * euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
1473
1474         * lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
1475         0.12.1.  These files are now being upgraded automatically by
1476         ../config/srclist-update.
1477
1478 2003-08-11  Bruno Haible  <bruno@clisp.org>
1479
1480         * vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
1481
1482 2003-08-09  Paul Eggert  <eggert@twinsun.com>
1483
1484         * regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
1485         apparently Emacs's Unicode mode got confused before my 2003-08-05
1486         checkin.
1487
1488 2003-08-08  Paul Eggert  <eggert@twinsun.com>
1489
1490         * extensions.m4: New file.
1491         * timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
1492         Require gl_USE_SYSTEM_EXTENSIONS.
1493         * unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
1494         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
1495
1496 2003-08-07  Paul Eggert  <eggert@twinsun.com>
1497
1498         * restrict.m4: New file.
1499         * regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
1500
1501 2003-08-07  Bruno Haible  <bruno@clisp.org>
1502
1503         * getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This makes
1504         the module 'getndelim2' compatible with the module 'getline'.
1505
1506 2003-08-05  Paul Eggert  <eggert@twinsun.com>
1507
1508         * regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
1509         byte with "\201" to avoid glitches when editing that source file
1510         with multi-gnome-terminal.
1511
1512 2003-07-31  Bruno Haible  <bruno@clisp.org>
1513
1514         * getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
1515
1516 2003-07-18  Bruno Haible  <bruno@clisp.org>
1517
1518         * getndelim2.m4: New file.
1519         * getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
1520         invoke gl_PREREQ_GETNDELIM2.
1521         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
1522         gl_PREREQ_GETNDELIM2.
1523         * getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
1524         gl_GETNDELIM2.
1525
1526 2003-07-17  Bruno Haible  <bruno@clisp.org>
1527
1528         * Makefile.am.in: Remove file.
1529         * Makefile.am: Remove file.
1530         * Makefile.in: Remove file.
1531
1532 2003-07-17  Bruno Haible  <bruno@clisp.org>
1533
1534         * getnline.m4: New file.
1535
1536 2003-07-14  Simon Josefsson  <jas@extundo.com>
1537
1538         * mempcpy.m4: New file.
1539
1540 2003-07-10  Jim Meyering  <jim@meyering.net>
1541
1542         * clock_time.m4: Remove trailing blank.
1543         * intmax_t.m4: Likewise.
1544
1545 2003-07-01  Paul Eggert  <eggert@twinsun.com>
1546
1547         * xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
1548         xreadlink.c now includes it unconditionally.
1549
1550 2003-07-01  Bruno Haible  <bruno@clisp.org>
1551
1552         * ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>. <sys/types.h>
1553         should be sufficient.
1554         Reported by Paul Eggert.
1555
1556 2003-06-25  Bruno Haible  <bruno@clisp.org>
1557
1558         * readlink.m4: New file.
1559
1560 2003-06-22  Bruno Haible  <bruno@clisp.org>
1561
1562         Portability to mingw32.
1563         * ssize_t.m4: New file, from GNU gettext.
1564         * safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
1565         * xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
1566
1567 2003-06-11  Bruno Haible  <bruno@clisp.org>
1568
1569         * sysexits.m4: New file.
1570
1571 2003-06-10  Simon Josefsson  <jas@extundo.com>
1572
1573         * strchrnul.m4: New file.
1574
1575 2003-06-07  Bruno Haible  <bruno@clisp.org>
1576
1577         * fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
1578         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
1579         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
1580         directory.
1581         * poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
1582         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
1583         directory.
1584
1585 2003-06-04  Paul Eggert  <eggert@twinsun.com>
1586
1587         * human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
1588         locale.h, localeconv.  This merges changes from coreutils.
1589
1590         * mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
1591         It can be removed after the next Autoconf is released.
1592         * exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
1593         needed.
1594
1595 2003-05-30  Bruno Haible  <bruno@clisp.org>
1596
1597         * gettext.m4: Upgrade to gettext-0.12.1.
1598         * nls.m4: New file, from gettext-0.12.1.
1599         * po.m4: New file, from gettext-0.12.1.
1600         * progtest.m4: Upgrade to gettext-0.12.1.
1601
1602 2003-05-28  Paul Eggert  <eggert@twinsun.com>
1603
1604         Assume the headers required for C89 freestanding compilers.
1605         * backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
1606         * fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
1607         * human.m4 (gl_HUMAN): Likewise.
1608         * pathmax.m4 (gl_PATHMAX): Likewise.
1609         * rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
1610         * userspec.m4 (gl_USERSPEC): Likewise.
1611         * xreadlink.m4 (gl_XREADLINK): Likewise.
1612         * xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
1613         * quote.m4 (gl_QUOTE): Don't check for stddef.h.
1614
1615 2003-05-26  Jim Meyering  <jim@meyering.net>
1616
1617         Merge in a change from coreutils:
1618         * dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
1619         that is guaranteed to be `no'.  Use `no_such_member' to indicate
1620         that condition, rather than `-1' which is slightly misleading.
1621         Change the name of the cache variable to have the gl_ prefix.
1622         Prompted by a patch from Richard Dawe for DJGPP.
1623
1624 2003-05-17  Bruno Haible  <bruno@clisp.org>
1625
1626         * dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an invalid
1627         expansion for AC_EGREP_CPP.
1628         * strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
1629         * strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
1630         Suggested by Akim Demaille <akim@epita.fr> in
1631         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
1632
1633 2003-04-21  Paul Eggert  <eggert@twinsun.com>
1634
1635         * error.m4 (gl_ERROR): Do not put under dynamic conditions some
1636         code which expansion is under static control.  Patch imported from
1637         Akim Demaille's patch to Bison; see
1638         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
1639
1640 2003-04-14  Bruno Haible  <bruno@clisp.org>
1641
1642         * error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
1643
1644 2003-04-10  Bruno Haible  <bruno@clisp.org>
1645
1646         * findprog.m4: New file.
1647         * eaccess.m4: New file.
1648
1649 2003-04-04  Bruno Haible  <bruno@clisp.org>
1650
1651         * linebreak.m4: New file.
1652
1653 2003-04-03  Bruno Haible  <bruno@clisp.org>
1654
1655         * utf-ucs4.m4: New file.
1656         * ucs4-utf.m4: New file.
1657
1658 2003-03-30  Bruno Haible  <bruno@clisp.org>
1659
1660         * copy-file.m4 (gl_COPY_FILE): Add check for chown().
1661
1662 2003-03-28  Bruno Haible  <bruno@clisp.org>
1663
1664         * copy-file.m4: New file.
1665
1666 2003-03-18  Bruno Haible  <bruno@clisp.org>
1667
1668         * onceonly.m4: Use m4_defn instead of defn, for better error checking.
1669         * onceonly_2_57.m4: Likewise.
1670
1671 2003-03-17  Bruno Haible  <bruno@clisp.org>
1672
1673         * onceonly.m4: Require autoconf 2.54 or newer.
1674         (m4_quote): Remove macro.
1675         * onceonly_2_57.m4: Require autoconf 2.54 or newer.
1676
1677 2003-03-14  Bruno Haible  <bruno@clisp.org>
1678
1679         * onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
1680         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
1681
1682 2003-03-13  Paul Eggert  <eggert@twinsun.com>
1683
1684         * onceonly.m4 (m4_quote): New macro.
1685         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
1686         Quote AC_FOREACH variable-expansions properly.
1687
1688 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
1689
1690         * poll.m4: New file.
1691
1692 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
1693
1694         * mathl.m4: New file.
1695
1696 2003-02-17  Bruno Haible  <bruno@clisp.org>
1697
1698         * mkdtemp.m4: New file, from GNU gettext with modifications.
1699
1700 2003-02-02  Jim Meyering  <jim@meyering.net>
1701
1702         * regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
1703         e.g. glibc-2.2.93.
1704
1705 2003-01-31  Bruno Haible  <bruno@clisp.org>
1706
1707         * rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
1708         'rpl_rename'.
1709         * strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
1710         'rpl_strnlen'.
1711         * strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
1712         'rpl_strtod'.
1713         * utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
1714         'rpl_utime'.
1715
1716 2003-01-30  Bruno Haible  <bruno@clisp.org>
1717
1718         * signed.m4: New file, from GNU gettext.
1719         * longdouble.m4: New file, from GNU gettext.
1720         * wchar_t.m4: New file, from GNU gettext.
1721         * wint_t.m4: New file, from GNU gettext.
1722         * vasnprintf.m4: New file.
1723         * vasprintf.m4: New file.
1724
1725 2003-01-29  Bruno Haible  <bruno@clisp.org>
1726
1727         * stpncpy.m4: New file.
1728
1729 2003-01-23  Jim Meyering  <jim@meyering.net>
1730
1731         * dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
1732         from working on systems without dirfd (at least Irix and OSF1/Tru64).
1733
1734 2003-01-16  Jim Meyering  <jim@meyering.net>
1735
1736         * regex.m4: The `regex' struct is both input and output.
1737         Initialize it before each use.  Patch by Tim Waugh.
1738
1739 2003-01-11  Bruno Haible  <bruno@clisp.org>
1740
1741         * longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
1742         * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
1743         suffix.
1744
1745 2003-01-11  Bruno Haible  <bruno@clisp.org>
1746
1747         * md5.m4 (gl_MD5): Require AC_C_INLINE.
1748
1749 2003-01-11  Bruno Haible  <bruno@clisp.org>
1750
1751         * alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
1752
1753 2003-01-12  Paul Eggert  <eggert@twinsun.com>
1754
1755         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
1756         to avoid collisions with libcurses and libreadline.
1757
1758         * getstr.m4: Remove.
1759         * getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
1760
1761 2003-01-10  Bruno Haible  <bruno@clisp.org>
1762
1763         * alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
1764
1765 2003-01-09  Bruno Haible  <bruno@clisp.org>
1766
1767         * stdbool.m4 (AM_STDBOOL_H): New macro.
1768
1769 2002-12-31  Paul Eggert  <eggert@twinsun.com>
1770
1771         * memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
1772
1773 2002-12-24  Bruno Haible  <bruno@clisp.org>
1774
1775         General infrasructure.
1776         * README: Rewritten.
1777         * onceonly.m4: New file.
1778         * onceonly_2_57.m4: New file.
1779
1780         Module atexit.
1781         * atexit.m4: New file.
1782
1783         Module strtod.
1784         * strtod.m4: New file.
1785
1786         Module strtol.
1787         * strtol.m4: New file.
1788
1789         Module strtoul.
1790         * strtoul.m4: New file.
1791
1792         Module memchr.
1793         * memchr.m4: New file.
1794
1795         Module memcmp.
1796         * memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
1797         (jm_FUNC_MEMCMP): Invoke it.
1798
1799         Module memcpy.
1800         * memcpy.m4: New file.
1801
1802         Module memmove.
1803         * memmove.m4: New file.
1804
1805         Module memset.
1806         * memset.m4: New file.
1807
1808         Module strcspn.
1809         * strcspn.m4: New file.
1810
1811         Module strpbrk.
1812         * strpbrk.m4: New file.
1813
1814         Module strstr.
1815         * strstr.m4: New file.
1816
1817         Module strerror.
1818         * strerror.m4: New file.
1819
1820         Module mktime.
1821         * mktime.m4: Renamed from jm-mktime.m4.
1822         (gl_PREREQ_MKTIME): New macro.
1823         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
1824
1825         Module malloc.
1826         * malloc.m4 (gl_PREREQ_MALLOC): New macro.
1827         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
1828         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
1829
1830         Module realloc.
1831         * realloc.m4 (gl_PREREQ_REALLOC): New macro.
1832         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
1833         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
1834
1835         Module strftime.
1836         * tm_gmtoff.m4: New file, extracted from strftime.m4.
1837         * strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
1838         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
1839         gl_TM_GMTOFF.
1840         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
1841
1842         Module xalloc.
1843         * xalloc.m4: New file.
1844
1845         Module alloca.
1846         * alloca.m4: New file.
1847
1848         Module putenv.
1849         * putenv.m4 (gl_PREREQ_PUTENV): New macro.
1850         (jm_FUNC_PUTENV): Invoke it.
1851
1852         Module setenv.
1853         * setenv.m4 (gt_FUNC_SETENV): New macro.
1854         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
1855         when invoked twice.
1856         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
1857         gt_FUNC_SETENV.
1858
1859         Module memrchr.
1860         * memrchr.m4: New file.
1861
1862         Module stpcpy.
1863         * stpcpy.m4: New file.
1864
1865         Module strcase.
1866         * strcase.m4: New file.
1867
1868         Module strdup.
1869         * strdup.m4: New file.
1870
1871         Module strnlen.
1872         * strnlen.m4: New file.
1873
1874         Module strndup.
1875         * strndup.m4: New file.
1876
1877         Module xstrtod.
1878         * xstrtod.m4: New file.
1879
1880         Module xstrtol.
1881         * xstrtol.m4: New file.
1882
1883         Module getdate.
1884         * getdate.m4: New file.
1885
1886         Module unlocked-io.
1887         * unlocked-io.m4: Renamed from jm-glibc-io.m4.
1888         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
1889         * jm-glibc-io.m4n: Remove file.
1890
1891         Module long-options.
1892         * long-options.m4: New file.
1893
1894         Module md5.
1895         * md5.m4: New file.
1896
1897         Module sha.
1898         * sha.m4: New file.
1899
1900         Module getstr.
1901         * getstr.m4: New file.
1902
1903         Module getline.
1904         * getline.m4 (gl_PREREQ_GETLINE): New macro.
1905         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
1906         <sys/types.h>, for size_t. Use the function name gnu_getline, not
1907         simply getline. Infoke gl_PREREQ_GETLINE.
1908
1909         Module obstack.
1910         * obstack.m4: New file.
1911
1912         Module hash.
1913         * hash.m4: New file.
1914
1915         Module readtokens.
1916         * readtokens.m4: New file.
1917
1918         Module strverscmp.
1919         * strverscmp.m4: New file.
1920
1921         Module stdbool.
1922         * stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for OSF/1.
1923
1924         Module strtoll.
1925         * strtoll.m4: New file.
1926
1927         Module strtoull.
1928         * strtoull.m4: New file.
1929
1930         Module strtoimax.
1931         * strtoimax.m4: New file.
1932
1933         Module strtoumax.
1934         * strtoumax.m4: New file.
1935
1936         Module xstrtoimax.
1937         * xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from jm_AC_PREREQ_XSTRTOIMAX.
1938         Moved the strtol prerequisites to strtol.m4.
1939         Moved the strtoll prerequisites to strtoll.m4.
1940         Moved the strtoimax prerequisites to strtoimax.m4.
1941
1942         Module xstrtoumax.
1943         * xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from jm_AC_PREREQ_XSTRTOUMAX.
1944         Moved the strtoul prerequisites to strtoul.m4.
1945         Moved the strtoull prerequisites to strtoull.m4.
1946         Moved the strtoumax prerequisites to strtoumax.m4.
1947
1948         Module chown.
1949         * chown.m4 (gl_PREREQ_CHOWN): New macro.
1950         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
1951
1952         Module dup2.
1953         * dup2.m4: New file.
1954
1955         Module ftruncate.
1956         * ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
1957         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
1958
1959         Module getgroups.
1960         * getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
1961         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
1962
1963         Module gettimeofday.
1964         * gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
1965         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
1966         gl_PREREQ_GETTIMEOFDAY.
1967
1968         Module mkdir.
1969         * mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
1970         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
1971
1972         Module mkstemp.
1973         * mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
1974         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
1975         jm_AC_TYPE_UINTMAX_T.
1976         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
1977
1978         Module stat.
1979         * stat.m4 (gl_PREREQ_STAT): New macro.
1980         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
1981
1982         Module lstat.
1983         * lstat.m4 (gl_PREREQ_LSTAT): New macro.
1984         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
1985
1986         Module timespec.
1987         * timespec.m4 (gl_TIMESPEC): New macro.
1988         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
1989         * st_mtim.m4: Indentation.
1990
1991         Module nanosleep.
1992         * nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
1993         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
1994         gl_PREREQ_NANOSLEEP.
1995
1996         Module regex.
1997         * regex.m4 (jm_PREREQ_REGEX): New macro.
1998         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
1999         (gl_REGEX): New macro.
2000
2001         Module rename.
2002         * rename.m4 (gl_PREREQ_RENAME): New macro.
2003         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
2004
2005         Module rmdir.
2006         * rmdir.m4: New file.
2007
2008         Module utime.
2009         * utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
2010         * utime.m4 (gl_PREREQ_UTIME): New macro.
2011         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
2012
2013         Module dirname.
2014         * dirname.m4: New file.
2015
2016         Module getopt.
2017         * getopt.m4: New file.
2018
2019         Module unistd-safer.
2020         * unistd-safer.m4: New file.
2021
2022         Module fnmatch.
2023         * fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
2024         declaration.
2025         (gl_PREREQ_FNMATCH_EXTRA): New macro.
2026         (gl_FUNC_FNMATCH_POSIX): New macro.
2027         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
2028         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
2029         simply fnmatch.
2030
2031         Module exclude.
2032         * exclude.m4: New file.
2033
2034         Module human.
2035         * human.m4: New file.
2036
2037         Module acl.
2038         * acl.m4: Nop.
2039
2040         Module backupfile.
2041         * backupfile.m4: New file.
2042         * d-ino.m4: Indentation.
2043
2044         Module fsusage.
2045         * fsusage.m4 (gl_FSUSAGE): New macro.
2046         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
2047         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
2048
2049         Module dirfd.
2050         * dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP requirements.
2051
2052         Module euidaccess.
2053         * euidaccess.m4: New file.
2054
2055         Module file-type.
2056         * file-type.m4: New file.
2057
2058         Module fileblocks.
2059         * fileblocks.m4: New file.
2060
2061         Module filemode.
2062         * filemode.m4: New file.
2063
2064         Module isdir.
2065         * isdir.m4: New file.
2066
2067         Module lchown.
2068         * lchown.m4 (gl_PREREQ_LCHOWN): New macro.
2069         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
2070
2071         Module makepath.
2072         * makepath.m4: New file.
2073
2074         Module modechange.
2075         * modechange.m4: New file.
2076
2077         Module mountlist.
2078         * mountlist.m4: New file.
2079         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
2080         Indentation.
2081
2082         Module path-concat.
2083         * path-concat.m4: New file.
2084
2085         Module pathmax.
2086         * pathmax.m4: New file.
2087
2088         Module same.
2089         * same.m4: New file.
2090
2091         Module save-cwd.
2092         * save-cwd.m4: New file.
2093
2094         Module savedir.
2095         * savedir.m4: New file.
2096
2097         Module xgetcwd.
2098         * xgetcwd.m4: New file.
2099         * getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
2100
2101         Module xreadlink.
2102         * xreadlink.m4: New file.
2103
2104         Module safe-read.
2105         * safe-read.m4: New file.
2106
2107         Module safe-write.
2108         * safe-write.m4: New file.
2109
2110         Module closeout.
2111         * closeout.m4: New file.
2112
2113         Module stdio-safer.
2114         * stdio-safer.m4: New file.
2115
2116         Module getpass.
2117         * getpass.m4: New file.
2118
2119         Module getugroups.
2120         * getugroups.m4: New file.
2121
2122         Module group-member.
2123         * group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
2124         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
2125
2126         Module idcache.
2127         * idcache.m4: New file.
2128
2129         Module userspec.
2130         * userspec.m4: New file.
2131
2132         Module gettime.
2133         * clock_time.m4: New file.
2134         * gettime.m4: New file.
2135
2136         Module settime.
2137         * settime.m4: New file.
2138
2139         Module posixtm.
2140         * posixtm.m4: New file.
2141
2142         Module gethostname.
2143         * gethostname.m4: New file.
2144
2145         Module canon-host.
2146         * canon-host.m4: New file.
2147
2148         Module gettext.
2149         * codeset.m4: New file, from gettext-0.11.5.
2150         * gettext.m4: New file, from gettext-0.11.5.
2151         * glibc21.m4: New file, from gettext-0.11.5.
2152         * iconv.m4: New file, from gettext-0.11.5.
2153         * intdiv0.m4: New file, from gettext-0.11.5.
2154         * inttypes-pri.m4: New file, from gettext-0.11.5.
2155         * inttypes.m4: New file, from gettext-0.11.5.
2156         * inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
2157         * isc-posix.m4: New file, from gettext-0.11.5.
2158         * lcmessage.m4: New file, from gettext-0.11.5.
2159         * lib-ld.m4: New file, from gettext-0.11.5.
2160         * lib-link.m4: New file, from gettext-0.11.5.
2161         * lib-prefix.m4: New file, from gettext-0.11.5.
2162         * progtest.m4: New file, from gettext-0.11.5.
2163         * stdint_h.m4: New file, from gettext-0.11.5 with modifications.
2164         * uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
2165         * ulonglong.m4: New file, from gettext-0.11.5 with modifications.
2166
2167         Module localcharset.
2168         * localcharset.m4: New file.
2169
2170         Module hard-locale.
2171         * hard-locale.m4: New file.
2172
2173         Module mbswidth.
2174         * mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
2175         onceonly macros.
2176         * mbrtowc.m4: Add comment.
2177
2178         Module memcasecmp.
2179         * memcasecmp.m4: New file.
2180
2181         Module memcoll.
2182         * memcoll.m4: New file.
2183
2184         Module unicodeio.
2185         * unicodeio.m4: New file.
2186
2187         Module rpmatch.
2188         * rpmatch.m4: New file.
2189
2190         Module yesno.
2191         * yesno.m4: New file.
2192
2193         Module exitfail.
2194         * exitfail.m4: New file.
2195
2196         Module c-stack.
2197         * c-stack.m4 (gl_C_STACK): New macro.
2198         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
2199
2200         Module error.
2201         * error.m4 (gl_ERROR): New macro.
2202         (jm_PREREQ_ERROR): Use onceonly macros.
2203
2204         Module fatal.
2205         * fatal.m4: New file.
2206
2207         Module getloadavg.
2208         * getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
2209         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
2210
2211         Module getpagesize.
2212         * getpagesize.m4: New file.
2213
2214         Module getusershell.
2215         * getusershell.m4: New file.
2216
2217         Module physmem.
2218         * physmem.m4: New file.
2219
2220         Module posixver.
2221         * posixver.m4: New file.
2222
2223         Module quotearg.
2224         * quotearg.m4: New file.
2225
2226         Module quote.
2227         * quote.m4: New file.
2228
2229         Module readutmp.
2230         * readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
2231
2232         Module sig2str.
2233         * sig2str.m4: New file.
2234
2235         Other.
2236         * longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
2237         ulonglong.m4.
2238         * intmax_t.m4: New file.
2239         * d-type.m4: Indentation.
2240         * jm-macros.m4: Update.
2241         * prereq.m4 (jm_PREREQ): Update.
2242         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
2243         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
2244         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
2245         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
2246         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
2247         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
2248         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
2249         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
2250         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
2251         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
2252         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
2253         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
2254         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
2255         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
2256         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
2257         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
2258         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
2259         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
2260         * readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
2261
2262 2002-12-18  Bruno Haible  <bruno@clisp.org>
2263
2264         * strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
2265         * jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
2266
2267 2002-12-17  Bruno Haible  <bruno@clisp.org>
2268
2269         * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
2270         stdlib.h, string.h.
2271
2272 2002-12-11  Bruno Haible  <bruno@clisp.org>
2273
2274         * setenv.m4: New file, from gettext-0.11.5.
2275
2276 2002-12-06  Paul Eggert  <eggert@twinsun.com>
2277
2278         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
2279         a pain in practice to deal with generated m4 files.  This change
2280         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
2281
2282         * Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
2283         and jm-glibc-io.m4, as they are no longer a special case.
2284         * jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
2285         kludge and the auto-generation stuff.  Check only whether the
2286         functions are declared, not whether they exist, since older hosts
2287         that don't declare the functions can't use the optimization anyway.
2288
2289 2002-07-06  Jim Meyering  <meyering@lucent.com>
2290
2291         * README: Don't mention Makefile.am.in.
2292         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
2293
2294 2002-06-11  Paul Eggert  <eggert@twinsun.com>
2295
2296         * fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
2297
2298 2002-06-22  Jim Meyering  <meyering@lucent.com>
2299
2300         * c-stack.m4: New file, from diffutils-2.8.2.
2301         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
2302
2303         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
2304         now that configure.ac uses AC_GNU_SOURCE.
2305         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
2306         * prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
2307
2308         Update to latest tools.  Suggestions from Paul Eggert.
2309         * stdbool.m4: New file, from diffutils-2.8.2.
2310         * gnu-source.m4: Update from diffutils-2.8.2.
2311         * fnmatch.m4: Likewise.
2312         * prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
2313         to AC_HEADER_STDBOOL
2314
2315 2002-06-21  Jim Meyering  <meyering@lucent.com>
2316
2317         * c-bs-a.m4: Add comment, from diffutils-2.8.2.
2318         * mbrtowc.m4: Likewise.
2319
2320         * mbstate_t.m4: Update from diffutils-2.8.2.
2321         * mbswidth.m4: Reflect name change:
2322         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
2323         * prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
2324
2325         * lib-link.m4: Update from gettext-0.11.2.
2326         * gettext.m4: Likewise.
2327
2328         * jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
2329         From Alfred M. Szmidt.
2330
2331 2002-05-19  Paul Eggert  <eggert@twinsun.com>
2332
2333         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
2334
2335 2002-06-07  Jim Meyering  <meyering@lucent.com>
2336
2337         * prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
2338         They're needed at least for NetBSD 1.5.2.
2339         ($statxfs_includes): Include those same headers.
2340         ($statxfs_includes): Include sys/vfs.h if available.
2341         ($statxfs_includes): Likewise for sys/statvfs.h.
2342         Check for the following members in both structs statfs and statvfs:
2343         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
2344
2345 2002-06-01  Jim Meyering  <meyering@lucent.com>
2346
2347         * d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
2348         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
2349
2350 2002-05-28  Jim Meyering  <meyering@lucent.com>
2351
2352         * readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
2353         Reported by Volker Borchert.
2354
2355 2002-05-27  Jim Meyering  <meyering@lucent.com>
2356
2357         * gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
2358         localtime.
2359
2360         * readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
2361         use the replacement function; it wouldn't resolve at link time.
2362         Reported by Volker Borchert.
2363
2364 2002-04-30  Jim Meyering  <meyering@lucent.com>
2365
2366         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
2367
2368 2002-04-29  Paul Eggert  <eggert@twinsun.com>
2369
2370         * prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
2371         Do not check for alloca.h (no longer used) or stdbool.h (was never
2372         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
2373
2374 2002-04-28  Paul Eggert  <eggert@twinsun.com>
2375
2376         * prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
2377
2378 2002-04-29  Jim Meyering  <meyering@lucent.com>
2379
2380         * jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
2381         * prereq.m4: Add jm_PREREQ_STRNLEN.
2382         Use AC_FUNC_STRNLEN here instead.
2383
2384         * jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
2385         With autoconf-2.53a, it's part of AC_PROG_CC.
2386
2387 2002-04-28  Paul Eggert  <eggert@twinsun.com>
2388
2389         * jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
2390         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
2391
2392 2002-04-24  Jim Meyering  <meyering@lucent.com>
2393
2394         * prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
2395         (jm_PREREQ): Use it.
2396
2397         * getloadavg.m4: Check for these headers: locale.h unistd.h
2398         mach/mach.h fcntl.h.
2399         Check for this function: setlocale.
2400
2401 2002-04-16  Jim Meyering  <meyering@lucent.com>
2402
2403         * prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
2404         ut_pid, ut_id, ut_exit.
2405
2406 2002-04-12  Jim Meyering  <meyering@lucent.com>
2407
2408         * ls-mntd-fs.m4 (checking for getmntinfo function...): Remove now-bogus
2409         check for f_type in sys/mount.h.  Instead, just test for the existence
2410         of the getmntinfo function.  Needed for Darwin 5.3.
2411
2412         * dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
2413         This is necessary at least on Darwin 5.3.
2414
2415         * jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
2416         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of strnlen.o
2417         in the library, and that makes some versions of ranlib object.
2418
2419 2002-04-09  Jim Meyering  <meyering@lucent.com>
2420
2421         * malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
2422         to be more precise.  Rather than saying we're checking whether the
2423         function `works', say what we're testing.
2424         * realloc.m4 (jm_FUNC_REALLOC): Likewise.
2425         Reported by Bruno Haible.
2426
2427 2002-02-27  Paul Eggert  <eggert@twinsun.com>
2428
2429         * jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
2430         Check for clock_settime.
2431
2432 2002-02-25  Paul Eggert  <eggert@twinsun.com>
2433
2434         * acl.m4: New file.
2435         * jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
2436         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
2437
2438 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
2439
2440         * codeset.m4: Upgrade to gettext-0.11.
2441         * gettext.m4: Upgrade to gettext-0.11.
2442         * glibc21.m4: Upgrade to gettext-0.11.
2443         * iconv.m4: Upgrade to gettext-0.11.
2444         * isc-posix.m4: Upgrade to gettext-0.11.
2445         * lcmessage.m4: Upgrade to gettext-0.11.
2446         * lib-ld.m4: New file, from gettext-0.11.
2447         * lib-link.m4: New file, from gettext-0.11.
2448         * lib-prefix.m4: New file, from gettext-0.11.
2449         * progtest.m4: Upgrade to gettext-0.11.
2450
2451 2002-02-15  Paul Eggert  <eggert@twinsun.com>
2452
2453         * prereq.m4 (jm_PREREQ_POSIXVER): New macro.
2454         (jm_PREREQ): Use it.
2455
2456 2002-01-26  Jim Meyering  <meyering@lucent.com>
2457
2458         * jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
2459         * strnlen.m4: Remove file, now that it's part of autoconf.
2460
2461 2002-01-22  Paul Eggert  <eggert@twinsun.com>
2462
2463         * jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
2464
2465 2002-01-19  Jim Meyering  <meyering@lucent.com>
2466
2467         * jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
2468         Remove useless quotes: DF_PROG="df".
2469         * strnlen.m4: New file.
2470
2471 2001-12-14  Jim Meyering  <meyering@lucent.com>
2472
2473         * jm-macros.m4 (jm_MACROS): Check for iswspace.
2474         Suggestion from Bruno Haible.
2475
2476 2001-11-20  Jim Meyering  <meyering@lucent.com>
2477
2478         * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
2479         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
2480
2481 2001-11-19  Jim Meyering  <meyering@lucent.com>
2482
2483         * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
2484         directory.  Use "conftestXXXXXX" as the template.
2485         Suggestion from Paul Eggert.
2486
2487         * mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor immediately,
2488         so the test doesn't mistakenly hit the max-open-files limit.
2489
2490 2001-11-18  Jim Meyering  <meyering@lucent.com>
2491
2492         * prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
2493
2494 2001-11-17  Jim Meyering  <meyering@lucent.com>
2495
2496         * mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
2497         Prompted by a report from Bob Proulx.
2498
2499         * jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
2500         Instead, require UTILS_FUNC_MKSTEMP.
2501
2502 2001-11-11  Jim Meyering  <meyering@lucent.com>
2503
2504         * jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
2505         Now, that's done as part of AC_FUNC_STRTOD.
2506
2507 2001-10-22  Paul Eggert  <eggert@twinsun.com>
2508
2509         * jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
2510         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
2511
2512 2001-11-10  Jim Meyering  <meyering@lucent.com>
2513
2514         * prereq.m4 (jm_PREREQ_PHYSMEM): New function.
2515         (jm_PREREQ): Use it.
2516
2517 2001-11-09  Jim Meyering  <meyering@lucent.com>
2518
2519         * jm-macros.m4: Require autoconf-2.52f.
2520         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
2521         Use these AC_-prefixed names, not the AM_-prefixed ones.
2522
2523         * afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
2524
2525 2001-11-04  Jim Meyering  <meyering@lucent.com>
2526
2527         * fpending.m4: Remove unused cruft that saved, set, and restored $DEFS.
2528
2529 2001-11-03  Jim Meyering  <meyering@lucent.com>
2530
2531         * jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
2532         of AC_DEFUN.
2533
2534         * dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
2535         know the name of the variable in the macro definition.
2536
2537 2001-11-01  Jim Meyering  <meyering@lucent.com>
2538
2539         * dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
2540         * jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
2541
2542 2001-10-20  Paul Eggert  <eggert@twinsun.com>
2543
2544         * error.m4 (jm_PREREQ_ERROR):
2545         Do not invoke AC_CHECK_FUNCS with strerror_r, as
2546         AC_FUNC_STRERROR_R does that.
2547         Check for strerror declaration.
2548
2549         * strerror_r.m4: Add copyright notice, as nontrivial m4 files
2550         are supposed to have them these days.
2551         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
2552         Merge changes from latest Autoconf CVS.
2553         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
2554         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
2555         POSIX decided to standardize on the int flavor of strerror_r.
2556
2557 2001-09-30  Jim Meyering  <meyering@lucent.com>
2558
2559         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
2560         `struct fsstat' has the `f_fstypename' member.
2561         Use that to define FS_TYPE, which is now used to make
2562         the getfsstat link test tighter.
2563
2564 2001-09-29  Jim Meyering  <meyering@lucent.com>
2565
2566         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
2567         [one-argument getmntent function]): Include stdio.h before mntent.h.
2568         SunOS 4.1.x needs it for the declaration of `FILE'.
2569         Patch by Volker Borchert.
2570
2571         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
2572         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
2573         sys/fs_types.h, and make the link-test for getfsstat guard #include
2574         directives with appropriate #if HAVE_*_H tests so that we can
2575         detect getfsstat on Apple Darwin1.3.7 systems.
2576         Reported by Nelson Beebe.
2577         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
2578
2579 2001-09-28  Paul Eggert  <eggert@twinsun.com>
2580
2581         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
2582         #defines strtoimax.  Also treat the other strto* functions
2583         like strtoimax.
2584
2585         * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
2586         Check for strtoul and strtoumax,
2587         as those declarations are made even in the signed case.
2588         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
2589         Likewise, for strtol and strtoimax.
2590
2591 2001-09-24  Jim Meyering  <meyering@lucent.com>
2592
2593         * gettext.m4: Use the version from gettext-0.10.40, not CVS.
2594
2595 2001-09-23  Jim Meyering  <meyering@lucent.com>
2596
2597         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
2598         instead of the mere test for existence of mntent.h.  The latter
2599         would get a false-positive on AIX 3.4 systems.
2600         In the outer getmntent if-block, don't die if neither of the getmntent
2601         tests succeeds.  Instead, just fall through and continue with the
2602         remaining tests.
2603
2604 2001-09-22  Jim Meyering  <meyering@lucent.com>
2605
2606         * gettext.m4: New file.  From gettext.
2607         * lcmessage.m4: Sync with gettext -- this changes only comments.
2608         * progtest.m4: Likewise
2609         * isc-posix.m4: Decrement serial number to sync with gettext.
2610         * glibc21.m4: Likewise.
2611
2612         * libintl.m4: Remove.  No longer used.
2613
2614 2001-09-20  Jim Meyering  <meyering@lucent.com>
2615
2616         * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
2617         strtoimax.
2618         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
2619         strtoumax.
2620
2621 2001-09-17  Jim Meyering  <meyering@lucent.com>
2622
2623         * chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
2624         * jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
2625         * nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
2626         * st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
2627         * utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
2628         whenever the right hand side need not be expanded by the shell.
2629
2630 2001-09-16  Paul Eggert  <eggert@twinsun.com>
2631
2632         * fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
2633         library.  It's not correct, as some older glibcs are buggy.
2634         fnmatch wasn't fixed until glibc 2.2.
2635
2636         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
2637         special shell magic here.
2638
2639 2001-09-16  Jim Meyering  <meyering@lucent.com>
2640
2641         * mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
2642         * jm-macros.m4: Require it.
2643
2644 2001-09-15  Jim Meyering  <meyering@lucent.com>
2645
2646         * jm-macros.m4: Check for help2man.
2647
2648 2001-09-11  Jim Meyering  <meyering@lucent.com>
2649
2650         * host-os.m4 (UTILS_HOST_OS): New file/macro.
2651         The body, by Paul Eggert, was moved here from configure.in.
2652         * jm-macros.m4: Require UTILS_HOST_OS.
2653
2654 2001-09-04  Paul Eggert  <eggert@twinsun.com>
2655
2656         * prereq.m4 (jm_PREREQ_XREADLINK): New macro.
2657         (jm_PREREQ): Use it.
2658
2659 2001-09-03  Paul Eggert  <eggert@twinsun.com>
2660
2661         * prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
2662         sys/param.h, as pathmax.h includes them.
2663
2664 2001-09-03  Paul Eggert  <eggert@twinsun.com>
2665
2666         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
2667         (jm_PREREQ_XGETCWD): New macro.
2668
2669         * getcwd.m4: New file.
2670
2671 2001-09-01  Jim Meyering  <meyering@lucent.com>
2672
2673         * jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
2674         Used by df.
2675
2676 2001-08-30  Paul Eggert  <eggert@twinsun.com>
2677
2678         Simplify code, partly by assuming autoconf 2.52 semantics.
2679
2680         * Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
2681
2682         * inttypes.m4 (AC_PREREQ): Bump to 2.52.
2683         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
2684         All uses removed.
2685         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
2686         Move AC_REQUIRE to next-to-top level, to avoid confusion.
2687         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
2688         * prereq.m4 (jm_PREREQ_HUMAN): Don't require jm_AC_HEADER_INTTYPES_H.
2689         * jm-macros.m4 (jm_MACROS): Likewise.
2690
2691         * uintmax_t.m4: Remove, as it duplicates inttypes.m4.
2692
2693         * xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
2694         Quote first arg of AC_DEFUN.
2695         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
2696         since they are needed to parse the include file even if we need
2697         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
2698         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
2699         but with opposite signedness.
2700
2701 2001-08-30  Paul Eggert  <eggert@twinsun.com>
2702
2703         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
2704         (jm_PREREQ_EXCLUDE): New macro.
2705
2706 2001-08-26  Jim Meyering  <meyering@lucent.com>
2707
2708         * jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
2709
2710         * xstrtoimax.m4: New file.
2711         * xstrtoumax.m4: Add comments explaining why we
2712         AC_REPLACE_FUNCS(strtol).
2713
2714 2001-06-20  Paul Eggert  <eggert@twinsun.com>
2715
2716         * inttypes.m4: Add AC_PREREQ(2.13).
2717         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
2718         (jm_AC_TYPE_INTMAX_T): New macro.
2719         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
2720
2721         * longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
2722
2723         * longlong.m4: Renamed from ulonglong.m4.
2724         * inttypes.m4: Renamed from inttypes_h.m4.
2725         * uintmax_t.m4: Removed.
2726
2727 2001-08-12  Jim Meyering  <meyering@lucent.com>
2728
2729         * afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
2730         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
2731         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
2732         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
2733         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
2734         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
2735         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
2736         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
2737         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
2738         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
2739         utime.m4, utimes.m4, xstrtoumax.m4:
2740         Quote the first argument in each use of AC_DEFUN.
2741
2742 2001-08-05  Jim Meyering  <meyering@lucent.com>
2743
2744         * jm-macros.m4: Require autoconf-2.52.
2745
2746 2001-08-03  Paul Eggert  <eggert@twinsun.com>
2747
2748         The following changes are from gettext 0.10.39 as maintained by
2749         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
2750
2751         * codeset.m4: Upgrade to serial AM1.
2752         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
2753         all uses changed.  Quote first arg of AC_DEFUN.
2754         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
2755
2756         * iconv.m4: Upgrade to serial AM2.
2757         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
2758         Add --with-libconv-prefix.
2759         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
2760         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
2761         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
2762         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
2763         * jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
2764
2765         * c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
2766         * getline.m4 (AM_FUNC_GETLINE): Likewise.
2767         * glibc21.m4 (jm_GLIBC21): Likewise.
2768         * inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
2769         * isc-posix.m4 (AC_ISC_POSIX): Likewise.
2770         * lcmessage.m4 (AM_LC_MESSAGES): Likewise.
2771         * progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
2772         * uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
2773         * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
2774
2775         * getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
2776         string.h any more.
2777
2778         * progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
2779         not the default value.
2780
2781         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
2782         * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
2783         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
2784         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
2785         Also check for iswcntrl, used for wcwidth fallback.
2786         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
2787         to Autoconf 2.13.
2788
2789 2001-08-03  Jim Meyering  <meyering@lucent.com>
2790
2791         * mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
2792         as it was in the original.  Reported by Paul Eggert.
2793
2794 2001-07-16  Jim Meyering  <meyering@lucent.com>
2795
2796         * gettimeofday.m4: New file.
2797         Prompted by a report from Bernhard Baehr.
2798
2799 2001-07-15  Jim Meyering  <meyering@lucent.com>
2800
2801         * Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h stuff.
2802         Now it's in ../Makefile.cfg.
2803
2804 2001-07-04  Jim Meyering  <meyering@lucent.com>
2805
2806         * Makefile.am.in (glibc-io.struct): New target.  Rework the code
2807         that generates jm-glibc-io.m4 so that it doesn't trigger any make
2808         distcheck failure.
2809
2810 2001-07-02  Jim Meyering  <meyering@lucent.com>
2811
2812         The following changes were prompted by suggestions from Bruno Haible.
2813
2814         * jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
2815         is now generated.
2816         * Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
2817         definition of EXTRA_DIST.
2818         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
2819         ensure that the generated file is created/updated whenever the list
2820         of $(unlocked_functions) is changed.
2821         (jm-glibc-io.m4): New rule.
2822         (unlocked-io.h): New rule -- currently unused.
2823
2824 2001-06-24  Jim Meyering  <meyering@lucent.com>
2825
2826         * regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
2827         unmatched right bracket, rather than kludging it with an extra,
2828         falsely-matching quote in a comment.  Patch by Akim Demaille.
2829
2830 2001-05-27  Jim Meyering  <meyering@lucent.com>
2831
2832         * prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
2833         Check for ut_type in struct utmp.
2834
2835 2001-05-22  Jim Meyering  <meyering@lucent.com>
2836
2837         * strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
2838         now that we use the package-supplied version unconditionally.
2839         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
2840
2841 2001-05-21  Jim Meyering  <meyering@lucent.com>
2842
2843         * regex.m4: Change a couple backticks to single quotes to avoid shell
2844         syntax errors.
2845
2846 2001-05-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
2847
2848         * dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
2849
2850 2001-05-11  Paul Eggert  <eggert@twinsun.com>
2851
2852         * strftime.m4 (jm_FUNC_GNU_STRFTIME):
2853         Don't bother to check library strftime, since
2854         we'll be using our own my_strftime function anyway.
2855         Define my_strftime instead of strftime.
2856
2857 2001-05-15  Jim Meyering  <meyering@lucent.com>
2858
2859         * regex.m4: Use proper quoting so brackets appear in the test program.
2860         Reported by, and with help from, Bruno Haible.
2861
2862 2001-05-13  Jim Meyering  <meyering@lucent.com>
2863
2864         * jm-macros.m4 (major_t, minor_t): Define to unsigned int if undefined.
2865
2866 2000-11-26  Paul Eggert  <eggert@twinsun.com>
2867
2868         * jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
2869
2870 2001-04-21  Jim Meyering  <meyering@lucent.com>
2871
2872         * rmdir-errno.m4: Write to a new file, so that a restrictive umask
2873         doesn't interfere.
2874
2875 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
2876
2877         * ftruncate.m4: Check for chsize.
2878         Link with ftruncate.o unconditionally if ftruncate is missing.
2879         This was required when cross-compiling to i586-mingw32msvc.
2880
2881 2001-03-24  Jim Meyering  <meyering@lucent.com>
2882
2883         * jm-macros.m4: Require autoconf-2.49d.
2884
2885 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
2886
2887         * iconv.m4 (jm_ICONV): Recommend GNU libiconv.
2888
2889 2001-03-17  Jim Meyering  <meyering@lucent.com>
2890
2891         * memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
2892         now that the version in autoconf is equivalent.
2893         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
2894
2895         * error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
2896         Suggestion from Akim Demaille.
2897
2898         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
2899         (jm_PREREQ_TEMPNAME): New function.
2900
2901 2001-02-25  Paul Eggert  <eggert@twinsun.com>
2902
2903         * jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
2904         lacks mkstemp.  Compile our own tempname.c if we compile our own
2905         mkstemp.c, as mkstemp relies on tempname.
2906
2907 2001-03-01  Jim Meyering  <meyering@lucent.com>
2908
2909         * dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
2910         AH_VERBATIM really does output its argument verbatim.
2911
2912 2001-02-18  Paul Eggert  <eggert@twinsun.com>
2913
2914         * jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
2915
2916 2001-02-17  Jim Meyering  <meyering@lucent.com>
2917
2918         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
2919         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
2920         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
2921         UnixWare 7.1.1.
2922
2923         * mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
2924         rather than AC_CACHE_VAL.
2925
2926 2001-02-17  Paul Eggert  <eggert@twinsun.com>
2927
2928         * mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
2929         * mbswidth.m4 (jm_PREREQ_MBSWIDTH):
2930         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
2931         * prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
2932
2933 2001-02-07  Jim Meyering  <meyering@lucent.com>
2934
2935         * regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
2936
2937 2001-02-05  Jim Meyering  <meyering@lucent.com>
2938
2939         * jm-macros.m4: Require autoconf-2.14d (not yet released), because
2940         it includes the patch required for `large file' support with at least
2941         HP-UX's 10.20 /bin/cc.
2942
2943 2001-02-03  Jim Meyering  <meyering@lucent.com>
2944
2945         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
2946         AS_IF, now that it works once again (mysteriously).
2947         * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
2948
2949 2001-01-30  Jim Meyering  <meyering@lucent.com>
2950
2951         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
2952         * chown.m4: Rename conftestchown to conftest.chown.
2953         * rename.m4: s/conftestdir/conftest.d1/ and s/conftestdir2/conftest.d2/.
2954         * utimes.m4: s/conftestdata/conftest.data/
2955         Inspired by Pavel Roskin's change in autoconf.
2956
2957 2001-01-27  Jim Meyering  <meyering@lucent.com>
2958
2959         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
2960         a use of AS_IF.
2961         * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
2962
2963 2001-01-26  Jim Meyering  <meyering@lucent.com>
2964
2965         * prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
2966         quotearg.c includes it.
2967
2968 2001-01-15  Bruno Haible  <haible@clisp.cons.org>
2969
2970         * iconv.m4 (jm_ICONV): Also check whether the iconv declaration
2971         has const.
2972
2973 2001-01-20  Jim Meyering  <meyering@lucent.com>
2974
2975         Be sure that headers are checked before used in code compiled
2976         for the type checks.
2977         * jm-macros.m4 (jm_MACROS): Remove all header checks.
2978         In place of that, invoke jm_CHECK_ALL_TYPES.
2979         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
2980         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
2981         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
2982         The check for ssize_t was mistakenly run before the test for unistd.h.
2983
2984         The configure-time check for stdbool.h was missing.
2985         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
2986         (jm_PREREQ_HASH): New function.
2987
2988 2001-01-17  Jim Meyering  <meyering@lucent.com>
2989
2990         * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
2991         for autoconf-2.49c.
2992         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
2993
2994 2001-01-14  Jim Meyering  <meyering@lucent.com>
2995
2996         * rename.m4: Use temporary directories named conftestdir{,2}, not
2997         foo and bar.  Create conftestdir/ in the script, not in the C code.
2998         Remove directories in the script, not in the C code.
2999         Remove conftestdir{,2} before trying to create the directory.
3000         Make the entire configure script fail if the mkdir fails.
3001
3002 2001-01-02  Volker Borchert  <bt@teknon.de>
3003
3004         * rename.m4: New file.
3005         * jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
3006
3007 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
3008
3009         * libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
3010         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
3011         so `make install' also works in VPATH builds.
3012
3013 2001-01-01  Jim Meyering  <meyering@lucent.com>
3014
3015         * prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available), even
3016         on systems with utmpx.h.  It's necessary for the declaration of utmp's
3017         ut_user member.  Reported by Andreas Jaeger.
3018
3019         * check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if available.
3020         They are required for the declarations of getgrgid and getpwuid resp.
3021         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
3022         Reported by Andreas Jaeger.
3023
3024 2000-12-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
3025
3026         * libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
3027         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
3028         can be used in subdirectories.
3029
3030 2000-12-26  Jim Meyering  <meyering@lucent.com>
3031
3032         * dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work better
3033         with autoheader.
3034
3035 2000-12-17  Jim Meyering  <meyering@lucent.com>
3036
3037         * dos.m4 (jm_AC_DOS): New file and macro.
3038         * jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
3039
3040 2000-12-06  Paul Eggert  <eggert@twinsun.com>
3041
3042         * off_t-format.m4: Remove this file.
3043         * jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
3044
3045 2000-12-06  Jim Meyering  <meyering@lucent.com>
3046
3047         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the replacement
3048         strtoull, we may well need the replacement strtoul, too.
3049         Check for declarations of strtoul and strtoull.
3050         Check for strtol.  Mainly as a cue to cause automake to include
3051         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
3052         Check for limits.h -- strtol.c needs it.
3053
3054 2000-12-02  Jim Meyering  <meyering@lucent.com>
3055
3056         * off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
3057         * jm-macros.m4 (jm_MACROS): require it.
3058
3059 2000-11-30  Jim Meyering  <meyering@lucent.com>
3060
3061         * jm-macros.m4 (jm_MACROS): Check for stdint.h.
3062
3063 2000-11-30  Jim Meyering  <meyering@lucent.com>
3064
3065         * getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
3066
3067 2000-11-03  Bruno Haible  <haible@clisp.cons.org>
3068
3069         * jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
3070
3071 2000-11-04  Jim Meyering  <meyering@lucent.com>
3072
3073         * regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
3074
3075 2000-10-29  Jim Meyering  <meyering@lucent.com>
3076
3077         * fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf renaming.
3078         * ls-mntd-fs.m4: Likewise
3079
3080 2000-10-28  Jim Meyering  <meyering@lucent.com>
3081
3082         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
3083         (jm_PREREQ_MEMCHR): New function.
3084
3085 2000-10-21  Jim Meyering  <meyering@lucent.com>
3086
3087         * check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
3088         * prereq.m4 (jm_PREREQ_DIRNAME): New macro.
3089         * jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
3090
3091 2000-09-18  Jim Meyering  <meyering@lucent.com>
3092
3093         * getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of LIBS.
3094         Otherwise, everyone ends up linking with -lelf for some configurations.
3095         Reported by Mike Stone.
3096
3097 2000-08-26  Jim Meyering  <meyering@lucent.com>
3098
3099         * jm-macros.m4: Use jm_FUNC_FPENDING.
3100         * fpending.m4: New file.
3101
3102 2000-08-20  Jim Meyering  <meyering@lucent.com>
3103
3104         * check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
3105         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
3106         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
3107
3108 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
3109
3110         Improve fileutils installation on systems where running
3111         programs (like install) can't be unlinked.
3112         * unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
3113         * jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
3114
3115 2000-08-06  Paul Eggert  <eggert@twinsun.com>
3116
3117         * mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
3118         not char, for compatibility with glibc 2.1.3 strftime.c.
3119
3120 2000-07-23  Paul Eggert  <eggert@twinsun.com>
3121
3122         * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
3123
3124 2000-07-23  Jim Meyering  <meyering@lucent.com>
3125
3126         * check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these, too:
3127         getgrgid, getpwuid, getuid.
3128
3129 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
3130
3131         * mbswidth.m4: New file.
3132         * prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
3133
3134 2000-07-14  Jim Meyering  <meyering@lucent.com>
3135
3136         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require jm_AC_TYPE_UINTMAX_T.
3137
3138 2000-07-10  Paul Eggert  <eggert@twinsun.com>
3139
3140         From a suggestion by Bruno Haible.
3141         * mbstate_t.m4 (AC_MBSTATE_T):
3142         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
3143         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
3144         and mbstate_t, to a single-part test that simply defines mbstate_t.
3145         * prereq.m4 (jm_PREREQ_QUOTEARG): s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
3146
3147 2000-07-10  Jim Meyering  <meyering@lucent.com>
3148
3149         * strerror_r.m4: Mirror the correction made in autoconf.
3150
3151         * gnu-source.m4: Output to confdefs.h directly.
3152         Suggestion from Akim Demaille.
3153
3154 2000-07-09  Jim Meyering  <meyering@lucent.com>
3155
3156         * jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
3157         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
3158
3159         * gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
3160         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
3161
3162 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
3163
3164         * strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
3165         to strerror_r.
3166         Include <ctype.h> for use of isalpha.
3167
3168 2000-07-05  Paul Eggert  <eggert@twinsun.com>
3169         and Bruno Haible  <haible@clisp.cons.org>
3170
3171         * mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
3172         only if the test for an object-type mbstate_t fails.  This
3173         prevents us from mistakenly reporting that mbstate_t is a
3174         system object type after we "#define mbstate_t int" to work
3175         around its lack.
3176
3177 2000-07-04  Jim Meyering  <meyering@lucent.com>
3178
3179         * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
3180         of the deprecated AC_CHECKING.
3181
3182 2000-07-03  Jim Meyering  <meyering@lucent.com>
3183
3184         * check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
3185
3186 2000-07-03  Paul Eggert  <eggert@twinsun.com>
3187
3188         * mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
3189         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
3190
3191 2000-07-02  Jim Meyering  <meyering@lucent.com>
3192
3193         * mbstate_t.m4: Also define mbstate_t, if necessary.
3194
3195         * chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
3196         AC_LIBOBJ(function_name).
3197         * chown.m4: Likewise.
3198         * fnmatch.m4: Likewise.
3199         * ftruncate.m4: Likewise.
3200         * getgroups.m4: Likewise.
3201         * getline.m4: Likewise.
3202         * group-member.m4: Likewise.
3203         * jm-macros.m4: Likewise.
3204         * lstat.m4: Likewise.
3205         * malloc.m4: Likewise.
3206         * memcmp.m4: Likewise.
3207         * nanosleep.m4: Likewise.
3208         * putenv.m4: Likewise.
3209         * realloc.m4: Likewise.
3210         * regex.m4: Likewise.
3211         * stat.m4: Likewise.
3212         * strftime.m4: Likewise.
3213
3214 2000-07-01  Jim Meyering  <meyering@lucent.com>
3215
3216         * ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
3217         problem.
3218
3219 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
3220
3221         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
3222         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
3223
3224 2000-07-01  Jim Meyering  <meyering@lucent.com>
3225
3226         * uptime.m4: Put double quotes around use of $cross_compiling.
3227
3228 2000-06-28  Jim Meyering  <meyering@lucent.com>
3229
3230         * mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not included
3231         by quotearg.c, for which we perform this test.  From Bruno Haible.
3232
3233 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
3234
3235         * check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
3236         * prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
3237         <utmpx.h> exists, put readutmp.o into LIBOBJS.
3238
3239 2000-06-25  Jim Meyering  <meyering@lucent.com>
3240
3241         * mbstate_t.m4: Include stdio.h before wchar.h to work around
3242         Linux header bug when _XOPEN_SOURCE is defined to 500.
3243
3244 2000-06-24  Jim Meyering  <meyering@lucent.com>
3245
3246         * strerror_r.m4: Revive this file -- to try out an experimental
3247         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
3248         for which strerror does return char*, but which lacks a conveniently
3249         accessible declaration of the function.  If the compile-test says
3250         strerror_r doesn't work, then resort to a `run'-test that works on
3251         BeOS and segfaults on DEC Unix.
3252
3253 2000-06-19  Paul Eggert  <eggert@twinsun.com>
3254
3255         * mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
3256         * prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
3257
3258 2000-06-23  Jim Meyering  <meyering@lucent.com>
3259
3260         * afs.m4: Add missing AC_MSG_RESULT.
3261         Reported by Bruno Haible.
3262
3263         * fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
3264         Suggestion from Bruno Haible.
3265
3266 2000-06-21  Jim Meyering  <meyering@lucent.com>
3267
3268         * jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
3269
3270 2000-06-18  Jim Meyering  <meyering@lucent.com>
3271
3272         * jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
3273
3274         * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
3275         `checking whether...' message to be consistent with that of the
3276         lstat test.
3277
3278 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
3279
3280         * glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
3281
3282 2000-06-12  Jim Meyering  <meyering@lucent.com>
3283
3284         * getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with AC_FUNC_GETLOADAVG
3285         from autoconf, and tweak the latter to accept an optional argument.
3286         * jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
3287         the optional argument, `lib'.
3288
3289 2000-06-08  Jim Meyering  <meyering@lucent.com>
3290
3291         * largefile.m4: Remove file (now that it's part of autoconf).
3292
3293 2000-06-04  Paul Eggert  <eggert@twinsun.com>
3294
3295         Rewrite largefile configuration so that we don't need to run
3296         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
3297         AC_CANONICAL_HOST in configure.in -- jmm]
3298
3299         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
3300         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
3301         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
3302         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
3303         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
3304         All uses changed.
3305         Instead of inspecting the output of getconf, try to compile the
3306         test program without and with the macro definition.
3307         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
3308         for getconf.  Instead, check for the needed flags by compiling
3309         test programs.
3310
3311 2000-06-03  Jim Meyering  <meyering@lucent.com>
3312
3313         * prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
3314         now that autoconf requires that.
3315
3316         * jm-glibc-io.m4: Add a kludge to make autoheader emit the required
3317         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
3318         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
3319
3320 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
3321
3322         * glibc21.m4: New file.
3323         * jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
3324
3325 2000-05-28  Jim Meyering  <meyering@lucent.com>
3326
3327         * jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
3328         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
3329         * stat.m4: Likewise.
3330         * lstat.m4: Likewise.
3331         * lstat-slash.m4: Remove file (absorbed into autoconf).
3332
3333         * jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
3334         * strerror_r.m4: Remove file (absorbed into autoconf).
3335
3336 2000-05-26  Jim Meyering  <meyering@lucent.com>
3337
3338         * uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
3339
3340 2000-05-24  Jim Meyering  <meyering@lucent.com>
3341
3342         * prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
3343         autoconf requires that.
3344         * lib-check.m4: Likewise.
3345         * jm-macros.m4: Likewise.
3346         * strftime.m4: Likewise.
3347
3348         * check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in AC_CHECK_DECLS,
3349         now that autoconf requires that.
3350
3351 2000-05-22  Jim Meyering  <meyering@lucent.com>
3352
3353         * stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
3354         * lstat.m4: Likewise.
3355
3356 2000-05-20  Jim Meyering  <meyering@lucent.com>
3357
3358         * prereq.m4 (jm_PREREQ_HUMAN): New macro.
3359         (jm_PREREQ): Use it.
3360
3361 2000-05-09  Jim Meyering  <meyering@lucent.com>
3362
3363         * gettext.m4: Rename this...
3364         * libintl.m4: ...to this.
3365
3366 2000-05-06  Jim Meyering  <meyering@lucent.com>
3367
3368         * jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
3369         (AC_REPLACE_FUNCS): Add strnlen.
3370
3371         * rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
3372         * jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
3373
3374         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
3375         AC_SEARCH_LIBS call for nanosleep.
3376         (LIB_NANOSLEEP): Set and AC_SUBST.
3377
3378 2000-05-03  Paul Eggert  <eggert@twinsun.com>
3379
3380         * largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
3381         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
3382         2.1.3 bug.  This avoids a clash when files like regex.c define
3383         _GNU_SOURCE.
3384
3385 2000-05-05  Jim Meyering  <meyering@lucent.com>
3386
3387         * jm-macros.m4 (jm_MACROS): Save and restore LIBS around AC_SEARCH_LIBS
3388         call for clock_gettime.
3389         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
3390
3391         * search-libs.m4: Update from autoconf.
3392
3393         su doesn't work on Solaris 2.6.
3394         * lib-check.m4: When checking for struct spwd.sp_pwdp, also include
3395         <shadow.h>.  Reported by Dragos Harabor.
3396
3397 2000-05-03  Jim Meyering  <meyering@lucent.com>
3398
3399         * check-decl.m4 (AC_CHECK_DECLS): Add strndup.
3400
3401 2000-05-02  Paul Eggert  <eggert@twinsun.com>
3402
3403         * largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
3404         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
3405         compile-time test, rather than inspecting host and OS, to
3406         decide whether to define _LARGEFILE_SOURCE.
3407
3408 2000-05-01  Jim Meyering  <meyering@lucent.com>
3409
3410         * fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
3411
3412         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
3413         Based on a patch from Bruno Haible.
3414
3415 2000-04-18  Jim Meyering  <meyering@lucent.com>
3416
3417         * prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
3418         (jm_PREREQ): Use it.
3419
3420 2000-04-17  Jim Meyering  <meyering@lucent.com>
3421
3422         Get it right :-)
3423         * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
3424         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
3425         Suggestion from Akim Demaille.
3426
3427 2000-04-14  Jim Meyering  <meyering@lucent.com>
3428
3429         * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg form
3430         of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets clobbered.
3431
3432 2000-04-13  Jim Meyering  <meyering@lucent.com>
3433
3434         * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new AH_VERBATIM
3435         to insert required #ifndef into config.h.in.
3436         Suggestion from Akim Demaille.
3437
3438 2000-04-12  Jim Meyering  <meyering@lucent.com>
3439
3440         * getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
3441         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
3442         Christian Krackowizer.
3443
3444         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
3445         * jm-macros.m4 (_GNU_SOURCE): Define.
3446         (AC_SYS_LARGEFILE): Require.
3447         (AM_C_PROTOTYPES): Require.
3448
3449 2000-04-05  Paul Eggert  <eggert@twinsun.com>
3450
3451         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
3452         IRIX if the installer said otherwise.
3453
3454 2000-04-05  Jim Meyering  <meyering@lucent.com>
3455
3456         Portability tweaks required for ultrix4.3.
3457         * check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
3458         (jm_CHECK_DECLS): Add getutent to the list of functions.
3459         (_jm_DECL_HEADERS): Add utmpx.h.
3460         From John David Anglin.
3461
3462         * strftime.m4: Back out the 2000-04-02 change.
3463         Instead of that change, simply undefine putenv in the test program.
3464
3465 2000-04-03  Jim Meyering  <meyering@lucent.com>
3466
3467         * gettext.m4: Fix typo in comment.
3468
3469         * codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
3470         textutils/configure.in).  Suggestion from Paul Eggert.
3471         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
3472
3473 2000-04-02  Paul Eggert  <eggert@twinsun.com>
3474
3475         * strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
3476         variable in the shell rather than using putenv, which isn't
3477         portable.  This avoids the configure-time inter-test dependency
3478         on the potentially-renamed putenv function.
3479
3480 2000-03-30  Paul Eggert  <eggert@twinsun.com>
3481
3482         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
3483         before checking struct stat.st_blksize, so that
3484         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
3485
3486 2000-03-29  Paul Eggert  <eggert@twinsun.com>
3487
3488         * strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
3489         since strftime.c uses HAVE_STRFTIME to decide whether to use
3490         the underlying strftime.
3491
3492 2000-03-10  Jim Meyering  <meyering@lucent.com>
3493
3494         * lib-check.m4: Look for getspnam in -lgen, too.
3495         From Marco Franzen.
3496
3497 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
3498
3499         * codeset.m4: New file.
3500         * iconv.m4: New file.
3501         * jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
3502
3503 2000-03-04  Jim Meyering  <meyering@lucent.com>
3504
3505         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
3506         for lib/localcharset.c.
3507
3508 2000-03-03  Jim Meyering  <meyering@lucent.com>
3509
3510         * regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
3511
3512 2000-03-02  Jim Meyering  <meyering@lucent.com>
3513
3514         * timespec.m4: Require AC_HEADER_TIME before the cache check so
3515         the messages come out on separate lines.
3516
3517         * jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
3518         rather than jm_CHECK_DECLARATIONS.
3519         * decl.m4: Remove now-unused file.
3520
3521         * check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and geteuid.
3522
3523 2000-02-27  Jim Meyering  <meyering@lucent.com>
3524
3525         * check-decl.m4: Add getenv to the list.
3526
3527 2000-02-23  Jim Meyering  <meyering@lucent.com>
3528
3529         * check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
3530         in place of my hack.
3531
3532 2000-02-10  Jim Meyering  <meyering@lucent.com>
3533
3534         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
3535         gnu_nanosleep to rpl_nanosleep.
3536
3537 2000-02-09  Jim Meyering  <meyering@lucent.com>
3538
3539         * lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
3540         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
3541
3542 2000-02-08  Akim Demaille  <akim@epita.fr>
3543
3544         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
3545         `[' and `]' and remove uses of `changequote'.
3546         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
3547         (AC_SYS_LARGEFILE): Likewise.
3548         * gettext.m4 (AM_GNU_GETTEXT): Likewise.
3549         * strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
3550         of changequote.
3551         * regex.m4 (jm_INCLUDED_REGEX): Likewise.
3552         * readdir.m4 (jm_FUNC_READDIR): Likewise
3553         * memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
3554         * getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
3555
3556 2000-02-05  Jim Meyering  <meyering@lucent.com>
3557
3558         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
3559         Remove explicit use of AC_HEADER_TIME.  It is required by
3560         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
3561         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
3562         in autoconf whereby the expansion of the latter ended up preceding
3563         the expansion of its prerequisite, AC_HEADER_TIME.
3564         Reported by Volker Borchert.
3565
3566 2000-02-03  Jim Meyering  <meyering@lucent.com>
3567
3568         * prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
3569
3570 2000-02-02  Jim Meyering  <meyering@lucent.com>
3571
3572         * prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
3573         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
3574         Reported by Eli Zaretskii.
3575
3576 2000-01-31  Jim Meyering  <meyering@lucent.com>
3577
3578         * check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
3579         functions.  Add the time.h and sys/time.h headers along with the
3580         AC_REQUIRE'ment of AC_HEADER_TIME.
3581
3582 2000-01-30  Jim Meyering  <meyering@lucent.com>
3583
3584         * lib-check.m4: Clean up some kludgy old shadow password tests.
3585
3586         * prereq.m4 (utmp_includes): Define.
3587         Check for ut_user and ut_name members in both struct utmpx
3588         and struct utmp.
3589
3590 2000-01-29  Jim Meyering  <meyering@lucent.com>
3591
3592         * lib-check.m4: New file containing library-related checks from
3593         fileutils and sh-utils (textutils had none).
3594
3595 2000-01-28  Jim Meyering  <meyering@lucent.com>
3596
3597         * perl.m4: Change format of warning message to look more like that
3598         from the missing script.  Suggestion from François Pinard.
3599
3600 2000-01-25  Jim Meyering  <meyering@lucent.com>
3601
3602         * timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as well
3603         as time.h in the compile check.
3604         * nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
3605         Fix typo in cross-compiling case: s/yes/no/.
3606
3607 2000-01-23  Jim Meyering  <meyering@lucent.com>
3608
3609         * jm-macros.m4: Move df-related tests here from fileutils/configure.in
3610
3611         * ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
3612         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
3613
3614         * fsusage.m4: New file.  Extracted from fileutils/configure.in.
3615         s/space/ac_fsusage_space/.
3616         (jm_FILE_SYSTEM_USAGE): Take two parameters.
3617
3618         * ftruncate.m4: New file (derived from part of fileutils/configure.in).
3619         * jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
3620         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
3621
3622         * jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
3623         AC_SUBST these here, rather than just in sh-util/configure.in, so
3624         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
3625         all the same.
3626         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
3627         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
3628         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
3629         (AC_SUBST(POW_LIBM)): Likewise.
3630         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
3631
3632 2000-01-22  Jim Meyering  <meyering@lucent.com>
3633
3634         * jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
3635
3636         * prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
3637
3638         * jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
3639         configure.in
3640         (AC_CHECK_HEADERS): Likewise for sh-utils.
3641         (AC_CHECK_HEADERS): Likewise for textutils.
3642         Merge the three lists of headers.
3643
3644         * prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
3645         from fileutils' configure.in.
3646
3647         * decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)' code.
3648         Moved tests into their own function (_jm_DECL_HEADERS) in check-decl.m4.
3649
3650         * check-decl.m4: Use #if rather than #ifdef.
3651         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
3652         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
3653         (_jm_DECL_HEADERS): Define new function.
3654         (jm_CHECK_DECLARATIONS): Require it.
3655
3656 2000-01-19  Jim Meyering  <meyering@lucent.com>
3657
3658         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
3659         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
3660         defines `struct timespec' in <sys/time.h>
3661
3662         * c-bs-a.m4: Remove uses of changequote altogether.
3663         Thanks to Akim for explaining.
3664
3665 2000-01-16  Jim Meyering  <meyering@lucent.com>
3666
3667         * jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
3668         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
3669         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
3670         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
3671
3672 2000-01-16  Jim Meyering  <meyering@lucent.com>
3673
3674         * c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
3675         because the latter didn't work.
3676
3677 2000-01-15  Jim Meyering  <meyering@lucent.com>
3678
3679         * jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
3680         (AC_REPLACE_FUNCS): Add memcpy and memset.
3681         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
3682         Add strpbrk.
3683         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
3684
3685 2000-01-12  Jim Meyering  <meyering@lucent.com>
3686
3687         * prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
3688         (jm_PREREQ): Use it.
3689         (jm_PREREQ_READUTMP): New macro.
3690         (jm_PREREQ): Use it.
3691
3692 2000-01-11  Paul Eggert  <eggert@twinsun.com>
3693
3694         Quote multibyte characters correctly.
3695         * c-bs-a.m4: New file.
3696         * prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
3697         (jm_PREREQ): Use it.
3698
3699 2000-01-11  Paul Eggert  <eggert@twinsun.com>
3700
3701         * uintmax_t.m4: Port to autoconf 2.13.
3702
3703 2000-01-08  Jim Meyering  <meyering@ascend.com>
3704
3705         * strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
3706         * jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
3707
3708 2000-01-04  Jim Meyering  <meyering@ascend.com>
3709
3710         * d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
3711         jm_STRUCT_DIRENT_D_TYPE.
3712         * d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
3713         jm_STRUCT_DIRENT_D_INO.
3714         * utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
3715         jm_STRUCT_UTIMBUF.
3716         * jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/ renamings.
3717         * utime.m4: Likewise.
3718
3719         * timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
3720         * jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
3721
3722 2000-01-03  Paul Eggert  <eggert@twinsun.com>
3723
3724         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
3725         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
3726
3727 2000-01-02  Jim Meyering  <meyering@ascend.com>
3728
3729         * search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
3730         remember if this is necessary.
3731
3732 1999-12-26  Jim Meyering  <meyering@ascend.com>
3733
3734         * jm-macros.m4: Use it here.
3735         * nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
3736
3737 1999-12-23  Jim Meyering  <meyering@ascend.com>
3738
3739         * jm-macros.m4: Check for clock_gettime (moved from
3740         fileutils/configure.in)
3741         Check for gettimeofday.
3742
3743 1999-12-20  Jim Meyering  <meyering@ascend.com>
3744
3745         * strftime.m4: Remove kludge, now that I'm using the fixed
3746         autoconf-2.14a-1999-12-20.
3747
3748 1999-12-19  Jim Meyering  <meyering@ascend.com>
3749
3750         * lstat-slash.m4: New file.
3751         * jm-macros.m4: Use the new macro:
3752         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
3753
3754 1999-12-07  Jim Meyering  <meyering@ascend.com>
3755
3756         * perl.m4: Require that File::Compare be available, too.
3757         Too many systems seem to lack it.
3758
3759         * strftime.m4: Add checks for most of the cpp macros tested in
3760         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
3761
3762 1999-11-18  Paul Eggert  <eggert@twinsun.com>
3763
3764         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
3765         problem with the QNX 4.25 shell, which doesn't propagate exit
3766         status of failed commands inside shell assignments.
3767
3768 1999-11-17  Jim Meyering  <meyering@ascend.com>
3769
3770         * gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
3771
3772 1999-11-07  Jim Meyering  <meyering@ascend.com>
3773
3774         * getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
3775
3776 1999-11-06  Jim Meyering  <meyering@ascend.com>
3777
3778         * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
3779         * jm-macros.m4 (jm_MACROS): Use it here.
3780
3781 1999-11-05  Jim Meyering  <meyering@ascend.com>
3782
3783         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from configure.in
3784         of textutils, fileutils, and sh-utils into this one (shared between
3785         those packages) file.
3786         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
3787         AC_STRUCT_ST_BLKSIZE.
3788
3789 1999-11-03  Jim Meyering  <meyering@ascend.com>
3790
3791         * ssize_t.m4: Remove file.  No longer needed since the new version of
3792         AC_CHECK_TYPE checks includes unistd.h.
3793         * jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
3794         Suggestion from Akim Demaille.
3795
3796 1999-10-30  Jim Meyering  <meyering@ascend.com>
3797
3798         * uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
3799         m4-quoted string.
3800         * ls-mntd-fs.m4: Likewise.
3801         * jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
3802         * jm-winsz1.m4: Likewise.
3803
3804         * const.m4: Remove file, since the fix made it into the experimental
3805         version of autoconf.
3806         * mktime.m4: Likewise.
3807
3808         * check-type.m4: Remove file, now that the latest version of
3809         AC_CHECK_TYPE takes a third arg to specify additional #includes.
3810
3811         * ssize_t.m4: New file, requires experimental version of autoconf.
3812         * jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
3813         AC_CHECK_TYPE.
3814
3815 1999-10-04  Jim Meyering  <meyering@ascend.com>
3816
3817         * jm-macros.m4: Don't require autoconf-2.14.1.
3818
3819 1999-09-22  Paul Eggert  <eggert@twinsun.com>
3820
3821         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
3822         2.95.1 bug with HP-UX 10.20.
3823
3824 1999-09-17  Jim Meyering  <meyering@ascend.com>
3825
3826         * jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
3827         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
3828         due to missing strdup (against sh-utils-2.0).
3829
3830 1999-08-29  Jim Meyering  <meyering@ascend.com>
3831
3832         * jm-macros.m4: Require jm_BISON.
3833         * bison.m4: New file.
3834
3835 1999-08-17  Paul Eggert  <eggert@twinsun.com>
3836
3837         * largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
3838         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
3839
3840 1999-08-05  Jim Meyering  <meyering@ascend.com>
3841
3842         * getline.m4: Rename test file from conftestdata to conftest.data
3843         to avoid conflicts with `conftest' on 8+3 filesystems.
3844         Suggestion from Eli Zaretskii.
3845
3846 1999-08-04  Jim Meyering  <meyering@ascend.com>
3847
3848         * jm-macros.m4: Move a 4-line block of code from the configure.in of
3849         fileutils and sh-utils (textutils's getline test was inadequate).
3850         (AM_FUNC_GETLINE): Run this test.
3851         (AC_CHECK_FUNCS): Check for getdelim.
3852         Reported by Bob Proulx.
3853
3854 1999-08-02  Jim Meyering  <meyering@ascend.com>
3855
3856         * jm-macros.m4: Add a comment.
3857
3858 1999-08-01  Jim Meyering  <meyering@ascend.com>
3859
3860         * mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from m4.
3861
3862 1999-08-01  Paul Eggert  <eggert@twinsun.com>
3863
3864         * lfs.m4: Remove this file.
3865         * largefile.m4: New file.  It contains the old contents of
3866         lfs.m4, except that all names with prefix AC_LFS have been
3867         changed to use the prefix AC_SYS_LARGEFILE instead, to be
3868         compatible with future autoconf versions.  Also, some minor m4
3869         quoting problems have been fixed.
3870
3871 1999-07-16  Paul Eggert  <eggert@twinsun.com>
3872
3873         * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
3874         that we can shift, multiply and divide unsigned long long
3875         values; Ultrix cc can't do it.
3876
3877 1999-07-14  Paul Eggert  <eggert@twinsun.com>
3878
3879         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
3880         <inttypes.h> defines strtoumax as a macro (and not as a
3881         function).
3882
3883 1999-07-05  Paul Eggert  <eggert@twinsun.com>
3884
3885         * gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
3886         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
3887         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
3888         and simplify the shell code.
3889
3890 1999-07-03  Paul Eggert  <eggert@twinsun.com>
3891
3892         * mktime.m4: New file, which is a preview of what should appear
3893         in the next public autoconf release.
3894
3895 1999-07-20  Jim Meyering  <meyering@ascend.com>
3896
3897         * jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
3898
3899 1999-07-15  Jim Meyering  <meyering@ascend.com>
3900
3901         * jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
3902
3903 1999-05-22  Jim Meyering  <meyering@ascend.com>
3904
3905         * jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
3906
3907 1999-05-20  Jim Meyering  <meyering@ascend.com>
3908
3909         * search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
3910         Add a colon after each `then' in case $4 is empty.
3911
3912 1999-05-16  Jim Meyering  <meyering@ascend.com>
3913
3914         * search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
3915
3916 1999-05-10  Jim Meyering  <meyering@ascend.com>
3917
3918         * jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
3919
3920         * jm-macros.m4: Require 2.14.1, since we use newly-renamed
3921         AC_FUNC_MKTIME.
3922
3923 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3924
3925         * jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
3926
3927 1999-05-04  Paul Eggert  <eggert@twinsun.com>
3928
3929         * lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
3930         not CPPFLAGS, so that linking works correctly in IRIX.
3931
3932 1999-04-30  Paul Eggert  <eggert@twinsun.com>
3933
3934         * jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
3935
3936 1999-04-20  Jim Meyering  <meyering@ascend.com>
3937
3938         * xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
3939         AC_REPLACE xstroull if necessary.  From Paul Eggert.
3940         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
3941
3942 1999-04-20  Paul Eggert  <eggert@twinsun.com>
3943
3944         * uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
3945         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
3946         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
3947         jm_AC_TYPE_UNSIGNED_LONG_LONG.
3948         * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
3949
3950         * lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
3951
3952 1999-04-18  Jim Meyering  <meyering@ascend.com>
3953
3954         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
3955         * jm-macros.m4: Use it.
3956
3957 1999-04-06  Jim Meyering  <meyering@ascend.com>
3958
3959         * strftime.m4: Remove test for %f.
3960
3961 1999-03-29  Jim Meyering  <meyering@ascend.com>
3962
3963         * jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
3964         superset of the AC_TYPE_* checks in the textutils, fileutils,
3965         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
3966         AC_TYPE_PID_T.
3967
3968 1999-03-28  Jim Meyering  <meyering@ascend.com>
3969
3970         * jm-macros.m4: Define GNU_PACKAGE here.
3971         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
3972         replaced e.g., in the *.sh files of the sh-utils.
3973
3974 1999-03-20  Jim Meyering  <meyering@ascend.com>
3975
3976         * jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
3977         * regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
3978         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
3979
3980 1999-03-19  Jim Meyering  <meyering@ascend.com>
3981
3982         * jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
3983
3984 1999-03-12  Jim Meyering  <meyering@ascend.com>
3985
3986         * jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
3987
3988 1999-03-07  Jim Meyering  <meyering@ascend.com>
3989
3990         * jm-glibc-io.m4: Use only those *_unlocked macros that are declared.
3991
3992 1999-02-17  Jim Meyering  <meyering@ascend.com>
3993
3994         * gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of brackets
3995         in macro definition.  From Eli Zaretskii and Alain Magloire.
3996
3997 1999-02-07  Jim Meyering  <meyering@ascend.com>
3998
3999         * group-member.m4: New file -- extracted from sh-utils' configure.in.
4000
4001         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
4002         * gettext.m4: Support DOS-style d:/foo/bar absolute file names.
4003
4004 1999-02-06  Jim Meyering  <meyering@ascend.com>
4005
4006         * chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
4007         * fnmatch.m4: Likewise.
4008         * getgroups.m4: Likewise.
4009         * lstat.m4: Likewise.
4010         * malloc.m4: Likewise.
4011         * putenv.m4: Likewise.
4012         * realloc.m4: Likewise.
4013         * regex.m4: Likewise.
4014         * stat.m4: Likewise.
4015         * strftime.m4: Likewise.
4016         Suggestion from Alain Magloire.
4017
4018         * chown.m4: Use `.$ac_objext', not `.o'.
4019         * fnmatch.m4: Likewise.
4020         * getgroups.m4: Likewise.
4021         * getline.m4: Likewise.
4022         * lstat.m4: Likewise.
4023         * malloc.m4: Likewise.
4024         * memcmp.m4: Likewise.
4025         * putenv.m4: Likewise.
4026         * realloc.m4: Likewise.
4027         * regex.m4: Likewise.
4028         * stat.m4: Likewise.
4029         * strftime.m4: Likewise.
4030         Suggestion from Alain Magloire.
4031
4032         * jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
4033         an argument.
4034
4035         * regex.m4: Add a run-time Test for proper operation of
4036         re_compile_pattern.
4037
4038 1999-01-31  Jim Meyering  <meyering@ascend.com>
4039
4040         * getloadavg.m4: Check for locale.h and the function, setlocale.
4041
4042 1999-01-30  Jim Meyering  <meyering@ascend.com>
4043
4044         * check-type.m4: Use 3-arg form of AC_DEFINE.
4045
4046         * jm-mktime.m4: Make this a wrapper around the official AM_FUNC_MKTIME
4047         rather than my private copy, now that the official one is up to date.
4048         * mktime.m4: Remove file.
4049
4050         * getloadavg.m4: Use 3-arg form of AC_DEFINE.
4051         * uptime.m4: Likewise.
4052         * uintmax_t.m4: Likewise.
4053
4054 1999-01-28  Jim Meyering  <meyering@ascend.com>
4055
4056         * jm-macros.m4: Use jm_AFS.
4057         * afs.m4: New file (from fileutils' configure.in).
4058
4059         * assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
4060         * chown.m4: Likewise.
4061         * d-ino.m4: Likewise.
4062         * d-type.m4: Likewise.
4063         * fnmatch.m4: Likewise.
4064         * getgroups.m4: Likewise.
4065         * gettext.m4: Likewise.
4066         * jm-mktime.m4: Likewise.
4067         * jm-winsz2.m4: Likewise.
4068         * lcmessage.m4: Likewise.
4069         * ls-mntd-fs.m4: Likewise.
4070         * malloc.m4: Likewise.
4071         * memcmp.m4: Likewise.
4072         * putenv.m4: Likewise.
4073         * realloc.m4: Likewise.
4074         * st_mtim.m4: Likewise.
4075         * strftime.m4: Likewise.
4076
4077 1999-01-16  Jim Meyering  <meyering@ascend.com>
4078
4079         * jm-macros.m4 (ARGMATCH_DIE): Define.
4080         (ARGMATCH_DIE_DECL): Define.
4081
4082 1999-01-12  Jim Meyering  <meyering@ascend.com>
4083
4084         * Makefile.am.in: Rewrite to avoid using fmt.
4085         Reported by Lars Hecking.
4086
4087 1999-01-10  Jim Meyering  <meyering@ascend.com>
4088
4089         * fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
4090         gross kludge.
4091         * inttypes_h.m4: Likewise.
4092         * lstat.m4: Likewise.
4093         * malloc.m4: Likewise.
4094         * readdir.m4: Likewise.
4095         * realloc.m4: Likewise.
4096         * st_dm_mode.m4: Likewise.
4097         * stat.m4: Likewise.
4098         * utimbuf.m4: Likewise.
4099         * utimes.m4: Likewise.
4100
4101         * check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
4102         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
4103         comments in config.h.in are meaningful.
4104
4105         * jm-macros.m4: Require autoconf-2.13 here.
4106
4107         * regex.m4: By default, don't use the included regex.c on systems
4108         with glibc 2.  Suggestion from Uli Drepper.
4109
4110 1999-01-02  Jim Meyering  <meyering@ascend.com>
4111
4112         * jm-macros.m4: Replace strcasecmp and strncasecmp.
4113
4114 1998-12-18  Jim Meyering  <meyering@ascend.com>
4115
4116         * Makefile.am.in (Makefile.am): Simplify rule.
4117         Based on a suggestion from Lars Hecking.
4118
4119 1998-11-16  Jim Meyering  <meyering@ascend.com>
4120
4121         * lfs.m4: Double-quote the `uname...` expression.
4122
4123 1998-11-16  Paul Eggert  <eggert@twinsun.com>
4124
4125         * lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
4126
4127 1998-11-14  Jim Meyering  <meyering@ascend.com>
4128
4129         * lstat.m4: Correct comment.  POSIX does not permit it to succeed.
4130         * stat.m4: Likewise.
4131
4132 1998-11-03  Jim Meyering  <meyering@ascend.com>
4133
4134         * stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
4135         * lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
4136
4137 1998-10-18  Jim Meyering  <meyering@ascend.com>
4138
4139         * check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
4140
4141 1998-10-17  Jim Meyering  <meyering@ascend.com>
4142
4143         * decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
4144         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
4145         calls for those previously hard-coded headers.  Instead, take a new
4146         parameter.
4147         (jm_CHECK_DECLARATIONS): Reflect interface change.
4148         * check-decl.m4 (jm_CHECK_DECLS): Likewise.
4149         (jm_CHECK_DECL_LOCALTIME_R): New macro.
4150
4151         * mktime.m4: Test for spring-forward gap before long-running test.
4152
4153 1998-10-14  Jim Meyering  <meyering@ascend.com>
4154
4155         * mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
4156         instead of "TZ=America/Vancouver".  From Paul Eggert.
4157
4158 1998-10-11  Jim Meyering  <meyering@ascend.com>
4159
4160         * mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
4161         This adds a test for a recently added compatibility fix for mktime.c.
4162         * jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
4163
4164 1998-09-27  Jim Meyering  <meyering@ascend.com>
4165
4166         * jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
4167
4168         * fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
4169         ../configure.in, including a change from Gordon Matzigkeit to allow
4170         cross-compiling for the Hurd.
4171
4172         * glibc.m4: New file/macro to test for the GNU C Library
4173         versions 1 and 2.  From Gordon Matzigkeit.
4174         Indent.
4175
4176 1998-09-21  Jim Meyering  <meyering@ascend.com>
4177
4178         * chown.m4: Declare locals: before, after.  From Andries Brouwer.
4179
4180 1998-08-18  Paul Eggert  <eggert@twinsun.com>
4181
4182         Port nanosecond-resolution times to UnixWare 2.1.2 and
4183         pedantic Solaris 2.6.
4184
4185         * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
4186         AC_STRUCT_ST_MTIM.
4187         * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
4188         Generate name of ns member, instead of just 1 or undef.
4189         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
4190
4191 1998-08-15  Jim Meyering  <meyering@ascend.com>
4192
4193         * ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
4194         * check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
4195         * jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
4196         instead of jm_TYPE_SSIZE_T.
4197
4198 1998-08-12  Jim Meyering  <meyering@ascend.com>
4199
4200         * st_dm_mode.m4: New file.  From Johan Danielsson.
4201
4202 1998-08-02  Jim Meyering  <meyering@ascend.com>
4203
4204         * st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
4205         in acconfig.h manually.
4206
4207 1998-07-31  Paul Eggert  <eggert@twinsun.com>
4208
4209         * st_mtim.m4: New file.
4210
4211 1998-07-28  Jim Meyering  <meyering@ascend.com>
4212
4213         * utimes.m4: Undef stat.
4214
4215 1998-07-25  Jim Meyering  <meyering@ascend.com>
4216
4217         * utime.m4 (jm_FUNC_UTIME): New file and macro.
4218         * utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
4219
4220 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
4221
4222         * chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
4223         uid and gid actually remain unchanged.
4224
4225 1998-07-07  Jim Meyering  <meyering@ascend.com>
4226
4227         * jm-glibc-io.m4: Remove fclose_unlocked.
4228
4229 1998-07-04  Jim Meyering  <meyering@ascend.com>
4230
4231         * regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
4232         to prove that this macro can be used in packages without regex.c.
4233
4234 1998-07-02  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4235
4236         * gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
4237         is to be used.
4238
4239 1998-07-03  Jim Meyering  <meyering@ascend.com>
4240
4241         * gettext.m4: Add -lintl if it's found to be necessary.
4242
4243         * gettext.m4: New file -- from gettext-0.10.35.
4244         * lcmessage.m4: Likewise.
4245         * progtest.m4: Likewise.
4246
4247         * regex.m4 (jm_WITH_REGEX): New file and macro.
4248         * jm-macros.m4: Require the new macro.
4249
4250 1998-06-29  Jim Meyering  <meyering@ascend.com>
4251
4252         * fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
4253         for the definition of NGROUPS (used in a system header included
4254         by sys/mount.h).
4255
4256 1998-06-28  Jim Meyering  <meyering@ascend.com>
4257
4258         * ls-mntd-fs.m4: New file.
4259         * fstypename.m4: New file.
4260
4261         * jm-macros.m4: Require the new macro.
4262         * jm-glibc-io.m4: New file.
4263
4264 1998-05-19  Jim Meyering  <meyering@ascend.com>
4265
4266         * jm-macros.m4: Add jm_FUNC_LCHOWN.
4267         * lchown.m4: New file.
4268
4269         * Makefile.am.in: New file.
4270         * Makefile.am (Makefile.am): Depend on Makefile.am.in.
4271
4272 1998-05-14  Jim Meyering  <meyering@ascend.com>
4273
4274         * Makefile.am (EXTRA_DIST): Add them.
4275         * jm-macros.m4: New file.
4276         * utimbuf.m4: New file.
4277
4278 1998-05-12  Jim Meyering  <meyering@ascend.com>
4279
4280         * Makefile.am (EXTRA_DIST): Add isc-posix.m4.
4281
4282 1998-05-11  Jim Meyering  <meyering@ascend.com>
4283
4284         * isc-posix.m4: New file.
4285
4286 1998-05-10  Jim Meyering  <meyering@ascend.com>
4287
4288         * jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
4289
4290 1998-05-09  Jim Meyering  <meyering@ascend.com>
4291
4292         * Makefile.am (EXTRA_DIST): Add ssize_t.m4.
4293         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
4294         with automake.
4295
4296         * ssize_t.m4: New file.
4297         * mktime.m4: Remove file -- the new automake has this now.
4298
4299 1998-04-26  Jim Meyering  <meyering@ascend.com>
4300
4301         * assert.m4: New file.
4302         * Makefile.am (EXTRA_DIST): Add assert.m4.
4303
4304 1998-04-05  Jim Meyering  <meyering@ascend.com>
4305
4306         * prereq.m4 (jm_PREREQ_REGEX): New macro.
4307         (jm_PREREQ): Use it here.
4308
4309 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
4310
4311         * inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
4312         in acconfig.h.
4313
4314 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
4315
4316         * prereq.m4: New file.
4317         * error.m4: New file.
4318         * Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
4319
4320 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
4321
4322         * getline.m4: Don't set am_cv_func_working_getline before the
4323         cache-check for the same variable -- that defeated the purpose of
4324         the test; the test program was never run.  This was a problem only
4325         on systems with losing getline functions -- HP-UX 10.20 is one.
4326         Reported by Bjorn Helgaas.
4327
4328 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
4329
4330         * Makefile.am (EXTRA_DIST): Add perl.m4.
4331
4332 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
4333
4334         * Makefile.am (EXTRA_DIST): Add const.m4.
4335
4336         * const.m4: New file.  Use an initializer in this declaration
4337         typedef int charset[2]; const charset x;
4338         Reported by Bob Glickstein.
4339
4340 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
4341
4342         * chown.m4: Fix reversed types on -1 args to chown.
4343         From Kaveh Ghazi.
4344
4345 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
4346
4347         * check-decl.m4: s/DECLARATION_/DECL_/g.
4348         Add lseek and memchr.
4349
4350         * decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
4351         T.E.Dickey <dickey@clark.net> said that some older preprocessors
4352         have a 20-character limit on names.
4353
4354 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
4355
4356         * inttypes_h.m4: New file.
4357         * uintmax_t.m4: New file.
4358         * Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
4359
4360 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
4361   Free Software Foundation, Inc.
4362 Copying and distribution of this file, with or without modification,
4363 are permitted provided the copyright notice and this notice are preserved.