*** empty log message ***
[pspp] / m4 / ChangeLog
1 2000-02-08  Akim Demaille  <akim@epita.fr>
2
3         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with `[' and `]'
4         and remove uses of `changequote'.
5         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
6         (AC_SYS_LARGEFILE): Likewise.
7         * gettext.m4 (AM_GNU_GETTEXT): Likewise.
8         * strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
9         of changequote.
10         * regex.m4 (jm_INCLUDED_REGEX): Likewise.
11         * readdir.m4 (jm_FUNC_READDIR): Likewise
12         * memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
13         * getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
14
15 2000-02-05  Jim Meyering  <meyering@lucent.com>
16
17         * jm-macros.m4: (jm_CHECK_ALL_TYPES): Require most macros.
18         Remove explicit use of AC_HEADER_TIME.  It is required by
19         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
20         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
21         in autoconf whereby the expansion of the latter ended up preceding
22         the expansion of its prerequisite, AC_HEADER_TIME.
23         Reported by Volker Borchert.
24
25 2000-02-03  Jim Meyering  <meyering@lucent.com>
26
27         * prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
28
29 2000-02-02  Jim Meyering  <meyering@lucent.com>
30
31         * prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
32         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
33         Reported by Eli Zaretskii.
34
35 2000-01-31  Jim Meyering  <meyering@lucent.com>
36
37         * check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
38         functions.  Add the time.h and sys/time.h headers along with the
39         AC_REQUIRE'ment of AC_HEADER_TIME.
40
41 2000-01-30  Jim Meyering  <meyering@lucent.com>
42
43         * lib-check.m4: Clean up some kludgy old shadow password tests.
44
45         * prereq.m4 (utmp_includes): Define.
46         Check for ut_user and ut_name members in both struct utmpx
47         and struct utmp.
48
49 2000-01-29  Jim Meyering  <meyering@lucent.com>
50
51         * lib-check.m4: New file containing library-related checks from
52         fileutils and sh-utils (textutils had none).
53
54 2000-01-28  Jim Meyering  <meyering@lucent.com>
55
56         * perl.m4: Change format of warning message to look more like that
57         from the missing script.  Suggestion from François Pinard.
58
59 2000-01-25  Jim Meyering  <meyering@lucent.com>
60
61         * timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as well
62         as time.h in the compile check.
63         * nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
64         Fix typo in cross-compiling case: s/yes/no/.
65
66 2000-01-23  Jim Meyering  <meyering@lucent.com>
67
68         * jm-macros.m4: Move df-related tests here from fileutils/configure.in
69
70         * ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
71         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
72
73         * fsusage.m4: New file.  Extracted from fileutils/configure.in.
74         s/space/ac_fsusage_space/.
75         (jm_FILE_SYSTEM_USAGE): Take two parameters.
76
77         * ftruncate.m4: New file (derived from part of fileutils/configure.in).
78         * jm-macros.m4: (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
79         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
80
81         * jm-macros.m4: (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
82         AC_SUBST these here, rather than just in sh-util/configure.in, so
83         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
84         all the same.
85         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
86         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
87         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
88         (AC_SUBST(POW_LIBM)): Likewise.
89         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
90
91 2000-01-22  Jim Meyering  <meyering@lucent.com>
92
93         * jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
94
95         * prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
96
97         * jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
98         configure.in
99         (AC_CHECK_HEADERS): Likewise for sh-utils.
100         (AC_CHECK_HEADERS): Likewise for textutils.
101         Merge the three lists of headers.
102
103         * prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
104         from fileutils' configure.in.
105
106         * decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)' code.
107         Moved tests into their own function (_jm_DECL_HEADERS) in check-decl.m4.
108
109         * check-decl.m4: Use #if rather than #ifdef.
110         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
111         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
112         (_jm_DECL_HEADERS): Define new function.
113         (jm_CHECK_DECLARATIONS): Require it.
114
115 2000-01-19  Jim Meyering  <meyering@lucent.com>
116
117         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
118         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
119         defines `struct timespec' in <sys/time.h>
120
121         * c-bs-a.m4: Remove uses of changequote altogether.
122         Thanks to Akim for explaining.
123
124 2000-01-16  Jim Meyering  <meyering@lucent.com>
125
126         * jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
127         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
128         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
129         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
130
131 2000-01-16  Jim Meyering  <meyering@lucent.com>
132
133         * c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
134         because the latter didn't work.
135
136 2000-01-15  Jim Meyering  <meyering@lucent.com>
137
138         * jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
139         (AC_REPLACE_FUNCS): Add memcpy and memset.
140         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
141         Add strpbrk.
142         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
143
144 2000-01-12  Jim Meyering  <meyering@lucent.com>
145
146         * prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
147         (jm_PREREQ): Use it.
148         (jm_PREREQ_READUTMP): New macro.
149         (jm_PREREQ): Use it.
150
151 2000-01-11  Paul Eggert  <eggert@twinsun.com>
152
153         Quote multibyte characters correctly.
154         * m4/c-bs-a.m4: New file.
155         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
156         (jm_PREREQ): Use it.
157
158 2000-01-11  Paul Eggert  <eggert@twinsun.com>
159
160         * m4/uintmax_t.m4: Port to autoconf 2.13.
161
162 2000-01-08  Jim Meyering  <meyering@ascend.com>
163
164         * strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
165         * jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
166
167 2000-01-04  Jim Meyering  <meyering@ascend.com>
168
169         * d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
170         jm_STRUCT_DIRENT_D_TYPE.
171         * d-ino.m4: (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
172         jm_STRUCT_DIRENT_D_INO.
173         * utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
174         jm_STRUCT_UTIMBUF.
175         * jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/ renamings.
176         * utime.m4: Likewise.
177
178         * timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
179         * jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
180
181 2000-01-03  Paul Eggert  <eggert@twinsun.com>
182
183         * nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
184         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
185
186 2000-01-02  Jim Meyering  <meyering@ascend.com>
187
188         * search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
189         remember if this is necessary.
190
191 1999-12-26  Jim Meyering  <meyering@ascend.com>
192
193         * jm-macros.m4: Use it here.
194         * nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
195
196 1999-12-23  Jim Meyering  <meyering@ascend.com>
197
198         * jm-macros.m4: Check for clock_gettime (moved from
199         fileutils/configure.in)
200         Check for gettimeofday.
201
202 1999-12-20  Jim Meyering  <meyering@ascend.com>
203
204         * strftime.m4: Remove kludge, now that I'm using the fixed
205         autoconf-2.14a-1999-12-20.
206
207 1999-12-19  Jim Meyering  <meyering@ascend.com>
208
209         * lstat-slash.m4: New file.
210         * jm-macros.m4: Use the new macro:
211         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
212
213 1999-12-07  Jim Meyering  <meyering@ascend.com>
214
215         * perl.m4: Require that File::Compare be available, too.
216         Too many systems seem to lack it.
217
218         * strftime.m4: Add checks for most of the cpp macros tested in
219         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
220
221 1999-11-18  Paul Eggert  <eggert@twinsun.com>
222
223         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
224         problem with the QNX 4.25 shell, which doesn't propagate exit
225         status of failed commands inside shell assignments.
226
227 1999-11-17  Jim Meyering  <meyering@ascend.com>
228
229         * gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
230
231 1999-11-07  Jim Meyering  <meyering@ascend.com>
232
233         * getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
234
235 1999-11-06  Jim Meyering  <meyering@ascend.com>
236
237         * link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
238         * jm-macros.m4 (jm_MACROS): Use it here.
239
240 1999-11-05  Jim Meyering  <meyering@ascend.com>
241
242         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from configure.in
243         of textutils, fileutils, and sh-utils into this one (shared between
244         those packages) file.
245         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
246         AC_STRUCT_ST_BLKSIZE.
247
248 1999-11-03  Jim Meyering  <meyering@ascend.com>
249
250         * ssize_t.m4: Remove file.  No longer needed since the new version of
251         AC_CHECK_TYPE checks includes unistd.h.
252         * jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
253         Suggestion from Akim Demaille.
254
255 1999-10-30  Jim Meyering  <meyering@ascend.com>
256
257         * uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
258         m4-quoted string.
259         * ls-mntd-fs.m4: Likewise.
260         * jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
261         * jm-winsz1.m4: Likewise.
262
263         * const.m4: Remove file, since the fix made it into the experimental
264         version of autoconf.
265         * mktime.m4: Likewise.
266
267         * check-type.m4: Remove file, now that the latest version of
268         AC_CHECK_TYPE takes a third arg to specify additional #includes.
269
270         * ssize_t.m4: New file, requires experimental version of autoconf.
271         * jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
272         AC_CHECK_TYPE.
273
274 1999-10-04  Jim Meyering  <meyering@ascend.com>
275
276         * jm-macros.m4: Don't require autoconf-2.14.1.
277
278 1999-09-22  Paul Eggert  <eggert@twinsun.com>
279
280         * largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
281         2.95.1 bug with HP-UX 10.20.
282
283 1999-09-17  Jim Meyering  <meyering@ascend.com>
284
285         * jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
286         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
287         due to missing strdup (against sh-utils-2.0).
288
289 1999-08-29  Jim Meyering  <meyering@ascend.com>
290
291         * jm-macros.m4: Require jm_BISON.
292         * bison.m4: New file.
293
294 1999-08-17  Paul Eggert  <eggert@twinsun.com>
295
296         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
297         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
298
299 1999-08-05  Jim Meyering  <meyering@ascend.com>
300
301         * getline.m4: Rename test file from conftestdata to conftest.data
302         to avoid conflicts with `conftest' on 8+3 filesystems.
303         Suggestion from Eli Zaretskii.
304
305 1999-08-04  Jim Meyering  <meyering@ascend.com>
306
307         * jm-macros.m4: Move a 4-line block of code from the configure.in of
308         fileutils and sh-utils (textutils's getline test was inadequate).
309         (AM_FUNC_GETLINE): Run this test.
310         (AC_CHECK_FUNCS): Check for getdelim.
311         Reported by Bob Proulx.
312
313 1999-08-02  Jim Meyering  <meyering@ascend.com>
314
315         * jm-macros.m4: Add a comment.
316
317 1999-08-01  Jim Meyering  <meyering@ascend.com>
318
319         * mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from m4.
320
321 1999-08-01  Paul Eggert  <eggert@twinsun.com>
322
323         * lfs.m4: Remove this file.
324         * largefile.m4: New file.  It contains the old contents of
325         lfs.m4, except that all names with prefix AC_LFS have been
326         changed to use the prefix AC_SYS_LARGEFILE instead, to be
327         compatible with future autoconf versions.  Also, some minor m4
328         quoting problems have been fixed.
329
330 1999-07-16  Paul Eggert  <eggert@twinsun.com>
331
332         * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
333         that we can shift, multiply and divide unsigned long long
334         values; Ultrix cc can't do it.
335
336 1999-07-14  Paul Eggert  <eggert@twinsun.com>
337
338         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
339         <inttypes.h> defines strtoumax as a macro (and not as a
340         function).
341
342 1999-07-05  Paul Eggert  <eggert@twinsun.com>
343
344         * gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
345         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
346         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
347         and simplify the shell code.
348
349 1999-07-03  Paul Eggert  <eggert@twinsun.com>
350
351         * mktime.m4: New file, which is a preview of what should appear
352         in the next public autoconf release.
353
354 1999-07-20  Jim Meyering  <meyering@ascend.com>
355
356         * jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
357
358 1999-07-15  Jim Meyering  <meyering@ascend.com>
359
360         * jm-macros.m4: (AC_CHECK_FUNCS): Check for getpagesize.
361
362 1999-05-22  Jim Meyering  <meyering@ascend.com>
363
364         * jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
365
366 1999-05-20  Jim Meyering  <meyering@ascend.com>
367
368         * search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
369         Add a colon after each `then' in case $4 is empty.
370
371 1999-05-16  Jim Meyering  <meyering@ascend.com>
372
373         * search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
374
375 1999-05-10  Jim Meyering  <meyering@ascend.com>
376
377         * jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
378
379         * jm-macros.m4: Require 2.14.1, since we use newly-renamed
380         AC_FUNC_MKTIME.
381
382 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
383
384         * jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
385
386 1999-05-04  Paul Eggert  <eggert@twinsun.com>
387
388         * lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
389         not CPPFLAGS, so that linking works correctly in IRIX.
390
391 1999-04-30  Paul Eggert  <eggert@twinsun.com>
392
393         * jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
394
395 1999-04-20  Jim Meyering  <meyering@ascend.com>
396
397         * xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
398         AC_REPLACE xstroull if necessary.  From Paul Eggert.
399         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
400
401 1999-04-20  Paul Eggert  <eggert@twinsun.com>
402
403         * uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
404         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
405         * jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
406         jm_AC_TYPE_UNSIGNED_LONG_LONG.
407         * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
408
409         * lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
410
411 1999-04-18  Jim Meyering  <meyering@ascend.com>
412
413         * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
414         * jm-macros.m4: Use it.
415
416 1999-04-06  Jim Meyering  <meyering@ascend.com>
417
418         * strftime.m4: Remove test for %f.
419
420 1999-03-29  Jim Meyering  <meyering@ascend.com>
421
422         * jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
423         superset of the AC_TYPE_* checks in the textutils, fileutils,
424         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
425         AC_TYPE_PID_T.
426
427 1999-03-28  Jim Meyering  <meyering@ascend.com>
428
429         * jm-macros.m4: Define GNU_PACKAGE here.
430         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
431         replaced e.g., in the *.sh files of the sh-utils.
432
433 1999-03-20  Jim Meyering  <meyering@ascend.com>
434
435         * jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
436         * regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
437         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
438
439 1999-03-19  Jim Meyering  <meyering@ascend.com>
440
441         * jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
442
443 1999-03-12  Jim Meyering  <meyering@ascend.com>
444
445         * jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
446
447 1999-03-07  Jim Meyering  <meyering@ascend.com>
448
449         * jm-glibc-io.m4: Use only those *_unlocked macros that are declared.
450
451 1999-02-17  Jim Meyering  <meyering@ascend.com>
452
453         * gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of brackets
454         in macro definition.  From Eli Zaretskii and Alain Magloire.
455
456 1999-02-07  Jim Meyering  <meyering@ascend.com>
457
458         * group-member.m4: New file -- extracted from sh-utils' configure.in.
459
460         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
461         * gettext.m4: Support DOS-style d:/foo/bar absolute file names.
462
463 1999-02-06  Jim Meyering  <meyering@ascend.com>
464
465         * chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
466         * fnmatch.m4: Likewise.
467         * getgroups.m4: Likewise.
468         * lstat.m4: Likewise.
469         * malloc.m4: Likewise.
470         * putenv.m4: Likewise.
471         * realloc.m4: Likewise.
472         * regex.m4: Likewise.
473         * stat.m4: Likewise.
474         * strftime.m4: Likewise.
475         Suggestion from Alain Magloire.
476
477         * chown.m4: Use `.$ac_objext', not `.o'.
478         * fnmatch.m4: Likewise.
479         * getgroups.m4: Likewise.
480         * getline.m4: Likewise.
481         * lstat.m4: Likewise.
482         * malloc.m4: Likewise.
483         * memcmp.m4: Likewise.
484         * putenv.m4: Likewise.
485         * realloc.m4: Likewise.
486         * regex.m4: Likewise.
487         * stat.m4: Likewise.
488         * strftime.m4: Likewise.
489         Suggestion from Alain Magloire.
490
491         * jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
492         an argument.
493
494         * regex.m4: Add a run-time Test for proper operation of
495         re_compile_pattern.
496
497 1999-01-31  Jim Meyering  <meyering@ascend.com>
498
499         * getloadavg.m4: Check for locale.h and the function, setlocale.
500
501 1999-01-30  Jim Meyering  <meyering@ascend.com>
502
503         * check-type.m4: Use 3-arg form of AC_DEFINE.
504
505         * jm-mktime.m4: Make this a wrapper around the official AM_FUNC_MKTIME
506         rather than my private copy, now that the official one is up to date.
507         * mktime.m4: Remove file.
508
509         * getloadavg.m4: Use 3-arg form of AC_DEFINE.
510         * uptime.m4: Likewise.
511         * uintmax_t.m4: Likewise.
512
513 1999-01-28  Jim Meyering  <meyering@ascend.com>
514
515         * jm-macros.m4: Use jm_AFS.
516         * afs.m4: New file (from fileutils' configure.in).
517
518         * assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
519         * chown.m4: Likewise.
520         * d-ino.m4: Likewise.
521         * d-type.m4: Likewise.
522         * fnmatch.m4: Likewise.
523         * getgroups.m4: Likewise.
524         * gettext.m4: Likewise.
525         * jm-mktime.m4: Likewise.
526         * jm-winsz2.m4: Likewise.
527         * lcmessage.m4: Likewise.
528         * ls-mntd-fs.m4: Likewise.
529         * malloc.m4: Likewise.
530         * memcmp.m4: Likewise.
531         * putenv.m4: Likewise.
532         * realloc.m4: Likewise.
533         * st_mtim.m4: Likewise.
534         * strftime.m4: Likewise.
535
536 1999-01-16  Jim Meyering  <meyering@ascend.com>
537
538         * jm-macros.m4 (ARGMATCH_DIE): Define.
539         (ARGMATCH_DIE_DECL): Define.
540
541 1999-01-12  Jim Meyering  <meyering@ascend.com>
542
543         * Makefile.am.in: Rewrite to avoid using fmt.
544         Reported by Lars Hecking.
545
546 1999-01-10  Jim Meyering  <meyering@ascend.com>
547
548         * fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
549         gross kludge.
550         * inttypes_h.m4: Likewise.
551         * lstat.m4: Likewise.
552         * malloc.m4: Likewise.
553         * readdir.m4: Likewise.
554         * realloc.m4: Likewise.
555         * st_dm_mode.m4: Likewise.
556         * stat.m4: Likewise.
557         * utimbuf.m4: Likewise.
558         * utimes.m4: Likewise.
559
560         * check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
561         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
562         comments in config.h.in are meaningful.
563
564         * jm-macros.m4: Require autoconf-2.13 here.
565
566         * regex.m4: By default, don't use the included regex.c on systems
567         with glibc 2.  Suggestion from Uli Drepper.
568
569 1999-01-02  Jim Meyering  <meyering@ascend.com>
570
571         * jm-macros.m4: Replace strcasecmp and strncasecmp.
572
573 1998-12-18  Jim Meyering  <meyering@ascend.com>
574
575         * Makefile.am.in (Makefile.am): Simplify rule.
576         Based on a suggestion from Lars Hecking.
577
578 1998-11-16  Jim Meyering  <meyering@ascend.com>
579
580         * lfs.m4: Double-quote the `uname...` expression.
581
582 1998-11-16  Paul Eggert  <eggert@twinsun.com>
583
584         * lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
585
586 1998-11-14  Jim Meyering  <meyering@ascend.com>
587
588         * lstat.m4: Correct comment.  POSIX does not permit it to succeed.
589         * stat.m4: Likewise.
590
591 1998-11-03  Jim Meyering  <meyering@ascend.com>
592
593         * stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
594         * lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
595
596 1998-10-18  Jim Meyering  <meyering@ascend.com>
597
598         * check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
599
600 1998-10-17  Jim Meyering  <meyering@ascend.com>
601
602         * decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
603         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
604         calls for those previously hard-coded headers.  Instead, take a new
605         parameter.
606         (jm_CHECK_DECLARATIONS): Reflect interface change.
607         * check-decl.m4 (jm_CHECK_DECLS): Likewise.
608         (jm_CHECK_DECL_LOCALTIME_R): New macro.
609
610         * mktime.m4: Test for spring-forward gap before long-running test.
611
612 1998-10-14  Jim Meyering  <meyering@ascend.com>
613
614         * mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
615         instead of "TZ=America/Vancouver".  From Paul Eggert.
616
617 1998-10-11  Jim Meyering  <meyering@ascend.com>
618
619         * mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
620         This adds a test for a recently added compatibility fix for mktime.c.
621         * jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
622
623 1998-09-27  Jim Meyering  <meyering@ascend.com>
624
625         * jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
626
627         * fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
628         ../configure.in, including a change from Gordon Matzigkeit to allow
629         cross-compiling for the Hurd.
630
631         * glibc.m4: New file/macro to test for the GNU C Library
632         versions 1 and 2.  From Gordon Matzigkeit.
633         Indent.
634
635 1998-09-21  Jim Meyering  <meyering@ascend.com>
636
637         * chown.m4: Declare locals: before, after.  From Andries Brouwer.
638
639 1998-08-18  Paul Eggert  <eggert@twinsun.com>
640
641         Port nanosecond-resolution times to UnixWare 2.1.2 and
642         pedantic Solaris 2.6.
643
644         * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
645         AC_STRUCT_ST_MTIM.
646         * st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
647         Generate name of ns member, instead of just 1 or undef.
648         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
649
650 1998-08-15  Jim Meyering  <meyering@ascend.com>
651
652         * ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
653         * check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
654         * jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
655         instead of jm_TYPE_SSIZE_T.
656
657 1998-08-12  Jim Meyering  <meyering@ascend.com>
658
659         * st_dm_mode.m4: New file.  From Johan Danielsson.
660
661 1998-08-02  Jim Meyering  <meyering@ascend.com>
662
663         * st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
664         in acconfig.h manually.
665
666 1998-07-31  Paul Eggert  <eggert@twinsun.com>
667
668         * st_mtim.m4: New file.
669
670 1998-07-28  Jim Meyering  <meyering@ascend.com>
671
672         * utimes.m4: Undef stat.
673
674 1998-07-25  Jim Meyering  <meyering@ascend.com>
675
676         * utime.m4 (jm_FUNC_UTIME): New file and macro.
677         * utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
678
679 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
680
681         * chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
682         uid and gid actually remain unchanged.
683
684 1998-07-07  Jim Meyering  <meyering@ascend.com>
685
686         * jm-glibc-io.m4: Remove fclose_unlocked.
687
688 1998-07-04  Jim Meyering  <meyering@ascend.com>
689
690         * regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
691         to prove that this macro can be used in packages without regex.c.
692
693 1998-07-02  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
694
695         * gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
696         is to be used.
697
698 1998-07-03  Jim Meyering  <meyering@ascend.com>
699
700         * gettext.m4: Add -lintl if it's found to be necessary.
701
702         * gettext.m4: New file -- from gettext-0.10.35.
703         * lcmessage.m4: Likewise.
704         * progtest.m4: Likewise.
705
706         * regex.m4 (jm_WITH_REGEX): New file and macro.
707         * jm-macros.m4: Require the new macro.
708
709 1998-06-29  Jim Meyering  <meyering@ascend.com>
710
711         * fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
712         for the definition of NGROUPS (used in a system header included
713         by sys/mount.h).
714
715 1998-06-28  Jim Meyering  <meyering@ascend.com>
716
717         * ls-mntd-fs.m4: New file.
718         * fstypename.m4: New file.
719
720         * jm-macros.m4: Require the new macro.
721         * jm-glibc-io.m4: New file.
722
723 1998-05-19  Jim Meyering  <meyering@ascend.com>
724
725         * jm-macros.m4: Add jm_FUNC_LCHOWN.
726         * lchown.m4: New file.
727
728         * Makefile.am.in: New file.
729         * Makefile.am (Makefile.am): Depend on Makefile.am.in.
730
731 1998-05-14  Jim Meyering  <meyering@ascend.com>
732
733         * Makefile.am (EXTRA_DIST): Add them.
734         * jm-macros.m4: New file.
735         * utimbuf.m4: New file.
736
737 1998-05-12  Jim Meyering  <meyering@ascend.com>
738
739         * Makefile.am (EXTRA_DIST): Add isc-posix.m4.
740
741 1998-05-11  Jim Meyering  <meyering@ascend.com>
742
743         * isc-posix.m4: New file.
744
745 1998-05-10  Jim Meyering  <meyering@ascend.com>
746
747         * jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
748
749 1998-05-09  Jim Meyering  <meyering@ascend.com>
750
751         * Makefile.am (EXTRA_DIST): Add ssize_t.m4.
752         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
753         with automake.
754
755         * ssize_t.m4: New file.
756         * mktime.m4: Remove file -- the new automake has this now.
757
758 1998-04-26  Jim Meyering  <meyering@ascend.com>
759
760         * assert.m4: New file.
761         * Makefile.am (EXTRA_DIST): Add assert.m4.
762
763 1998-04-05  Jim Meyering  <meyering@ascend.com>
764
765         * prereq.m4 (jm_PREREQ_REGEX): New macro.
766         (jm_PREREQ): Use it here.
767
768 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
769
770         * inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
771         in acconfig.h.
772
773 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
774
775         * prereq.m4: New file.
776         * error.m4: New file.
777         * Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
778
779 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
780
781         * getline.m4: Don't set am_cv_func_working_getline before the
782         cache-check for the same variable -- that defeated the purpose of
783         the test; the test program was never run.  This was a problem only
784         on systems with losing getline functions -- HP-UX 10.20 is one.
785         Reported by Bjorn Helgaas.
786
787 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
788
789         * Makefile.am (EXTRA_DIST): Add perl.m4.
790
791 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
792
793         * Makefile.am (EXTRA_DIST): Add const.m4.
794
795         * const.m4: New file.  Use an initializer in this declaration
796         typedef int charset[2]; const charset x;
797         Reported by Bob Glickstein.
798
799 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
800
801         * chown.m4: Fix reversed types on -1 args to chown.
802         From Kaveh Ghazi.
803
804 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
805
806         * check-decl.m4: s/DECLARATION_/DECL_/g.
807         Add lseek and memchr.
808
809         * decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
810         T.E.Dickey <dickey@clark.net> said that some older preprocessors
811         have a 20-character limit on names.
812
813 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
814
815         * inttypes_h.m4: New file.
816         * uintmax_t.m4: New file.
817         * Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.