aboutsummaryrefslogtreecommitdiff
path: root/secure/libexec/telnetd
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-07-24 21:47:30 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-07-24 21:47:30 +0000
commite74d115547aab01bef8f87ee383c8981557d0d31 (patch)
treecda1df536821c41e8836c1ca6233070668ae8a90 /secure/libexec/telnetd
parent3b901a0b79578cdaab32283795a33c0556e7406e (diff)
Since this stuff not works with eBones, ifdef kerberos stuff
with MAKE_KERBEROS to allow other things to live Reviewed by: Submitted by: Obtained from:
Notes
Notes: svn path=/head/; revision=9689
Diffstat (limited to 'secure/libexec/telnetd')
-rw-r--r--secure/libexec/telnetd/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile
index 79dbb7531ea8..e867c69bd7b3 100644
--- a/secure/libexec/telnetd/Makefile
+++ b/secure/libexec/telnetd/Makefile
@@ -1,5 +1,9 @@
# @(#)Makefile 8.2 (Berkeley) 12/15/93
+# This stuff need original libdes to run (new_rnd_key.c module),
+# current eBones/des lib don't have it
+# Kerberos4 stuff ifdefed by MAKE_KERBEROS (make.conf) because of it
+
PROG= telnetd
CFLAGS+=-DLINEMODE -DKLUDGELINEMODE -DUSE_TERMIO -DDIAGNOSTICS
CFLAGS+=-DOLD_ENVIRON -DENV_HACK
@@ -15,9 +19,11 @@ MAN8= telnetd.8
CFLAGS+=-DAUTHENTICATION -DENCRYPTION
+.ifdef MAKE_KERBEROS
.if exists(/usr/lib/libkrb.a)
LDADD+= -lkrb -ldes
.endif
+.endif
#endif /* ENCRYPTION */