Fixes
authorTom Tromey <tromey@redhat.com>
Sat, 10 Aug 1996 23:43:30 +0000 (23:43 +0000)
committerTom Tromey <tromey@redhat.com>
Sat, 10 Aug 1996 23:43:30 +0000 (23:43 +0000)
ChangeLog
m4/AM_FEATURE_CTYPE.m4
m4/AM_FEATURE_ERRNO.m4
m4/AM_FEATURE_EXIT.m4

index ec8e77c..7fae82d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 Sat Aug 10 10:29:30 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
+       * m4/AM_FEATURE_EXIT.m4: Wrote.
+       * m4/AM_FEATURE_CTYPE.m4: Wrote.
+       * m4/AM_FEATURE_ERRNO.m4: Wrote.
+
        * aclocal.in (macro_seen): New global.
        (add_file): Set macro_seen entry.  Only push required macro on
        @rlist if not already seen.  Test defun.test.
index 1b80e93..a5cb4ff 100644 (file)
@@ -1 +1,5 @@
-AC_DEFUN([AM_FEATURE_CTYPE])
+dnl Use this in conjunction with autosystem to get working ctype-style
+dnl macros.
+
+AC_DEFUN([AM_FEATURE_CTYPE],
+AC_REQUIRE([AC_HEADER_STDC]))
index 6099bea..240ac5c 100644 (file)
@@ -1 +1,4 @@
+dnl Use this in conjunction with autosystem to get `errno'.
+dnl Doesn't actually require any definition; it just assumes that
+dnl <errno.h> exists.
 AC_DEFUN([AM_FEATURE_ERRNO])
index d8de60d..f2faf7e 100644 (file)
@@ -1 +1,5 @@
+dnl Use this in conjunction with autosystem to get `exit',
+dnl EXIT_SUCCESS, and EXIT_FAILURE.
+dnl Doesn't actually require any definition; it just assumes that
+dnl <stdlib.h> exists.
 AC_DEFUN([AM_FEATURE_EXIT])