diff options
author | markm <markm@FreeBSD.org> | 2000-02-24 18:59:34 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2000-02-24 18:59:34 +0000 |
commit | ef025b40abfbf8549aa93743f5197893d1fa8bb4 (patch) | |
tree | 4948b3b7ba051123b6a4dc394e76281aa3cf7657 /secure/libexec | |
parent | 1f38e33d22f859166f6995f4fa28d9574458e156 (diff) | |
download | FreeBSD-src-ef025b40abfbf8549aa93743f5197893d1fa8bb4.zip FreeBSD-src-ef025b40abfbf8549aa93743f5197893d1fa8bb4.tar.gz |
Build everything properly. This means:
o Don't b uild libdes.
o Crypto is now housed in libcrypto (with a compatability symlink to
libdes)
o RSA may depend on RSAREF at your locale.
o OpenSSH is now a part of the base system.
Diffstat (limited to 'secure/libexec')
-rw-r--r-- | secure/libexec/telnetd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile index e13f48d..53de979 100644 --- a/secure/libexec/telnetd/Makefile +++ b/secure/libexec/telnetd/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD$ # Do not define -DKLUDGELINEMODE, as it does not interact well with many # telnet implementations. @@ -13,9 +13,9 @@ CFLAGS+= -DLINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOLD_ENVIRON \ SRCS= global.c slc.c state.c sys_term.c telnetd.c \ termstat.c utility.c authenc.c -DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBDES} ${LIBMP} \ +DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBCRYPTO} ${LIBMP} \ ${LIBCRYPT} -LDADD= -lutil -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt -lmp +LDADD= -lutil -ltermcap -L${TELNETOBJDIR} -ltelnet -lcrypto -lcrypt -lmp .include <bsd.prog.mk> |