blob: 36ff993e06a284a5d01b7963e42d25db50e5b3a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.2 2003/09/13 19:18:17 jlam Exp $
PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-ntlm/}
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"
|