configure.in: Fix typo in test below; fixed name of the autoconf cache
authorTheodore Tso <tytso@mit.edu>
Thu, 15 Apr 1999 21:05:50 +0000 (21:05 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 15 Apr 1999 21:05:50 +0000 (21:05 +0000)
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
src/appl/telnet/telnetd/configure.in

index 11df0ee5e2c07773db0bfea4e9fb8fcf772585cd..afa44f2c7e88d7b0bcde5ec30907981b2b58e546 100644 (file)
@@ -1,8 +1,13 @@
+Thu Apr 15 17:02:49 1999  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * configure.in: Fix typo in test below; fixed name of the autoconf
+               cache variable which indicates if sys/streams.h exists.
+
 1999-04-13    <tytso@rsts-11.mit.edu>
 
        * 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  <tlyu@mit.edu>
 
index 99ae206eac9b079ec0e3c4c0231c7e92f4db450f..2b6a21829cdaa8e3eddf977fa49f821f847a1c2f 100644 (file)
@@ -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])