summaryrefslogtreecommitdiffstats
path: root/src/slave
diff options
context:
space:
mode:
Diffstat (limited to 'src/slave')
-rw-r--r--src/slave/ChangeLog9
-rw-r--r--src/slave/Makefile.in2
-rw-r--r--src/slave/configure.in1
-rw-r--r--src/slave/kpropd.c3
4 files changed, 11 insertions, 4 deletions
diff --git a/src/slave/ChangeLog b/src/slave/ChangeLog
index 79107f86c..ca86faf88 100644
--- a/src/slave/ChangeLog
+++ b/src/slave/ChangeLog
@@ -1,3 +1,12 @@
+1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * Makefile.in: Set the myfulldir and mydir variables (which are
+ relative to buildtop and thisconfigdir, respectively.)
+
+ * configure.in, kpropd.c: Removed useless test for KRB5_POSIX, and
+ removed unneeded #include of sgtty.h if POSIX_TERMIOS is
+ not defined.
+
1998-10-27 Marc Horowitz <marc@mit.edu>
* kpropd.c (authorized_principal): make the acl file contain
diff --git a/src/slave/Makefile.in b/src/slave/Makefile.in
index 8bce87732..927fb1e91 100644
--- a/src/slave/Makefile.in
+++ b/src/slave/Makefile.in
@@ -1,4 +1,6 @@
thisconfigdir=.
+myfulldir=slave
+mydir=.
BUILDTOP=$(REL)$(U)
CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE)
PROG_LIBPATH=-L$(TOPLIBD)
diff --git a/src/slave/configure.in b/src/slave/configure.in
index e65c8d725..cc0263a67 100644
--- a/src/slave/configure.in
+++ b/src/slave/configure.in
@@ -1,7 +1,6 @@
AC_INIT(kprop.c)
CONFIG_RULES
AC_PROG_INSTALL
-AC_HEADER_CHECK(termios.h,AC_FUNC_CHECK([tcsetattr],AC_DEFINE(POSIX_TERMIOS)))
AC_CHECK_LIB(util,main)
KRB5_BUILD_PROGRAM
V5_AC_OUTPUT_MAKEFILE
diff --git a/src/slave/kpropd.c b/src/slave/kpropd.c
index 70f07b369..c2556b6e9 100644
--- a/src/slave/kpropd.c
+++ b/src/slave/kpropd.c
@@ -61,9 +61,6 @@
#include <sys/file.h>
#include <signal.h>
#include <string.h>
-#ifndef POSIX_TERMIOS
-#include <sgtty.h>
-#endif
#include <fcntl.h>
#include <sys/types.h>
#include <sys/time.h>