diff options
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/pty/ChangeLog | 5 | ||||
| -rw-r--r-- | src/util/pty/configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/util/pty/ChangeLog b/src/util/pty/ChangeLog index 656f400b3e..5954edddc5 100644 --- a/src/util/pty/ChangeLog +++ b/src/util/pty/ChangeLog @@ -1,3 +1,8 @@ +Wed Oct 1 04:53:30 1997 Tom Yu <tlyu@mit.edu> + + * configure.in: Default to a long rather than an int for a time_t + for paranoia reasons. + Tue Jun 3 23:05:07 1997 Theodore Y. Ts'o <tytso@mit.edu> * getpty.c (pty_getpty): Remove erroneous space from the HPUX open(). diff --git a/src/util/pty/configure.in b/src/util/pty/configure.in index e1b22719f9..95d77db1c6 100644 --- a/src/util/pty/configure.in +++ b/src/util/pty/configure.in @@ -51,7 +51,7 @@ AC_SUBST(LOGINLIBS) dnl AC_CHECK_LIB(util,openpty, AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lutil") AC_TYPE_MODE_T -AC_CHECK_TYPE(time_t, int) +AC_CHECK_TYPE(time_t, long) AC_FUNC_CHECK(strsave,AC_DEFINE(HAS_STRSAVE)) AC_HAVE_FUNCS(getutent setreuid gettosbyname setsid ttyname line_push ptsname grantpt openpty logwtmp getutmpx) AC_CHECK_HEADERS(unistd.h stdlib.h string.h utmpx.h utmp.h sys/filio.h sys/sockio.h sys/label.h sys/tty.h ttyent.h lastlog.h sys/select.h sys/ptyvar.h) |
