Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/external/bsd/openssh/bin/sshd Don't rely on the share...



details:   https://anonhg.NetBSD.org/src/rev/53ed095d5eb2
branches:  trunk
changeset: 759216:53ed095d5eb2
user:      he <he%NetBSD.org@localhost>
date:      Thu Dec 02 10:21:28 2010 +0000

description:
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.

diffstat:

 crypto/external/bsd/openssh/bin/sshd/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 8a076bb458a6 -r 53ed095d5eb2 crypto/external/bsd/openssh/bin/sshd/Makefile
--- a/crypto/external/bsd/openssh/bin/sshd/Makefile     Thu Dec 02 08:36:02 2010 +0000
+++ b/crypto/external/bsd/openssh/bin/sshd/Makefile     Thu Dec 02 10:21:28 2010 +0000
@@ -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>



Home | Main Index | Thread Index | Old Index