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