summaryrefslogtreecommitdiffstats
path: root/secure/usr.bin/telnet
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2001-05-09 14:30:49 +0000
committerbde <bde@FreeBSD.org>2001-05-09 14:30:49 +0000
commita968ca96b61c019a71445292f287bfb6efafc46f (patch)
tree0b5c2e17d36085099adfee1e9239fa5b406f4cea /secure/usr.bin/telnet
parent5e17943e7b99d0ea41901dc2f0c509cfff89976a (diff)
downloadFreeBSD-src-a968ca96b61c019a71445292f287bfb6efafc46f.zip
FreeBSD-src-a968ca96b61c019a71445292f287bfb6efafc46f.tar.gz
Fixed world breakage in previous commit. -lpam must never be used
directly (except in the definition of MINUSLPAM in bsd.libnames.mk) since it doesn't give all the libraries necessary for static linkage. Fixed missing ${LIBPAM} in DPADD. Fixed some style bugs in DPADD and LDADD.
Diffstat (limited to 'secure/usr.bin/telnet')
-rw-r--r--secure/usr.bin/telnet/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/secure/usr.bin/telnet/Makefile b/secure/usr.bin/telnet/Makefile
index e3a33d9..14e4e79 100644
--- a/secure/usr.bin/telnet/Makefile
+++ b/secure/usr.bin/telnet/Makefile
@@ -9,10 +9,10 @@ CFLAGS+= -DIPSEC -DINET6
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} ${LIBCRYPTO} ${LIBCRYPT} ${LIBMP}
-DPADD+= ${LIBIPSEC}
-LDADD= -ltermcap ${LIBTELNET} -lcrypto -lcrypt -lmp
-LDADD+= -lipsec -lpam
+DPADD= ${LIBTERMCAP} ${LIBTELNET} ${LIBCRYPTO} ${LIBCRYPT} ${LIBMP} \
+ ${LIBIPSEC} ${LIBPAM}
+LDADD= -ltermcap ${LIBTELNET} -lcrypto -lcrypt -lmp \
+ -lipsec ${MINUSLPAM}
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud