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