diff options
author | marcel <marcel@FreeBSD.org> | 1999-12-17 11:45:28 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-12-17 11:45:28 +0000 |
commit | 539b0dd3efc7c13e067c51b2f7399750af93d51e (patch) | |
tree | 1c3120665315dfb2e55e981125de3a0948896c40 /secure/libexec | |
parent | c6060d99d9edda8a95268d81060763c5cb686a70 (diff) | |
download | FreeBSD-src-539b0dd3efc7c13e067c51b2f7399750af93d51e.zip FreeBSD-src-539b0dd3efc7c13e067c51b2f7399750af93d51e.tar.gz |
Add libmd to DPADD and LDADD.
Diffstat (limited to 'secure/libexec')
-rw-r--r-- | secure/libexec/telnetd/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile index 230e4e7..d220f86 100644 --- a/secure/libexec/telnetd/Makefile +++ b/secure/libexec/telnetd/Makefile @@ -14,8 +14,9 @@ SRCS= global.c slc.c state.c sys_term.c telnetd.c \ termstat.c utility.c authenc.c DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} ${LIBDES} ${LIBMP} \ - ${LIBCRYPT} -LDADD= -lutil -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt -lmp + ${LIBCRYPT} ${LIBMD} +LDADD= -lutil -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt \ + -lmp -lmd .include <bsd.prog.mk> |