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