Fix static compilation.

This commit is contained in:
Ruslan Ermilov 2006-10-07 17:32:05 +00:00
parent 6d28d23bb9
commit 5b3dc7cf10
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163089

View File

@ -4,8 +4,8 @@ PROG= sftp
SRCS= sftp.c sftp-client.c sftp-common.c sftp-glob.c progressmeter.c
CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} ${LIBEDIT}
LDADD= -lssh -lcrypt -lcrypto -lz -ledit
DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} ${LIBEDIT} ${LIBNCURSES}
LDADD= -lssh -lcrypt -lcrypto -lz -ledit -lncurses
.include <bsd.prog.mk>