From 078c40cdb07f90721ff98dc4a3c897285b6e7103 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Thu, 15 Apr 1999 21:05:50 +0000 Subject: [PATCH] configure.in: Fix typo in test below; fixed name of the autoconf cache variable which indicates if sys/streams.h exists. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11362 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/telnet/telnetd/ChangeLog | 7 ++++++- src/appl/telnet/telnetd/configure.in | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/appl/telnet/telnetd/ChangeLog b/src/appl/telnet/telnetd/ChangeLog index 11df0ee5e..afa44f2c7 100644 --- a/src/appl/telnet/telnetd/ChangeLog +++ b/src/appl/telnet/telnetd/ChangeLog @@ -1,8 +1,13 @@ +Thu Apr 15 17:02:49 1999 Theodore Y. Ts'o + + * configure.in: Fix typo in test below; fixed name of the autoconf + cache variable which indicates if sys/streams.h exists. + 1999-04-13 * configure.in: Check for setupterm() in libncurses in addition to libcurses. Only set STREAMSPTY if both grantpt and - sys/stremas.h exists. (Will be needed for Linux/Redhat 6.0) + sys/streams.h exists. (Will be needed for Linux/Redhat 6.0) Wed Mar 31 00:05:58 1999 Tom Yu diff --git a/src/appl/telnet/telnetd/configure.in b/src/appl/telnet/telnetd/configure.in index 99ae206ea..2b6a21829 100644 --- a/src/appl/telnet/telnetd/configure.in +++ b/src/appl/telnet/telnetd/configure.in @@ -45,7 +45,7 @@ case $krb5_cv_host in broken_streams=yes ;; esac -if test -z "$broken_streams" -a "$ac_cv_header_sys_stream" = yes; then +if test -z "$broken_streams" -a "$ac_cv_header_sys_stream_h" = yes; then AC_FUNC_CHECK(grantpt,AC_DEFINE(STREAMSPTY)) fi AC_MSG_CHECKING([if setpgrp takes two arguments]) -- 2.26.2