aboutsummaryrefslogtreecommitdiff
path: root/secure/lib
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2003-07-16 20:59:15 +0000
committerMark Murray <markm@FreeBSD.org>2003-07-16 20:59:15 +0000
commit4afa3718327563c785b2961410b6ea85d6ddf3ca (patch)
treed0941cea5c5d555255e1721af0d195e7b1148f6a /secure/lib
parent48719ca7c8b9bb38fd2816dc06af05479c4491e2 (diff)
Notes
Diffstat (limited to 'secure/lib')
-rw-r--r--secure/lib/Makefile3
-rw-r--r--secure/lib/libtelnet/Makefile29
2 files changed, 0 insertions, 32 deletions
diff --git a/secure/lib/Makefile b/secure/lib/Makefile
index 56b98e59e3a8..049fd398f31c 100644
--- a/secure/lib/Makefile
+++ b/secure/lib/Makefile
@@ -6,9 +6,6 @@ SUBDIR+=libcrypto libssl
.if !defined(NO_OPENSSH)
SUBDIR+=libssh
.endif
-.if defined(NO_KERBEROS)
-SUBDIR+=libtelnet
-.endif
.endif
.include <bsd.subdir.mk>
diff --git a/secure/lib/libtelnet/Makefile b/secure/lib/libtelnet/Makefile
deleted file mode 100644
index 67d5d474c65e..000000000000
--- a/secure/lib/libtelnet/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-# $FreeBSD$
-
-LIB= telnet
-INTERNALLIB= yes
-
-SRCS= genget.c getent.c misc.c encrypt.c auth.c enc_des.c sra.c pk.c
-
-WARNS?= 2
-CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DSRA \
- -I${TELNETDIR} -I${TELNETDIR}/libtelnet
-
-INCS= ${TELNETDIR}/arpa/telnet.h
-INCSDIR=${INCLUDEDIR}/arpa
-
-.include <bsd.lib.mk>
-
-.PATH: ${TELNETDIR}/libtelnet
-
-#
-# Remove obsolete shared libraries, if any. We don't bother moving them
-# to /usr/lib/compat, since they were only used by telnet, telnetd and
-# tn3270.
-#
-beforeinstall: __remove-stale-libs
-__remove-stale-libs: .PHONY
-.if exists(${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0)
- -chflags noschg ${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0
- rm -f ${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0
-.endif