diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-11-25 21:18:18 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-11-25 21:18:18 +0000 |
commit | ee5a34ecba51f02e3bf46b112e265abf976f39b6 (patch) | |
tree | 569e9832fa3d4775e3b8244ea1f09d4307418368 /secure/usr.bin/ssh-keyscan | |
parent | 8794b8a783923e2335c30f700e3a9db146c64ee6 (diff) | |
download | src-ee5a34ecba51f02e3bf46b112e265abf976f39b6.tar.gz src-ee5a34ecba51f02e3bf46b112e265abf976f39b6.zip |
Notes
Diffstat (limited to 'secure/usr.bin/ssh-keyscan')
-rw-r--r-- | secure/usr.bin/ssh-keyscan/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/secure/usr.bin/ssh-keyscan/Makefile b/secure/usr.bin/ssh-keyscan/Makefile index 44659187c0e7..b4f97a563641 100644 --- a/secure/usr.bin/ssh-keyscan/Makefile +++ b/secure/usr.bin/ssh-keyscan/Makefile @@ -6,9 +6,7 @@ PROG= ssh-keyscan SRCS= ssh-keyscan.c roaming_dummy.c CFLAGS+=-I${SSHDIR} -include ssh_namespace.h -DPADD= ${LIBSSH} -LDADD= ${LDSSH} -USEPRIVATELIB= ssh +LIBADD= ssh .if ${MK_LDNS} != "no" CFLAGS+= -DHAVE_LDNS=1 @@ -17,8 +15,7 @@ CFLAGS+= -DHAVE_LDNS=1 #USEPRIVATELIB+= ldns .endif -DPADD+= ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ} -LDADD+= -lcrypt -lcrypto -lz +LIBADD+= crypt crypto z .include <bsd.prog.mk> |