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