aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/ssh-agent
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>2001-05-04 04:21:25 +0000
committerBrian Feldman <green@FreeBSD.org>2001-05-04 04:21:25 +0000
commitd350064e0b3a02d36db2e9d93fdbb907c30474d4 (patch)
treeed4da512f24099412a538fcecc07aff5b9db6847 /secure/usr.bin/ssh-agent
parent345012bf8b2731a96a9deca8ee4361016b225001 (diff)
downloadsrc-d350064e0b3a02d36db2e9d93fdbb907c30474d4.tar.gz
src-d350064e0b3a02d36db2e9d93fdbb907c30474d4.zip
Follow the OpenSSH 2.9 upgrade with the infrastructure. Two new
programs are now included: sftp(1) and ssh-keyscan(1).
Notes
Notes: svn path=/head/; revision=76264
Diffstat (limited to 'secure/usr.bin/ssh-agent')
-rw-r--r--secure/usr.bin/ssh-agent/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/secure/usr.bin/ssh-agent/Makefile b/secure/usr.bin/ssh-agent/Makefile
index bf9cfd612e6c..f00acd0560f0 100644
--- a/secure/usr.bin/ssh-agent/Makefile
+++ b/secure/usr.bin/ssh-agent/Makefile
@@ -2,10 +2,10 @@
#
PROG= ssh-agent
-SRCS= ssh-agent.c log-client.c
+SRCS= ssh-agent.c
-LDADD+= ${LIBSSH} -lcrypto -lcrypt -lutil -lz
-DPADD+= ${LIBSSH} ${LIBCRYPTO} ${LIBCRYPT} ${LIBUTIL} ${LIBZ}
+LDADD+= ${LIBSSH} -lcrypto
+DPADD+= ${LIBSSH} ${LIBCRYPTO}
.include <bsd.prog.mk>