commit 4682c96c0bd432f41abb6d83b9edf8bce195ce40
parent 67fd3c37e6908795bd86220435a37637c9e16d63
Author: tgoodwin <tgoodwin>
Date: Wed, 18 Feb 1998 11:37:45 +0000
support ssize_t
Diffstat:
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/acconfig.h b/acconfig.h
@@ -1,4 +1,7 @@
-/* Define if you want rc to hand off exec errors to (e.g.) /bin/sh */
+/* Define to a suitable ssize_t. */
+#undef ssize_t
+
+/* Define if you want rc to hand off exec errors to (e.g.) /bin/sh. */
#undef DEFAULTINTERP
/* Define to the default path used if $PATH is empty when rc starts. */
@@ -54,5 +57,3 @@
/* Define to release date. */
#undef RELDATE
-
-/* eof */
diff --git a/configure.ac b/configure.ac
@@ -45,6 +45,7 @@ AC_TYPE_GETGROUPS
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_UID_T
+AC_CHECK_TYPE(ssize_t, unsigned)
AC_CHECK_FUNCS(getgroups setpgrp setrlimit)