aboutsummaryrefslogtreecommitdiff
path: root/secure
diff options
context:
space:
mode:
authorYoshinobu Inoue <shin@FreeBSD.org>2000-01-27 09:28:38 +0000
committerYoshinobu Inoue <shin@FreeBSD.org>2000-01-27 09:28:38 +0000
commit4dd8b5ab798f9e3b8b60f5fa2c9ffb19b3774021 (patch)
treee0caee013c23189a72cb874040a86616a5f64a03 /secure
parent404d72b9f6ab0c20ebd426ff73f13563352f0452 (diff)
downloadsrc-4dd8b5ab798f9e3b8b60f5fa2c9ffb19b3774021.tar.gz
src-4dd8b5ab798f9e3b8b60f5fa2c9ffb19b3774021.zip
Notes
Diffstat (limited to 'secure')
-rw-r--r--secure/libexec/telnetd/Makefile2
-rw-r--r--secure/usr.bin/telnet/Makefile3
2 files changed, 4 insertions, 1 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile
index 230e4e79bf53..e13f48dcad78 100644
--- a/secure/libexec/telnetd/Makefile
+++ b/secure/libexec/telnetd/Makefile
@@ -8,7 +8,7 @@ MAN8= telnetd.8
CFLAGS+= -DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOLD_ENVIRON \
-DENV_HACK -DAUTHENTICATION -DENCRYPTION \
- -I${TELNETDIR}
+ -I${TELNETDIR} -DINET6
SRCS= global.c slc.c state.c sys_term.c telnetd.c \
termstat.c utility.c authenc.c
diff --git a/secure/usr.bin/telnet/Makefile b/secure/usr.bin/telnet/Makefile
index b7683443d5a6..f0db4cb8cb28 100644
--- a/secure/usr.bin/telnet/Makefile
+++ b/secure/usr.bin/telnet/Makefile
@@ -4,12 +4,15 @@ PROG= telnet
CFLAGS+= -DKLUDGELINEMODE -DUSE_TERMIO -DENV_HACK -DSKEY \
-DENCRYPTION -DAUTHENTICATION -I${TELNETDIR}
+CFLAGS+= -DIPSEC -DINET6
SRCS= authenc.c commands.c main.c network.c ring.c sys_bsd.c \
telnet.c terminal.c tn3270.c utilities.c
DPADD= ${LIBTERMCAP} ${LIBTELNET} ${LIBDES} ${LIBCRYPT} ${LIBMP}
+DPADD+= ${LIBIPSEC}
LDADD= -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt -lmp
+LDADD+= -lipsec
.include <bsd.prog.mk>