* login.c (main): if CDISCARD is missing, use CFLUSH instead
authorMark Eichin <eichin@mit.edu>
Thu, 27 Oct 1994 18:51:43 +0000 (18:51 +0000)
committerMark Eichin <eichin@mit.edu>
Thu, 27 Oct 1994 18:51:43 +0000 (18:51 +0000)
* configure.in: fix typo in "use streams interface" test (ttold.h
not ttyold.h)

appl/bsd now builds on solaris.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4591 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/bsd/ChangeLog
src/appl/bsd/configure.in
src/appl/bsd/login.c

index 0483348180f637812e0c57a98c1ed9f21e6179d4..752f8c4784b7a07f95b7843f4d9592185765d5a3 100644 (file)
@@ -1,3 +1,12 @@
+Thu Oct 27 14:50:40 1994  Mark Eichin  (eichin@cygnus.com)
+
+       * login.c (main): if CDISCARD is missing, use CFLUSH instead.
+
+Thu Oct 27 14:47:41 1994  Mark Eichin  (eichin@cygnus.com)
+
+       * configure.in: fix typo in "use streams interface" test (ttold.h
+       not ttyold.h)
+
 Thu Oct 27 14:31:17 1994  Mark Eichin  (eichin@cygnus.com)
 
        * configure.in: check for srand48, srand, and srandom.
index 88c19198b94e2dc94f56e01b8f7382c6356818a2..4d46dac8b193d13921ed2f8c6c3823dec954ccc7 100644 (file)
@@ -40,7 +40,7 @@ AC_DEFINE(POSIX_SIGNALS)))
 AC_HAVE_HEADERS(sys/filio.h sys/sockio.h unistd.h sys/label.h ttyent.h lastlog.h sys/select.h sys/ptyvar.h)
 AC_COMPILE_CHECK([use streams interface],
 [#include <sys/tty.h>
-#include <sys/ttyold.h>
+#include <sys/ttold.h>
 #include <sys/ptyvar.h>],
 [], AC_DEFINE(HAVE_STREAMS))
 AC_REPLACE_FUNCS(getdtablesize)
index e45db69d618b28ff6844228e706092ecd051edee..0d27eff44934e0ca60a04142fb0c40d7095e0c99 100644 (file)
@@ -437,6 +437,9 @@ main(argc, argv)
        tc.c_cc[VDISCRD] = CFLUSH;
 #endif
 #ifdef VDISCARD
+#ifndef CDISCARD
+#define CDISCARD CFLUSH
+#endif
         tc.c_cc[VDISCARD] = CDISCARD;
 #endif
 #ifdef VWERSE