Commit b6e19557 b6e19557cb3ec4b5ca041923df8069366aab501d by Alain Magloire

* acconfig.h: #define ssize_t.

	* configure.in: Add AC_CHECK_TYPE(ssize_t, int);
1 parent a4458c39
1 2001-10-26 Alain Magloire
2
3 * acconfig.h: #define ssize_t.
4 * configure.in: Add AC_CHECK_TYPE(ssize_t, int);
5
1 2001-10-26 Sergey Poznyakoff 6 2001-10-26 Sergey Poznyakoff
2 7
3 Fixed behavior in send mode when the stdin is not a terminal 8 Fixed behavior in send mode when the stdin is not a terminal
......
...@@ -53,3 +53,6 @@ ...@@ -53,3 +53,6 @@
53 53
54 /* Define if libc has obstack functions */ 54 /* Define if libc has obstack functions */
55 #undef HAVE_OBSTACK 55 #undef HAVE_OBSTACK
56
57 /* Define to `int' if <sys/types.h> doesn't define. */
58 #undef ssize_t
......
...@@ -87,6 +87,7 @@ AC_TYPE_MODE_T ...@@ -87,6 +87,7 @@ AC_TYPE_MODE_T
87 AC_TYPE_OFF_T 87 AC_TYPE_OFF_T
88 AC_TYPE_PID_T 88 AC_TYPE_PID_T
89 AC_TYPE_SIZE_T 89 AC_TYPE_SIZE_T
90 AC_CHECK_TYPE(ssize_t, int)
90 AC_TYPE_SIGNAL 91 AC_TYPE_SIGNAL
91 AC_DECL_SYS_SIGLIST 92 AC_DECL_SYS_SIGLIST
92 AC_STRUCT_TIMEZONE 93 AC_STRUCT_TIMEZONE
......