+Mon Jun 26 14:58:02 1995 Sam Hartman <hartmans@tardis.MIT.EDU>
+
+ * log.c: Use HAVE_TIME_H not NEED_TIME_H
+
+ * klog.c: Change NEED_TIME_H to HAVE_TIME_H
+
+ * configure.in: Check for sys/select.h. Also check for time.h.
+
+ * send_to_kdc.c: If sys/select.h exists, include it.
+
Fri Jun 23 18:15:07 1995 Tom Yu (tlyu@dragons-lair)
* configure.in: fix Sam's typo so libkrb4.a gets symlinked
CHECK_FCNTL
KRB5_POSIX_LOCKS
AC_HEADER_CHECK(unistd.h,AC_DEFINE(HAS_UNISTD_H))
+AC_CHECK_HEADERS(sys/select.h time.h)
dnl Could check for full stdc environment, but will only test
dnl for stdlib.h
AC_HEADER_CHECK(stdlib.h,AC_DEFINE(HAS_STDLIB_H))
*/
#include "mit-copyright.h"
-#ifdef NEED_TIME_H
+#ifdef HAVE_TIME_H
#include <time.h>
#endif
#ifndef VMS
#endif
#include "mit-copyright.h"
-#ifdef NEED_TIME_H
+#ifdef HAVE_TIME_H
#include <time.h>
#endif
#ifndef VMS
#include "prot.h"
#include <stdio.h>
#include <string.h>
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
#define S_AD_SZ sizeof(struct sockaddr_in)