diff options
author | ru <ru@FreeBSD.org> | 2006-10-07 17:32:05 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2006-10-07 17:32:05 +0000 |
commit | e35429e3f251f4daddebae116f10ffe4d872bb58 (patch) | |
tree | b9b23b7d883bf6621425d62cc75cb3c7b6c99aed /secure | |
parent | 47b4c7525818bc442818b051e61f563e99a96cbf (diff) | |
download | FreeBSD-src-e35429e3f251f4daddebae116f10ffe4d872bb58.zip FreeBSD-src-e35429e3f251f4daddebae116f10ffe4d872bb58.tar.gz |
Fix static compilation.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/usr.bin/sftp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/usr.bin/sftp/Makefile b/secure/usr.bin/sftp/Makefile index 9f37c10..29c4352 100644 --- a/secure/usr.bin/sftp/Makefile +++ b/secure/usr.bin/sftp/Makefile @@ -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> |