blob: b5d3386e90ff5ff788c5c65dc5e4df1f0f9baa6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.1.1.1 2003/03/19 22:28:53 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 && \
${PKGLIBTOOL} --mode=install ${INSTALL_PROGRAM} libntlm.la ${PLUGINDIR}
.include "../../security/openssl/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|