aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2001-05-09 14:30:49 +0000
committerBruce Evans <bde@FreeBSD.org>2001-05-09 14:30:49 +0000
commite2413c56ed10b06f4dab3137b65fe60d95cda45d (patch)
tree30c7f2237723934c7ad331afb6378d23b9a1f413 /secure/usr.bin
parentf61dcf52818d775e37af5f2056d1999279a99e6a (diff)
downloadsrc-e2413c56ed10b06f4dab3137b65fe60d95cda45d.tar.gz
src-e2413c56ed10b06f4dab3137b65fe60d95cda45d.zip
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.
Notes
Notes: svn path=/head/; revision=76408
Diffstat (limited to 'secure/usr.bin')
-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 e3a33d986be5..14e4e796afa0 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>