mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix libssh dependency.
This commit is contained in:
parent
e8fd88a37b
commit
e4c2fedcc7
1 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
SSHSRC= ${.CURDIR}/../../../../crypto/openssh
|
||||
LIBSSH= ${.OBJDIR}/../../../../secure/lib/libssh/libssh.a
|
||||
|
||||
LIB= pam_ssh
|
||||
MAN= pam_ssh.8
|
||||
|
|
@ -11,6 +12,6 @@ WARNS?= 0
|
|||
CFLAGS+= -I${SSHSRC}
|
||||
|
||||
DPADD= ${LIBSSH} ${LIBCRYPTO} ${LIBCRYPT}
|
||||
LDADD= -lssh -lcrypto -lcrypt
|
||||
LDADD= ${LIBSSH} -lcrypto -lcrypt
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue