Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/racoon Explicitly link liblber and libssl when ldap...



details:   https://anonhg.NetBSD.org/src/rev/1375ad4cc775
branches:  trunk
changeset: 946580:1375ad4cc775
user:      rin <rin%NetBSD.org@localhost>
date:      Wed Dec 02 02:21:43 2020 +0000

description:
Explicitly link liblber and libssl when ldap support is enabled.
Fix sun2, i.e., MKPIC=no build.

diffstat:

 usr.sbin/racoon/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r edff40e8c17c -r 1375ad4cc775 usr.sbin/racoon/Makefile
--- a/usr.sbin/racoon/Makefile  Tue Dec 01 22:16:36 2020 +0000
+++ b/usr.sbin/racoon/Makefile  Wed Dec 02 02:21:43 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.37 2020/12/01 10:10:57 bouyer Exp $
+# $NetBSD: Makefile,v 1.38 2020/12/02 02:21:43 rin Exp $
 
 WARNS?=        0       # XXX third-party program, many issues
 NOCLANGERROR=  # defined
@@ -60,8 +60,8 @@
 
 .if (${USE_LDAP} != "no")
 CPPFLAGS+=-DHAVE_LIBLDAP
-LDADD+=-lldap
-DPADD+= ${LIBLDAP}
+LDADD+=-lldap -llber -lssl
+DPADD+= ${LIBLDAP} ${LIBLBER} ${LIBSSL}
 .endif
 
 LDADD+= -lcrypto -lcrypt



Home | Main Index | Thread Index | Old Index