summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/appl/telnet/telnet/ChangeLog6
-rw-r--r--src/appl/telnet/telnet/commands.c3
-rw-r--r--src/appl/telnet/telnet/configure.in1
3 files changed, 10 insertions, 0 deletions
diff --git a/src/appl/telnet/telnet/ChangeLog b/src/appl/telnet/telnet/ChangeLog
index b7c7262c17..c9687c1675 100644
--- a/src/appl/telnet/telnet/ChangeLog
+++ b/src/appl/telnet/telnet/ChangeLog
@@ -1,3 +1,9 @@
+Tue Aug 16 18:00:48 1994 Mark Eichin (eichin@cygnus.com)
+
+ * configure.in: use AC_VFORK (runtime test -- consider just using
+ fork instead.)
+ * commands.c: check HAVE_VFORK_H.
+
Tue Aug 9 04:02:28 1994 Mark Eichin (eichin@tess-turbo)
* configure.in: test for -lsocket, -lnsl, POSIX_SIGNALS
diff --git a/src/appl/telnet/telnet/commands.c b/src/appl/telnet/telnet/commands.c
index f5fd98d572..3665f88790 100644
--- a/src/appl/telnet/telnet/commands.c
+++ b/src/appl/telnet/telnet/commands.c
@@ -61,6 +61,9 @@ static char sccsid[] = "@(#)commands.c 8.1 (Berkeley) 6/6/93";
#include <pwd.h>
#include <varargs.h>
#include <errno.h>
+#ifdef HAVE_VFORK_H
+#include <vfork.h>
+#endif
#include <arpa/telnet.h>
diff --git a/src/appl/telnet/telnet/configure.in b/src/appl/telnet/telnet/configure.in
index 7e4ca27b07..037ab6db19 100644
--- a/src/appl/telnet/telnet/configure.in
+++ b/src/appl/telnet/telnet/configure.in
@@ -6,6 +6,7 @@ ISODE_INCLUDE
CONFIG_RULES
AC_SET_BUILDTOP
AC_PROG_INSTALL
+AC_VFORK
KRB_INCLUDE
ISODE_INCLUDE
AC_HAVE_HEADERS(unistd.h)