diff options
author | peter <peter@FreeBSD.org> | 1999-12-18 16:42:33 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-12-18 16:42:33 +0000 |
commit | bf11704e75e0670d1380b777e7bcd6d5ddacab28 (patch) | |
tree | 6d118b54926e026d231ace10df83f01f214bee32 /secure | |
parent | d44e2d4226bf9eb5daa8609797680819058bc819 (diff) | |
download | FreeBSD-src-bf11704e75e0670d1380b777e7bcd6d5ddacab28.zip FreeBSD-src-bf11704e75e0670d1380b777e7bcd6d5ddacab28.tar.gz |
Revert -lmd changes now that libcrypt doesn't expose this binutils/ld
bug any more.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/libexec/telnetd/Makefile | 5 | ||||
-rw-r--r-- | secure/usr.bin/telnet/Makefile | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/secure/libexec/telnetd/Makefile b/secure/libexec/telnetd/Makefile index d220f86..230e4e7 100644 --- a/secure/libexec/telnetd/Makefile +++ b/secure/libexec/telnetd/Makefile @@ -14,9 +14,8 @@ 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} ${LIBMD} -LDADD= -lutil -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt \ - -lmp -lmd + ${LIBCRYPT} +LDADD= -lutil -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt -lmp .include <bsd.prog.mk> diff --git a/secure/usr.bin/telnet/Makefile b/secure/usr.bin/telnet/Makefile index 2cc1dae..b768344 100644 --- a/secure/usr.bin/telnet/Makefile +++ b/secure/usr.bin/telnet/Makefile @@ -8,8 +8,8 @@ CFLAGS+= -DKLUDGELINEMODE -DUSE_TERMIO -DENV_HACK -DSKEY \ 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} ${LIBMD} -LDADD= -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt -lmp -lmd +DPADD= ${LIBTERMCAP} ${LIBTELNET} ${LIBDES} ${LIBCRYPT} ${LIBMP} +LDADD= -ltermcap -L${TELNETOBJDIR} -ltelnet -ldes -lcrypt -lmp .include <bsd.prog.mk> |