blob: dfc515294a431209f33161bc0d65eff7213ef524 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.3 2003/11/12 03:39:42 jschauma Exp $
PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-ntlm/}
PKGREVISION= 1
COMMENT= Cyrus SASL NTLM authentication plugin
SASL_PLUGIN= YES
.include "../cyrus-sasl2/Makefile.common"
CONFIGURE_ARGS+= --enable-ntlm # NTLM
CONFIGURE_ARGS+= --with-openssl=${SSLBASE}
BUILD_DIRS= ${WRKSRC}/plugins
ALL_TARGET= libntlm.la
do-install:
cd ${WRKSRC}/plugins && \
${PKGSHLIBTOOL} --mode=install \
${INSTALL_PROGRAM} libntlm.la ${PLUGINDIR}
.include "../../security/openssl/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|