Module Name: src
Committed By: he
Date: Thu Dec 2 10:21:28 UTC 2010
Modified Files:
src/crypto/external/bsd/openssh/bin/sshd: Makefile
Log Message:
Don't rely on the shared library dependencies to pull in the ssl and lber
libraries, for the benefit of static linking and our sun2 port.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/crypto/external/bsd/openssh/bin/sshd/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/crypto/external/bsd/openssh/bin/sshd/Makefile
diff -u src/crypto/external/bsd/openssh/bin/sshd/Makefile:1.3 src/crypto/external/bsd/openssh/bin/sshd/Makefile:1.4
--- src/crypto/external/bsd/openssh/bin/sshd/Makefile:1.3 Mon Nov 22 22:19:54 2010
+++ src/crypto/external/bsd/openssh/bin/sshd/Makefile Thu Dec 2 10:21:28 2010
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2010/11/22 22:19:54 christos Exp $
+# $NetBSD: Makefile,v 1.4 2010/12/02 10:21:28 he Exp $
.include <bsd.own.mk>
@@ -58,8 +58,8 @@
.if (${USE_LDAP} != "no")
SRCS+= ldapauth.c
-LDADD+= -lldap
-DPADD+= ${LIBLDAP}
+LDADD+= -lldap -lssl -llber
+DPADD+= ${LIBLDAP} ${LIBSSL} ${LIBLBER}
.endif
.include <bsd.prog.mk>