.
[gnulib.git] / m4 / ChangeLog
1 2001-03-24  Jim Meyering  <meyering@lucent.com>
2
3         * jm-macros.m4: Require autoconf-2.49d.
4
5 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
6
7         * iconv.m4 (jm_ICONV): Recommend GNU libiconv.
8
9 2001-03-17  Jim Meyering  <meyering@lucent.com>
10
11         * memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
12         now that the version in autoconf is equivalent.
13         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
14
15         * error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
16         Suggestion from Akim Demaille.
17
18         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
19         (jm_PREREQ_TEMPNAME): New function.
20
21 2001-02-25  Paul Eggert  <eggert@twinsun.com>
22
23         * jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
24         lacks mkstemp.  Compile our own tempname.c if we compile our own
25         mkstemp.c, as mkstemp relies on tempname.
26
27 2001-03-01  Jim Meyering  <meyering@lucent.com>
28
29         * dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
30         AH_VERBATIM really does output its argument verbatim.
31
32 2001-02-18  Paul Eggert  <eggert@twinsun.com>
33
34         * jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
35
36 2001-02-17  Jim Meyering  <meyering@lucent.com>
37
38         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
39         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
40         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
41         UnixWare 7.1.1.
42
43         * mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
44         rather than AC_CACHE_VAL.
45
46 2001-02-17  Paul Eggert  <eggert@twinsun.com>
47
48         * mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
49         * mbswidth.m4 (jm_PREREQ_MBSWIDTH):
50         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
51         * prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
52
53 2001-02-07  Jim Meyering  <meyering@lucent.com>
54
55         * regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
56
57 2001-02-05  Jim Meyering  <meyering@lucent.com>
58
59         * jm-macros.m4: Require autoconf-2.14d (not yet released), because
60         it includes the patch required for `large file' support with at least
61         HP-UX's 10.20 /bin/cc.
62
63 2001-02-03  Jim Meyering  <meyering@lucent.com>
64
65         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
66         AS_IF, now that it works once again (mysteriously).
67         * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
68
69 2001-01-30  Jim Meyering  <meyering@lucent.com>
70
71         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
72         * chown.m4: Rename conftestchown to conftest.chown.
73         * rename.m4: s/conftestdir/conftest.d1/ and s/conftestdir2/conftest.d2/.
74         * utimes.m4: s/conftestdata/conftest.data/
75         Inspired by Pavel Roskin's change in autoconf.
76
77 2001-01-27  Jim Meyering  <meyering@lucent.com>
78
79         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
80         a use of AS_IF.
81         * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
82
83 2001-01-26  Jim Meyering  <meyering@lucent.com>
84
85         * prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
86         quotearg.c includes it.
87
88 2001-01-15  Bruno Haible  <haible@clisp.cons.org>
89
90         * iconv.m4 (jm_ICONV): Also check whether the iconv declaration
91         has const.
92
93 2001-01-20  Jim Meyering  <meyering@lucent.com>
94
95         Be sure that headers are checked before used in code compiled
96         for the type checks.
97         * jm-macros.m4 (jm_MACROS): Remove all header checks.
98         In place of that, invoke jm_CHECK_ALL_TYPES.
99         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
100         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
101         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
102         The check for ssize_t was mistakenly run before the test for unistd.h.
103
104         The configure-time check for stdbool.h was missing.
105         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
106         (jm_PREREQ_HASH): New function.
107
108 2001-01-17  Jim Meyering  <meyering@lucent.com>
109
110         * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
111         for autoconf-2.49c.
112         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
113
114 2001-01-14  Jim Meyering  <meyering@lucent.com>
115
116         * rename.m4: Use temporary directories named conftestdir{,2}, not
117         foo and bar.  Create conftestdir/ in the script, not in the C code.
118         Remove directories in the script, not in the C code.
119         Remove conftestdir{,2} before trying to create the directory.
120         Make the entire configure script fail if the mkdir fails.
121
122 2001-01-02  Volker Borchert  <bt@teknon.de>
123
124         * rename.m4: New file.
125         * jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
126
127 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
128
129         * libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
130         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
131         so `make install' also works in VPATH builds.
132
133 2001-01-01  Jim Meyering  <meyering@lucent.com>
134
135         * prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available), even
136         on systems with utmpx.h.  It's necessary for the declaration of utmp's
137         ut_user member.  Reported by Andreas Jaeger.
138
139         * check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if available.
140         They are required for the declarations of getgrgid and getpwuid resp.
141         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
142         Reported by Andreas Jaeger.
143
144 2000-12-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
145
146         * libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
147         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
148         can be used in subdirectories.
149
150 2000-12-26  Jim Meyering  <meyering@lucent.com>
151
152         * dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work better
153         with autoheader.
154
155 2000-12-17  Jim Meyering  <meyering@lucent.com>
156
157         * dos.m4 (jm_AC_DOS): New file and macro.
158         * jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
159
160 2000-12-06  Paul Eggert  <eggert@twinsun.com>
161
162         * off_t-format.m4: Remove this file.
163         * jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
164
165 2000-12-06  Jim Meyering  <meyering@lucent.com>
166
167         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the replacement
168         strtoull, we may well need the replacement strtoul, too.
169         Check for declarations of strtoul and strtoull.
170         Check for strtol.  Mainly as a cue to cause automake to include
171         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
172         Check for limits.h -- strtol.c needs it.
173
174 2000-12-02  Jim Meyering  <meyering@lucent.com>
175
176         * off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
177         * jm-macros.m4 (jm_MACROS): require it.
178
179 2000-11-30  Jim Meyering  <meyering@lucent.com>
180
181         * jm-macros.m4 (jm_MACROS): Check for stdint.h.
182
183 2000-11-30  Jim Meyering  <meyering@lucent.com>
184
185         * getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
186
187 2000-11-03  Bruno Haible  <haible@clisp.cons.org>
188
189         * jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
190
191 2000-11-04  Jim Meyering  <meyering@lucent.com>
192
193         * regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
194
195 2000-10-29  Jim Meyering  <meyering@lucent.com>
196
197         * fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf renaming.
198         * ls-mntd-fs.m4: Likewise
199
200 2000-10-28  Jim Meyering  <meyering@lucent.com>
201
202         * prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
203         (jm_PREREQ_MEMCHR): New function.
204
205 2000-10-21  Jim Meyering  <meyering@lucent.com>
206
207         * check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
208         * prereq.m4 (jm_PREREQ_DIRNAME): New macro.
209         * jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
210
211 2000-09-18  Jim Meyering  <meyering@lucent.com>
212
213         * getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of LIBS.
214         Otherwise, everyone ends up linking with -lelf for some configurations.
215         Reported by Mike Stone.
216
217 2000-08-26  Jim Meyering  <meyering@lucent.com>
218
219         * jm-macros.m4: Use jm_FUNC_FPENDING.
220         * fpending.m4: New file.
221
222 2000-08-20  Jim Meyering  <meyering@lucent.com>
223
224         * check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
225         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
226         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
227
228 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
229
230         Improve fileutils installation on systems where running
231         programs (like install) can't be unlinked.
232         * unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
233         * jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
234
235 2000-08-06  Paul Eggert  <eggert@twinsun.com>
236
237         * mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
238         not char, for compatibility with glibc 2.1.3 strftime.c.
239
240 2000-07-23  Paul Eggert  <eggert@twinsun.com>
241
242         * mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
243
244 2000-07-23  Jim Meyering  <meyering@lucent.com>
245
246         * check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these, too:
247         getgrgid, getpwuid, getuid.
248
249 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
250
251         * mbswidth.m4: New file.
252         * prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
253
254 2000-07-14  Jim Meyering  <meyering@lucent.com>
255
256         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require jm_AC_TYPE_UINTMAX_T.
257
258 2000-07-10  Paul Eggert  <eggert@twinsun.com>
259
260         From a suggestion by Bruno Haible.
261         * mbstate_t.m4 (AC_MBSTATE_T):
262         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
263         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
264         and mbstate_t, to a single-part test that simply defines mbstate_t.
265         * prereq.m4 (jm_PREREQ_QUOTEARG): s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
266
267 2000-07-10  Jim Meyering  <meyering@lucent.com>
268
269         * strerror_r.m4: Mirror the correction made in autoconf.
270
271         * gnu-source.m4: Output to confdefs.h directly.
272         Suggestion from Akim Demaille.
273
274 2000-07-09  Jim Meyering  <meyering@lucent.com>
275
276         * jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
277         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
278
279         * gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
280         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
281
282 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
283
284         * strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
285         to strerror_r.
286         Include <ctype.h> for use of isalpha.
287
288 2000-07-05  Paul Eggert  <eggert@twinsun.com>
289         and Bruno Haible  <haible@clisp.cons.org>
290
291         * mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
292         only if the test for an object-type mbstate_t fails.  This
293         prevents us from mistakenly reporting that mbstate_t is a
294         system object type after we "#define mbstate_t int" to work
295         around its lack.
296
297 2000-07-04  Jim Meyering  <meyering@lucent.com>
298
299         * fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
300         of the deprecated AC_CHECKING.
301
302 2000-07-03  Jim Meyering  <meyering@lucent.com>
303
304         * check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
305
306 2000-07-03  Paul Eggert  <eggert@twinsun.com>
307
308         * mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
309         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
310
311 2000-07-02  Jim Meyering  <meyering@lucent.com>
312
313         * mbstate_t.m4: Also define mbstate_t, if necessary.
314
315         * chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
316         AC_LIBOBJ(function_name).
317         * chown.m4: Likewise.
318         * fnmatch.m4: Likewise.
319         * ftruncate.m4: Likewise.
320         * getgroups.m4: Likewise.
321         * getline.m4: Likewise.
322         * group-member.m4: Likewise.
323         * jm-macros.m4: Likewise.
324         * lstat.m4: Likewise.
325         * malloc.m4: Likewise.
326         * memcmp.m4: Likewise.
327         * nanosleep.m4: Likewise.
328         * putenv.m4: Likewise.
329         * realloc.m4: Likewise.
330         * regex.m4: Likewise.
331         * stat.m4: Likewise.
332         * strftime.m4: Likewise.
333
334 2000-07-01  Jim Meyering  <meyering@lucent.com>
335
336         * ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
337         problem.
338
339 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
340
341         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
342         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
343
344 2000-07-01  Jim Meyering  <meyering@lucent.com>
345
346         * uptime.m4: Put double quotes around use of $cross_compiling.
347
348 2000-06-28  Jim Meyering  <meyering@lucent.com>
349
350         * mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not included
351         by quotearg.c, for which we perform this test.  From Bruno Haible.
352
353 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
354
355         * check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
356         * prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
357         <utmpx.h> exists, put readutmp.o into LIBOBJS.
358
359 2000-06-25  Jim Meyering  <meyering@lucent.com>
360
361         * mbstate_t.m4: Include stdio.h before wchar.h to work around
362         Linux header bug when _XOPEN_SOURCE is defined to 500.
363
364 2000-06-24  Jim Meyering  <meyering@lucent.com>
365
366         * strerror_r.m4: Revive this file -- to try out an experimental
367         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
368         for which strerror does return char*, but which lacks a conveniently
369         accessible declaration of the function.  If the compile-test says
370         strerror_r doesn't work, then resort to a `run'-test that works on
371         BeOS and segfaults on DEC Unix.
372
373 2000-06-19  Paul Eggert  <eggert@twinsun.com>
374
375         * mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
376         * prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
377
378 2000-06-23  Jim Meyering  <meyering@lucent.com>
379
380         * afs.m4: Add missing AC_MSG_RESULT.
381         Reported by Bruno Haible.
382
383         * fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
384         Suggestion from Bruno Haible.
385
386 2000-06-21  Jim Meyering  <meyering@lucent.com>
387
388         * jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
389
390 2000-06-18  Jim Meyering  <meyering@lucent.com>
391
392         * jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
393
394         * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
395         `checking whether...' message to be consistent with that of the
396         lstat test.
397
398 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
399
400         * glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
401
402 2000-06-12  Jim Meyering  <meyering@lucent.com>
403
404         * getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with AC_FUNC_GETLOADAVG
405         from autoconf, and tweak the latter to accept an optional argument.
406         * jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
407         the optional argument, `lib'.
408
409 2000-06-08  Jim Meyering  <meyering@lucent.com>
410
411         * largefile.m4: Remove file (now that it's part of autoconf).
412
413 2000-06-04  Paul Eggert  <eggert@twinsun.com>
414
415         Rewrite largefile configuration so that we don't need to run
416         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
417         AC_CANONICAL_HOST in configure.in -- jmm]
418
419         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
420         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
421         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
422         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
423         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
424         All uses changed.
425         Instead of inspecting the output of getconf, try to compile the
426         test program without and with the macro definition.
427         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
428         for getconf.  Instead, check for the needed flags by compiling
429         test programs.
430
431 2000-06-03  Jim Meyering  <meyering@lucent.com>
432
433         * prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
434         now that autoconf requires that.
435
436         * jm-glibc-io.m4: Add a kludge to make autoheader emit the required
437         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
438         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
439
440 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
441
442         * glibc21.m4: New file.
443         * jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
444
445 2000-05-28  Jim Meyering  <meyering@lucent.com>
446
447         * jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
448         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
449         * stat.m4: Likewise.
450         * lstat.m4: Likewise.
451         * lstat-slash.m4: Remove file (absorbed into autoconf).
452
453         * jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
454         * strerror_r.m4: Remove file (absorbed into autoconf).
455
456 2000-05-26  Jim Meyering  <meyering@lucent.com>
457
458         * uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
459
460 2000-05-24  Jim Meyering  <meyering@lucent.com>
461
462         * prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
463         autoconf requires that.
464         * lib-check.m4: Likewise.
465         * jm-macros.m4: Likewise.
466         * strftime.m4: Likewise.
467
468         * check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in AC_CHECK_DECLS,
469         now that autoconf requires that.
470
471 2000-05-22  Jim Meyering  <meyering@lucent.com>
472
473         * stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
474         * lstat.m4: Likewise.
475
476 2000-05-20  Jim Meyering  <meyering@lucent.com>
477
478         * prereq.m4 (jm_PREREQ_HUMAN): New macro.
479         (jm_PREREQ): Use it.
480
481 2000-05-09  Jim Meyering  <meyering@lucent.com>
482
483         * gettext.m4: Rename this...
484         * libintl.m4: ...to this.
485
486 2000-05-06  Jim Meyering  <meyering@lucent.com>
487
488         * jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
489         (AC_REPLACE_FUNCS): Add strnlen.
490
491         * rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
492         * jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
493
494         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
495         AC_SEARCH_LIBS call for nanosleep.
496         (LIB_NANOSLEEP): Set and AC_SUBST.
497
498 2000-05-03  Paul Eggert  <eggert@twinsun.com>
499
500         * largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
501         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
502         2.1.3 bug.  This avoids a clash when files like regex.c define
503         _GNU_SOURCE.
504
505 2000-05-05  Jim Meyering  <meyering@lucent.com>
506
507         * jm-macros.m4 (jm_MACROS): Save and restore LIBS around AC_SEARCH_LIBS
508         call for clock_gettime.
509         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
510
511         * search-libs.m4: Update from autoconf.
512
513         su doesn't work on Solaris2.6.
514         * lib-check.m4: When checking for struct spwd.sp_pwdp, also include
515         <shadow.h>.  Reported by Dragos Harabor.
516
517 2000-05-03  Jim Meyering  <meyering@lucent.com>
518
519         * check-decl.m4 (AC_CHECK_DECLS): Add strndup.
520
521 2000-05-02  Paul Eggert  <eggert@twinsun.com>
522
523         * largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
524         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
525         compile-time test, rather than inspecting host and OS, to
526         decide whether to define _LARGEFILE_SOURCE.
527
528 2000-05-01  Jim Meyering  <meyering@lucent.com>
529
530         * fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
531
532         * ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
533         Based on a patch from Bruno Haible.
534
535 2000-04-18  Jim Meyering  <meyering@lucent.com>
536
537         * prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
538         (jm_PREREQ): Use it.
539
540 2000-04-17  Jim Meyering  <meyering@lucent.com>
541
542         Get it right :-)
543         * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
544         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
545         Suggestion from Akim Demaille.
546
547 2000-04-14  Jim Meyering  <meyering@lucent.com>
548
549         * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg form
550         of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets clobbered.
551
552 2000-04-13  Jim Meyering  <meyering@lucent.com>
553
554         * jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new AH_VERBATIM
555         to insert required #ifndef into config.h.in.
556         Suggestion from Akim Demaille.
557
558 2000-04-12  Jim Meyering  <meyering@lucent.com>
559
560         * getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
561         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
562         Christian Krackowizer.
563
564         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
565         * jm-macros.m4 (_GNU_SOURCE): Define.
566         (AC_SYS_LARGEFILE): Require.
567         (AM_C_PROTOTYPES): Require.
568
569 2000-04-05  Paul Eggert  <eggert@twinsun.com>
570
571         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
572         IRIX if the installer said otherwise.
573
574 2000-04-05  Jim Meyering  <meyering@lucent.com>
575
576         Portability tweaks required for ultrix4.3.
577         * check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
578         (jm_CHECK_DECLS): Add getutent to the list of functions.
579         (_jm_DECL_HEADERS): Add utmpx.h.
580         From John David Anglin.
581
582         * strftime.m4: Back out the 2000-04-02 change.
583         Instead of that change, simply undefine putenv in the test program.
584
585 2000-04-03  Jim Meyering  <meyering@lucent.com>
586
587         * gettext.m4: Fix typo in comment.
588
589         * codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
590         textutils/configure.in).  Suggestion from Paul Eggert.
591         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
592
593 2000-04-02  Paul Eggert  <eggert@twinsun.com>
594
595         * strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
596         variable in the shell rather than using putenv, which isn't
597         portable.  This avoids the configure-time inter-test dependency
598         on the potentially-renamed putenv function.
599
600 2000-03-30  Paul Eggert  <eggert@twinsun.com>
601
602         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
603         before checking struct stat.st_blksize, so that
604         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
605
606 2000-03-29  Paul Eggert  <eggert@twinsun.com>
607
608         * strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
609         since strftime.c uses HAVE_STRFTIME to decide whether to use
610         the underlying strftime.
611
612 2000-03-10  Jim Meyering  <meyering@lucent.com>
613
614         * lib-check.m4: Look for getspnam in -lgen, too.
615         From Marco Franzen.
616
617 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
618
619         * codeset.m4: New file.
620         * iconv.m4: New file.
621         * jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
622
623 2000-03-04  Jim Meyering  <meyering@lucent.com>
624
625         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
626         for lib/localcharset.c.
627
628 2000-03-03  Jim Meyering  <meyering@lucent.com>
629
630         * regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
631
632 2000-03-02  Jim Meyering  <meyering@lucent.com>
633
634         * timespec.m4: Require AC_HEADER_TIME before the cache check so
635         the messages come out on separate lines.
636
637         * jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
638         rather than jm_CHECK_DECLARATIONS.
639         * decl.m4: Remove now-unused file.
640
641         * check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and geteuid.
642
643 2000-02-27  Jim Meyering  <meyering@lucent.com>
644
645         * check-decl.m4: Add getenv to the list.
646
647 2000-02-23  Jim Meyering  <meyering@lucent.com>
648
649         * check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
650         in place of my hack.
651
652 2000-02-10  Jim Meyering  <meyering@lucent.com>
653
654         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
655         gnu_nanosleep to rpl_nanosleep.
656
657 2000-02-09  Jim Meyering  <meyering@lucent.com>
658
659         * lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
660         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
661
662 2000-02-08  Akim Demaille  <akim@epita.fr>
663
664         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
665         `[' and `]' and remove uses of `changequote'.
666         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
667         (AC_SYS_LARGEFILE): Likewise.
668         * gettext.m4 (AM_GNU_GETTEXT): Likewise.
669         * strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
670         of changequote.
671         * regex.m4 (jm_INCLUDED_REGEX): Likewise.
672         * readdir.m4 (jm_FUNC_READDIR): Likewise
673         * memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
674         * getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
675
676 2000-02-05  Jim Meyering  <meyering@lucent.com>
677
678         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
679         Remove explicit use of AC_HEADER_TIME.  It is required by
680         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
681         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
682         in autoconf whereby the expansion of the latter ended up preceding
683         the expansion of its prerequisite, AC_HEADER_TIME.
684         Reported by Volker Borchert.
685
686 2000-02-03  Jim Meyering  <meyering@lucent.com>
687
688         * prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
689
690 2000-02-02  Jim Meyering  <meyering@lucent.com>
691
692         * prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
693         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
694         Reported by Eli Zaretskii.
695
696 2000-01-31  Jim Meyering  <meyering@lucent.com>
697
698         * check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
699         functions.  Add the time.h and sys/time.h headers along with the
700         AC_REQUIRE'ment of AC_HEADER_TIME.
701
702 2000-01-30  Jim Meyering  <meyering@lucent.com>
703
704         * lib-check.m4: Clean up some kludgy old shadow password tests.
705
706         * prereq.m4 (utmp_includes): Define.
707         Check for ut_user and ut_name members in both struct utmpx
708         and struct utmp.
709
710 2000-01-29  Jim Meyering  <meyering@lucent.com>
711
712         * lib-check.m4: New file containing library-related checks from
713         fileutils and sh-utils (textutils had none).
714
715 2000-01-28  Jim Meyering  <meyering@lucent.com>
716
717         * perl.m4: Change format of warning message to look more like that
718         from the missing script.  Suggestion from François Pinard.
719
720 2000-01-25  Jim Meyering  <meyering@lucent.com>
721
722         * timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as well
723         as time.h in the compile check.
724         * nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
725         Fix typo in cross-compiling case: s/yes/no/.
726
727 2000-01-23  Jim Meyering  <meyering@lucent.com>
728
729         * jm-macros.m4: Move df-related tests here from fileutils/configure.in
730
731         * ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
732         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
733
734         * fsusage.m4: New file.  Extracted from fileutils/configure.in.
735         s/space/ac_fsusage_space/.
736         (jm_FILE_SYSTEM_USAGE): Take two parameters.
737
738         * ftruncate.m4: New file (derived from part of fileutils/configure.in).
739         * jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
740         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
741
742         * jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
743         AC_SUBST these here, rather than just in sh-util/configure.in, so
744         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
745         all the same.
746         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
747         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
748         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
749         (AC_SUBST(POW_LIBM)): Likewise.
750         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
751
752 2000-01-22  Jim Meyering  <meyering@lucent.com>
753
754         * jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
755
756         * prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
757
758         * jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
759         configure.in
760         (AC_CHECK_HEADERS): Likewise for sh-utils.
761         (AC_CHECK_HEADERS): Likewise for textutils.
762         Merge the three lists of headers.
763
764         * prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
765         from fileutils' configure.in.
766
767         * decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)' code.
768         Moved tests into their own function (_jm_DECL_HEADERS) in check-decl.m4.
769
770         * check-decl.m4: Use #if rather than #ifdef.
771         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
772         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
773         (_jm_DECL_HEADERS): Define new function.
774         (jm_CHECK_DECLARATIONS): Require it.
775
776 2000-01-19  Jim Meyering  <meyering@lucent.com>
777
778         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
779         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
780         defines `struct timespec' in <sys/time.h>
781
782         * c-bs-a.m4: Remove uses of changequote altogether.
783         Thanks to Akim for explaining.
784
785 2000-01-16  Jim Meyering  <meyering@lucent.com>
786
787         * jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
788         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
789         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
790         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
791
792 2000-01-16  Jim Meyering  <meyering@lucent.com>
793
794         * c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
795         because the latter didn't work.
796
797 2000-01-15  Jim Meyering  <meyering@lucent.com>
798
799         * jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
800         (AC_REPLACE_FUNCS): Add memcpy and memset.
801         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
802         Add strpbrk.
803         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
804
805 2000-01-12  Jim Meyering  <meyering@lucent.com>
806
807         * prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
808         (jm_PREREQ): Use it.
809         (jm_PREREQ_READUTMP): New macro.
810         (jm_PREREQ): Use it.
811
812 2000-01-11  Paul Eggert  <eggert@twinsun.com>
813
814         Quote multibyte characters correctly.
815         * c-bs-a.m4: New file.
816         * prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
817         (jm_PREREQ): Use it.
818
819 2000-01-11  Paul Eggert  <eggert@twinsun.com>
820
821         * uintmax_t.m4: Port to autoconf 2.13.
822
823 2000-01-08  Jim Meyering  <meyering@ascend.com>
824
825         * strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
826         * jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
827
828 2000-01-04  Jim Meyering  <meyering@ascend.com>
829
830         * d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
831         jm_STRUCT_DIRENT_D_TYPE.
832         * d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
833         jm_STRUCT_DIRENT_D_INO.
834         * utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
835         jm_STRUCT_UTIMBUF.
836         * jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/ renamings.
837         * utime.m4: Likewise.
838
839         * timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
840         * jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
841
842 2000-01-03  Paul Eggert  <eggert@twinsun.com>
843
844         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
845         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
846
847 2000-01-02  Jim Meyering  <meyering@ascend.com>
848
849         * search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
850         remember if this is necessary.
851
852 1999-12-26  Jim Meyering  <meyering@ascend.com>
853
854         * jm-macros.m4: Use it here.
855         * nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
856
857 1999-12-23  Jim Meyering  <meyering@ascend.com>
858
859         * jm-macros.m4: Check for clock_gettime (moved from
860         fileutils/configure.in)
861         Check for gettimeofday.
862
863 1999-12-20  Jim Meyering  <meyering@ascend.com>
864
865         * strftime.m4: Remove kludge, now that I'm using the fixed
866         autoconf-2.14a-1999-12-20.
867
868 1999-12-19  Jim Meyering  <meyering@ascend.com>
869
870         * lstat-slash.m4: New file.
871         * jm-macros.m4: Use the new macro:
872         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
873
874 1999-12-07  Jim Meyering  <meyering@ascend.com>
875
876         * perl.m4: Require that File::Compare be available, too.
877         Too many systems seem to lack it.
878
879         * strftime.m4: Add checks for most of the cpp macros tested in
880         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
881
882 1999-11-18  Paul Eggert  <eggert@twinsun.com>
883
884         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
885         problem with the QNX 4.25 shell, which doesn't propagate exit
886         status of failed commands inside shell assignments.
887
888 1999-11-17  Jim Meyering  <meyering@ascend.com>
889
890         * gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
891
892 1999-11-07  Jim Meyering  <meyering@ascend.com>
893
894         * getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
895
896 1999-11-06  Jim Meyering  <meyering@ascend.com>
897
898         * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
899         * jm-macros.m4 (jm_MACROS): Use it here.
900
901 1999-11-05  Jim Meyering  <meyering@ascend.com>
902
903         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from configure.in
904         of textutils, fileutils, and sh-utils into this one (shared between
905         those packages) file.
906         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
907         AC_STRUCT_ST_BLKSIZE.
908
909 1999-11-03  Jim Meyering  <meyering@ascend.com>
910
911         * ssize_t.m4: Remove file.  No longer needed since the new version of
912         AC_CHECK_TYPE checks includes unistd.h.
913         * jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
914         Suggestion from Akim Demaille.
915
916 1999-10-30  Jim Meyering  <meyering@ascend.com>
917
918         * uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
919         m4-quoted string.
920         * ls-mntd-fs.m4: Likewise.
921         * jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
922         * jm-winsz1.m4: Likewise.
923
924         * const.m4: Remove file, since the fix made it into the experimental
925         version of autoconf.
926         * mktime.m4: Likewise.
927
928         * check-type.m4: Remove file, now that the latest version of
929         AC_CHECK_TYPE takes a third arg to specify additional #includes.
930
931         * ssize_t.m4: New file, requires experimental version of autoconf.
932         * jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
933         AC_CHECK_TYPE.
934
935 1999-10-04  Jim Meyering  <meyering@ascend.com>
936
937         * jm-macros.m4: Don't require autoconf-2.14.1.
938
939 1999-09-22  Paul Eggert  <eggert@twinsun.com>
940
941         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
942         2.95.1 bug with HP-UX 10.20.
943
944 1999-09-17  Jim Meyering  <meyering@ascend.com>
945
946         * jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
947         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
948         due to missing strdup (against sh-utils-2.0).
949
950 1999-08-29  Jim Meyering  <meyering@ascend.com>
951
952         * jm-macros.m4: Require jm_BISON.
953         * bison.m4: New file.
954
955 1999-08-17  Paul Eggert  <eggert@twinsun.com>
956
957         * largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
958         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
959
960 1999-08-05  Jim Meyering  <meyering@ascend.com>
961
962         * getline.m4: Rename test file from conftestdata to conftest.data
963         to avoid conflicts with `conftest' on 8+3 filesystems.
964         Suggestion from Eli Zaretskii.
965
966 1999-08-04  Jim Meyering  <meyering@ascend.com>
967
968         * jm-macros.m4: Move a 4-line block of code from the configure.in of
969         fileutils and sh-utils (textutils's getline test was inadequate).
970         (AM_FUNC_GETLINE): Run this test.
971         (AC_CHECK_FUNCS): Check for getdelim.
972         Reported by Bob Proulx.
973
974 1999-08-02  Jim Meyering  <meyering@ascend.com>
975
976         * jm-macros.m4: Add a comment.
977
978 1999-08-01  Jim Meyering  <meyering@ascend.com>
979
980         * mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from m4.
981
982 1999-08-01  Paul Eggert  <eggert@twinsun.com>
983
984         * lfs.m4: Remove this file.
985         * largefile.m4: New file.  It contains the old contents of
986         lfs.m4, except that all names with prefix AC_LFS have been
987         changed to use the prefix AC_SYS_LARGEFILE instead, to be
988         compatible with future autoconf versions.  Also, some minor m4
989         quoting problems have been fixed.
990
991 1999-07-16  Paul Eggert  <eggert@twinsun.com>
992
993         * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
994         that we can shift, multiply and divide unsigned long long
995         values; Ultrix cc can't do it.
996
997 1999-07-14  Paul Eggert  <eggert@twinsun.com>
998
999         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
1000         <inttypes.h> defines strtoumax as a macro (and not as a
1001         function).
1002
1003 1999-07-05  Paul Eggert  <eggert@twinsun.com>
1004
1005         * gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
1006         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
1007         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
1008         and simplify the shell code.
1009
1010 1999-07-03  Paul Eggert  <eggert@twinsun.com>
1011
1012         * mktime.m4: New file, which is a preview of what should appear
1013         in the next public autoconf release.
1014
1015 1999-07-20  Jim Meyering  <meyering@ascend.com>
1016
1017         * jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
1018
1019 1999-07-15  Jim Meyering  <meyering@ascend.com>
1020
1021         * jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
1022
1023 1999-05-22  Jim Meyering  <meyering@ascend.com>
1024
1025         * jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
1026
1027 1999-05-20  Jim Meyering  <meyering@ascend.com>
1028
1029         * search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
1030         Add a colon after each `then' in case $4 is empty.
1031
1032 1999-05-16  Jim Meyering  <meyering@ascend.com>
1033
1034         * search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
1035
1036 1999-05-10  Jim Meyering  <meyering@ascend.com>
1037
1038         * jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
1039
1040         * jm-macros.m4: Require 2.14.1, since we use newly-renamed
1041         AC_FUNC_MKTIME.
1042
1043 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
1044
1045         * jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
1046
1047 1999-05-04  Paul Eggert  <eggert@twinsun.com>
1048
1049         * lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
1050         not CPPFLAGS, so that linking works correctly in IRIX.
1051
1052 1999-04-30  Paul Eggert  <eggert@twinsun.com>
1053
1054         * jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
1055
1056 1999-04-20  Jim Meyering  <meyering@ascend.com>
1057
1058         * xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
1059         AC_REPLACE xstroull if necessary.  From Paul Eggert.
1060         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
1061
1062 1999-04-20  Paul Eggert  <eggert@twinsun.com>
1063
1064         * uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
1065         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
1066         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
1067         jm_AC_TYPE_UNSIGNED_LONG_LONG.
1068         * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
1069
1070         * lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
1071
1072 1999-04-18  Jim Meyering  <meyering@ascend.com>
1073
1074         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
1075         * jm-macros.m4: Use it.
1076
1077 1999-04-06  Jim Meyering  <meyering@ascend.com>
1078
1079         * strftime.m4: Remove test for %f.
1080
1081 1999-03-29  Jim Meyering  <meyering@ascend.com>
1082
1083         * jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
1084         superset of the AC_TYPE_* checks in the textutils, fileutils,
1085         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
1086         AC_TYPE_PID_T.
1087
1088 1999-03-28  Jim Meyering  <meyering@ascend.com>
1089
1090         * jm-macros.m4: Define GNU_PACKAGE here.
1091         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
1092         replaced e.g., in the *.sh files of the sh-utils.
1093
1094 1999-03-20  Jim Meyering  <meyering@ascend.com>
1095
1096         * jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
1097         * regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
1098         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
1099
1100 1999-03-19  Jim Meyering  <meyering@ascend.com>
1101
1102         * jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
1103
1104 1999-03-12  Jim Meyering  <meyering@ascend.com>
1105
1106         * jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
1107
1108 1999-03-07  Jim Meyering  <meyering@ascend.com>
1109
1110         * jm-glibc-io.m4: Use only those *_unlocked macros that are declared.
1111
1112 1999-02-17  Jim Meyering  <meyering@ascend.com>
1113
1114         * gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of brackets
1115         in macro definition.  From Eli Zaretskii and Alain Magloire.
1116
1117 1999-02-07  Jim Meyering  <meyering@ascend.com>
1118
1119         * group-member.m4: New file -- extracted from sh-utils' configure.in.
1120
1121         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
1122         * gettext.m4: Support DOS-style d:/foo/bar absolute file names.
1123
1124 1999-02-06  Jim Meyering  <meyering@ascend.com>
1125
1126         * chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
1127         * fnmatch.m4: Likewise.
1128         * getgroups.m4: Likewise.
1129         * lstat.m4: Likewise.
1130         * malloc.m4: Likewise.
1131         * putenv.m4: Likewise.
1132         * realloc.m4: Likewise.
1133         * regex.m4: Likewise.
1134         * stat.m4: Likewise.
1135         * strftime.m4: Likewise.
1136         Suggestion from Alain Magloire.
1137
1138         * chown.m4: Use `.$ac_objext', not `.o'.
1139         * fnmatch.m4: Likewise.
1140         * getgroups.m4: Likewise.
1141         * getline.m4: Likewise.
1142         * lstat.m4: Likewise.
1143         * malloc.m4: Likewise.
1144         * memcmp.m4: Likewise.
1145         * putenv.m4: Likewise.
1146         * realloc.m4: Likewise.
1147         * regex.m4: Likewise.
1148         * stat.m4: Likewise.
1149         * strftime.m4: Likewise.
1150         Suggestion from Alain Magloire.
1151
1152         * jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
1153         an argument.
1154
1155         * regex.m4: Add a run-time Test for proper operation of
1156         re_compile_pattern.
1157
1158 1999-01-31  Jim Meyering  <meyering@ascend.com>
1159
1160         * getloadavg.m4: Check for locale.h and the function, setlocale.
1161
1162 1999-01-30  Jim Meyering  <meyering@ascend.com>
1163
1164         * check-type.m4: Use 3-arg form of AC_DEFINE.
1165
1166         * jm-mktime.m4: Make this a wrapper around the official AM_FUNC_MKTIME
1167         rather than my private copy, now that the official one is up to date.
1168         * mktime.m4: Remove file.
1169
1170         * getloadavg.m4: Use 3-arg form of AC_DEFINE.
1171         * uptime.m4: Likewise.
1172         * uintmax_t.m4: Likewise.
1173
1174 1999-01-28  Jim Meyering  <meyering@ascend.com>
1175
1176         * jm-macros.m4: Use jm_AFS.
1177         * afs.m4: New file (from fileutils' configure.in).
1178
1179         * assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
1180         * chown.m4: Likewise.
1181         * d-ino.m4: Likewise.
1182         * d-type.m4: Likewise.
1183         * fnmatch.m4: Likewise.
1184         * getgroups.m4: Likewise.
1185         * gettext.m4: Likewise.
1186         * jm-mktime.m4: Likewise.
1187         * jm-winsz2.m4: Likewise.
1188         * lcmessage.m4: Likewise.
1189         * ls-mntd-fs.m4: Likewise.
1190         * malloc.m4: Likewise.
1191         * memcmp.m4: Likewise.
1192         * putenv.m4: Likewise.
1193         * realloc.m4: Likewise.
1194         * st_mtim.m4: Likewise.
1195         * strftime.m4: Likewise.
1196
1197 1999-01-16  Jim Meyering  <meyering@ascend.com>
1198
1199         * jm-macros.m4 (ARGMATCH_DIE): Define.
1200         (ARGMATCH_DIE_DECL): Define.
1201
1202 1999-01-12  Jim Meyering  <meyering@ascend.com>
1203
1204         * Makefile.am.in: Rewrite to avoid using fmt.
1205         Reported by Lars Hecking.
1206
1207 1999-01-10  Jim Meyering  <meyering@ascend.com>
1208
1209         * fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
1210         gross kludge.
1211         * inttypes_h.m4: Likewise.
1212         * lstat.m4: Likewise.
1213         * malloc.m4: Likewise.
1214         * readdir.m4: Likewise.
1215         * realloc.m4: Likewise.
1216         * st_dm_mode.m4: Likewise.
1217         * stat.m4: Likewise.
1218         * utimbuf.m4: Likewise.
1219         * utimes.m4: Likewise.
1220
1221         * check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
1222         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
1223         comments in config.h.in are meaningful.
1224
1225         * jm-macros.m4: Require autoconf-2.13 here.
1226
1227         * regex.m4: By default, don't use the included regex.c on systems
1228         with glibc 2.  Suggestion from Uli Drepper.
1229
1230 1999-01-02  Jim Meyering  <meyering@ascend.com>
1231
1232         * jm-macros.m4: Replace strcasecmp and strncasecmp.
1233
1234 1998-12-18  Jim Meyering  <meyering@ascend.com>
1235
1236         * Makefile.am.in (Makefile.am): Simplify rule.
1237         Based on a suggestion from Lars Hecking.
1238
1239 1998-11-16  Jim Meyering  <meyering@ascend.com>
1240
1241         * lfs.m4: Double-quote the `uname...` expression.
1242
1243 1998-11-16  Paul Eggert  <eggert@twinsun.com>
1244
1245         * lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
1246
1247 1998-11-14  Jim Meyering  <meyering@ascend.com>
1248
1249         * lstat.m4: Correct comment.  POSIX does not permit it to succeed.
1250         * stat.m4: Likewise.
1251
1252 1998-11-03  Jim Meyering  <meyering@ascend.com>
1253
1254         * stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
1255         * lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
1256
1257 1998-10-18  Jim Meyering  <meyering@ascend.com>
1258
1259         * check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
1260
1261 1998-10-17  Jim Meyering  <meyering@ascend.com>
1262
1263         * decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
1264         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
1265         calls for those previously hard-coded headers.  Instead, take a new
1266         parameter.
1267         (jm_CHECK_DECLARATIONS): Reflect interface change.
1268         * check-decl.m4 (jm_CHECK_DECLS): Likewise.
1269         (jm_CHECK_DECL_LOCALTIME_R): New macro.
1270
1271         * mktime.m4: Test for spring-forward gap before long-running test.
1272
1273 1998-10-14  Jim Meyering  <meyering@ascend.com>
1274
1275         * mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
1276         instead of "TZ=America/Vancouver".  From Paul Eggert.
1277
1278 1998-10-11  Jim Meyering  <meyering@ascend.com>
1279
1280         * mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
1281         This adds a test for a recently added compatibility fix for mktime.c.
1282         * jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
1283
1284 1998-09-27  Jim Meyering  <meyering@ascend.com>
1285
1286         * jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
1287
1288         * fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
1289         ../configure.in, including a change from Gordon Matzigkeit to allow
1290         cross-compiling for the Hurd.
1291
1292         * glibc.m4: New file/macro to test for the GNU C Library
1293         versions 1 and 2.  From Gordon Matzigkeit.
1294         Indent.
1295
1296 1998-09-21  Jim Meyering  <meyering@ascend.com>
1297
1298         * chown.m4: Declare locals: before, after.  From Andries Brouwer.
1299
1300 1998-08-18  Paul Eggert  <eggert@twinsun.com>
1301
1302         Port nanosecond-resolution times to UnixWare 2.1.2 and
1303         pedantic Solaris 2.6.
1304
1305         * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
1306         AC_STRUCT_ST_MTIM.
1307         * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
1308         Generate name of ns member, instead of just 1 or undef.
1309         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
1310
1311 1998-08-15  Jim Meyering  <meyering@ascend.com>
1312
1313         * ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
1314         * check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
1315         * jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
1316         instead of jm_TYPE_SSIZE_T.
1317
1318 1998-08-12  Jim Meyering  <meyering@ascend.com>
1319
1320         * st_dm_mode.m4: New file.  From Johan Danielsson.
1321
1322 1998-08-02  Jim Meyering  <meyering@ascend.com>
1323
1324         * st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
1325         in acconfig.h manually.
1326
1327 1998-07-31  Paul Eggert  <eggert@twinsun.com>
1328
1329         * st_mtim.m4: New file.
1330
1331 1998-07-28  Jim Meyering  <meyering@ascend.com>
1332
1333         * utimes.m4: Undef stat.
1334
1335 1998-07-25  Jim Meyering  <meyering@ascend.com>
1336
1337         * utime.m4 (jm_FUNC_UTIME): New file and macro.
1338         * utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
1339
1340 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
1341
1342         * chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
1343         uid and gid actually remain unchanged.
1344
1345 1998-07-07  Jim Meyering  <meyering@ascend.com>
1346
1347         * jm-glibc-io.m4: Remove fclose_unlocked.
1348
1349 1998-07-04  Jim Meyering  <meyering@ascend.com>
1350
1351         * regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
1352         to prove that this macro can be used in packages without regex.c.
1353
1354 1998-07-02  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1355
1356         * gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
1357         is to be used.
1358
1359 1998-07-03  Jim Meyering  <meyering@ascend.com>
1360
1361         * gettext.m4: Add -lintl if it's found to be necessary.
1362
1363         * gettext.m4: New file -- from gettext-0.10.35.
1364         * lcmessage.m4: Likewise.
1365         * progtest.m4: Likewise.
1366
1367         * regex.m4 (jm_WITH_REGEX): New file and macro.
1368         * jm-macros.m4: Require the new macro.
1369
1370 1998-06-29  Jim Meyering  <meyering@ascend.com>
1371
1372         * fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
1373         for the definition of NGROUPS (used in a system header included
1374         by sys/mount.h).
1375
1376 1998-06-28  Jim Meyering  <meyering@ascend.com>
1377
1378         * ls-mntd-fs.m4: New file.
1379         * fstypename.m4: New file.
1380
1381         * jm-macros.m4: Require the new macro.
1382         * jm-glibc-io.m4: New file.
1383
1384 1998-05-19  Jim Meyering  <meyering@ascend.com>
1385
1386         * jm-macros.m4: Add jm_FUNC_LCHOWN.
1387         * lchown.m4: New file.
1388
1389         * Makefile.am.in: New file.
1390         * Makefile.am (Makefile.am): Depend on Makefile.am.in.
1391
1392 1998-05-14  Jim Meyering  <meyering@ascend.com>
1393
1394         * Makefile.am (EXTRA_DIST): Add them.
1395         * jm-macros.m4: New file.
1396         * utimbuf.m4: New file.
1397
1398 1998-05-12  Jim Meyering  <meyering@ascend.com>
1399
1400         * Makefile.am (EXTRA_DIST): Add isc-posix.m4.
1401
1402 1998-05-11  Jim Meyering  <meyering@ascend.com>
1403
1404         * isc-posix.m4: New file.
1405
1406 1998-05-10  Jim Meyering  <meyering@ascend.com>
1407
1408         * jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
1409
1410 1998-05-09  Jim Meyering  <meyering@ascend.com>
1411
1412         * Makefile.am (EXTRA_DIST): Add ssize_t.m4.
1413         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
1414         with automake.
1415
1416         * ssize_t.m4: New file.
1417         * mktime.m4: Remove file -- the new automake has this now.
1418
1419 1998-04-26  Jim Meyering  <meyering@ascend.com>
1420
1421         * assert.m4: New file.
1422         * Makefile.am (EXTRA_DIST): Add assert.m4.
1423
1424 1998-04-05  Jim Meyering  <meyering@ascend.com>
1425
1426         * prereq.m4 (jm_PREREQ_REGEX): New macro.
1427         (jm_PREREQ): Use it here.
1428
1429 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
1430
1431         * inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
1432         in acconfig.h.
1433
1434 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
1435
1436         * prereq.m4: New file.
1437         * error.m4: New file.
1438         * Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
1439
1440 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
1441
1442         * getline.m4: Don't set am_cv_func_working_getline before the
1443         cache-check for the same variable -- that defeated the purpose of
1444         the test; the test program was never run.  This was a problem only
1445         on systems with losing getline functions -- HP-UX 10.20 is one.
1446         Reported by Bjorn Helgaas.
1447
1448 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
1449
1450         * Makefile.am (EXTRA_DIST): Add perl.m4.
1451
1452 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
1453
1454         * Makefile.am (EXTRA_DIST): Add const.m4.
1455
1456         * const.m4: New file.  Use an initializer in this declaration
1457         typedef int charset[2]; const charset x;
1458         Reported by Bob Glickstein.
1459
1460 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
1461
1462         * chown.m4: Fix reversed types on -1 args to chown.
1463         From Kaveh Ghazi.
1464
1465 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
1466
1467         * check-decl.m4: s/DECLARATION_/DECL_/g.
1468         Add lseek and memchr.
1469
1470         * decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
1471         T.E.Dickey <dickey@clark.net> said that some older preprocessors
1472         have a 20-character limit on names.
1473
1474 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
1475
1476         * inttypes_h.m4: New file.
1477         * uintmax_t.m4: New file.
1478         * Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.