Thu Dec 20 17:54:09 2018 UTC ()
openldap: updated to 2.4.47

OpenLDAP 2.4.47:
Added slapd-sock DN qualifier for subtrees to be processed
Added slapd-sock ability to send extended operations to external listeners
Fixed liblber to avoid incremental access to user-supplied bv in dupbv
Fixed libldap dn to domain parsing with bad input
Fixed slapd slapcat to correctly honor -g option
Fixed slapd to correctly handle NO_SUCH_OBJECT with dynamic groups
Fixed slapd to check status of rdnNormalize
Fixed slapd cn=config when modifying slapo-syncprov config
Fixed slapd sasl authz-policy "all" behavior
Fixed slapd sasl minor typo
Fixed slapd to correctly hide hidden DBs in the rootDSE
Fixed slapd domainScope control to match Microsoft specification
Fixed slapd-bdb/hdb/mdb to not convert certain IDLs to ranges
Fixed slapo-accesslog deadlock during cleanup
Fixed slapo-memberof cn=config modifications
Fixed slapo-ppolicy with multimaster replication
Fixed slapo-syncprov with NULL modlist
Build Environment
	Added slapd reproducible build support
	Fixed missing includes with OpenSSL 1.0.2
Contrib
	Fixed slapo-pbkdf2 hash generation
Documentation
	admin24 fixed minor typo


(adam)
diff -r1.148 -r1.149 pkgsrc/databases/openldap/Makefile
diff -r1.41 -r1.42 pkgsrc/databases/openldap/Makefile.common
diff -r1.15 -r1.16 pkgsrc/databases/openldap/Makefile.version
diff -r1.111 -r1.112 pkgsrc/databases/openldap/distinfo
diff -r1.1 -r1.2 pkgsrc/databases/openldap-client/builtin.mk
diff -r1.28 -r1.29 pkgsrc/databases/openldap-doc/Makefile
diff -r1.18 -r1.19 pkgsrc/databases/openldap-doc/distinfo
diff -r1.19 -r1.20 pkgsrc/databases/openldap-server/options.mk

cvs diff -r1.148 -r1.149 pkgsrc/databases/openldap/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/openldap/Makefile 2018/04/02 13:40:44 1.148
+++ pkgsrc/databases/openldap/Makefile 2018/12/20 17:54:09 1.149
@@ -1,21 +1,19 @@ @@ -1,21 +1,19 @@
1# $NetBSD: Makefile,v 1.148 2018/04/02 13:40:44 adam Exp $ 1# $NetBSD: Makefile,v 1.149 2018/12/20 17:54:09 adam Exp $
2 2
3.include "../../databases/openldap/Makefile.version" 3.include "../../databases/openldap/Makefile.version"
4 4
5DISTNAME= openldap-${OPENLDAP_VERSION} 5DISTNAME= openldap-${OPENLDAP_VERSION}
6CATEGORIES= databases 6CATEGORIES= databases
7MASTER_SITES= # empty 
8DISTFILES= # empty 
9 7
10MAINTAINER= adam@NetBSD.org 8MAINTAINER= adam@NetBSD.org
11HOMEPAGE= http://www.openldap.org/ 9HOMEPAGE= http://www.openldap.org/
12COMMENT= Lightweight Directory Access Protocol meta-package 10COMMENT= Lightweight Directory Access Protocol meta-package
13LICENSE= modified-bsd 11LICENSE= modified-bsd
14 12
15META_PACKAGE= yes 13META_PACKAGE= yes
16 14
17DEPENDS+= openldap-client>=${PKGVERSION_NOREV}:../../databases/openldap-client 15DEPENDS+= openldap-client>=${PKGVERSION_NOREV}:../../databases/openldap-client
18DEPENDS+= openldap-server>=${PKGVERSION_NOREV}:../../databases/openldap-server 16DEPENDS+= openldap-server>=${PKGVERSION_NOREV}:../../databases/openldap-server
19DEPENDS+= openldap-doc>=${PKGVERSION_NOREV}:../../databases/openldap-doc 17DEPENDS+= openldap-doc>=${PKGVERSION_NOREV}:../../databases/openldap-doc
20 18
21.include "../../mk/bsd.pkg.mk" 19.include "../../mk/bsd.pkg.mk"

cvs diff -r1.41 -r1.42 pkgsrc/databases/openldap/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/openldap/Makefile.common 2018/07/04 13:40:12 1.41
+++ pkgsrc/databases/openldap/Makefile.common 2018/12/20 17:54:09 1.42
@@ -1,38 +1,26 @@ @@ -1,38 +1,26 @@
1# $NetBSD: Makefile.common,v 1.41 2018/07/04 13:40:12 jperkin Exp $ 1# $NetBSD: Makefile.common,v 1.42 2018/12/20 17:54:09 adam Exp $
2# 2#
3# used by databases/openldap-client/Makefile 3# used by databases/openldap-client/Makefile
4# used by databases/openldap-cloak/Makefile 4# used by databases/openldap-cloak/Makefile
5# used by databases/openldap-nops/Makefile 5# used by databases/openldap-nops/Makefile
6# used by databases/openldap-server/Makefile 6# used by databases/openldap-server/Makefile
7# used by databases/openldap-smbk5pwd/Makefile 7# used by databases/openldap-smbk5pwd/Makefile
8 8
9.include "../../databases/openldap/Makefile.version" 9.include "../../databases/openldap/Makefile.version"
10 10
11DISTNAME= openldap-${OPENLDAP_VERSION} 
12CATEGORIES= databases 11CATEGORIES= databases
13MASTER_SITES= ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/ 
14MASTER_SITES+= http://www.openldap.org/software/download/OpenLDAP/openldap-release/ 
15MASTER_SITES+= ftp://ftp.ntua.gr/mirror/OpenLDAP/openldap-release/ 
16MASTER_SITES+= ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/openldap-release/ 
17MASTER_SITES+= ftp://ftp.u-aizu.ac.jp/pub/net/openldap/openldap-release/ 
18MASTER_SITES+= ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/ 
19MASTER_SITES+= ftp://ftp.linux.pt/pub/mirrors/OpenLDAP/openldap-release/ 
20MASTER_SITES+= ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/openldap-release/ 
21EXTRACT_SUFX= .tgz 
22 12
23MAINTAINER= adam@NetBSD.org 13MAINTAINER= adam@NetBSD.org
24HOMEPAGE= http://www.openldap.org/ 
25LICENSE= modified-bsd 
26 14
27CONFLICTS+= ldapsdk-[0-9]* 15CONFLICTS+= ldapsdk-[0-9]*
28 16
29DISTINFO_FILE= ${.CURDIR}/../../databases/openldap/distinfo 17DISTINFO_FILE= ${.CURDIR}/../../databases/openldap/distinfo
30PATCHDIR= ${.CURDIR}/../../databases/openldap/patches 18PATCHDIR= ${.CURDIR}/../../databases/openldap/patches
31 19
32USE_LIBTOOL= yes 20USE_LIBTOOL= yes
33USE_TOOLS+= soelim 21USE_TOOLS+= soelim
34GNU_CONFIGURE= yes 22GNU_CONFIGURE= yes
35 23
36MAKE_ENV+= LIBMODE=${LIBMODE} 24MAKE_ENV+= LIBMODE=${LIBMODE}
37 25
38.include "../../mk/bsd.prefs.mk" 26.include "../../mk/bsd.prefs.mk"

cvs diff -r1.15 -r1.16 pkgsrc/databases/openldap/Makefile.version (expand / switch to unified diff)

--- pkgsrc/databases/openldap/Makefile.version 2018/04/02 13:40:44 1.15
+++ pkgsrc/databases/openldap/Makefile.version 2018/12/20 17:54:09 1.16
@@ -1,6 +1,21 @@ @@ -1,6 +1,21 @@
1# $NetBSD: Makefile.version,v 1.15 2018/04/02 13:40:44 adam Exp $ 1# $NetBSD: Makefile.version,v 1.16 2018/12/20 17:54:09 adam Exp $
 2# used by databases/lmdb/Makefile
2# used by databases/openldap/Makefile 3# used by databases/openldap/Makefile
3# used by databases/openldap/Makefile.common 4# used by databases/openldap/Makefile.common
4# used by databases/openldap-docs/Makefile 5# used by databases/openldap-docs/Makefile
5 6
6OPENLDAP_VERSION= 2.4.46 7OPENLDAP_VERSION= 2.4.47
 8
 9DISTNAME= openldap-${OPENLDAP_VERSION}
 10MASTER_SITES= ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/
 11MASTER_SITES+= http://www.openldap.org/software/download/OpenLDAP/openldap-release/
 12MASTER_SITES+= ftp://ftp.ntua.gr/mirror/OpenLDAP/openldap-release/
 13MASTER_SITES+= ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/openldap-release/
 14MASTER_SITES+= ftp://ftp.u-aizu.ac.jp/pub/net/openldap/openldap-release/
 15MASTER_SITES+= ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/
 16MASTER_SITES+= ftp://ftp.linux.pt/pub/mirrors/OpenLDAP/openldap-release/
 17MASTER_SITES+= ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/openldap-release/
 18EXTRACT_SUFX= .tgz
 19
 20HOMEPAGE= http://www.openldap.org/
 21LICENSE= modified-bsd

cvs diff -r1.111 -r1.112 pkgsrc/databases/openldap/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/openldap/distinfo 2018/07/31 12:39:52 1.111
+++ pkgsrc/databases/openldap/distinfo 2018/12/20 17:54:09 1.112
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.111 2018/07/31 12:39:52 manu Exp $ 1$NetBSD: distinfo,v 1.112 2018/12/20 17:54:09 adam Exp $
2 2
3SHA1 (openldap-2.4.46.tgz) = a9ae2273eb9bdd70090dafe0d018a3132606bef6 3SHA1 (openldap-2.4.47.tgz) = c59d52dd75f7d1c7b02f83725da36c322d439674
4RMD160 (openldap-2.4.46.tgz) = d7038355b1c13a0b2d5104a0c75735b63e9c4148 4RMD160 (openldap-2.4.47.tgz) = c228e5d55019c90aaeceeda32980e52cd7a0a4a6
5SHA512 (openldap-2.4.46.tgz) = eef39d43f04aa09c657a1422cefef060fe00368559ae40d0d97536c08ebeaaa1ab06207b3f121ba6afcde54abdc550027c3505e5217e5fd47ae6f8c001260186 5SHA512 (openldap-2.4.47.tgz) = d424079e34207e3d24383a2bea70a07ded40714982a6767174d2b2cb208cd94feab5ef12157accae915b8e404e5773a7547aaef65f06b44dc3cc09c6a64d5a11
6Size (openldap-2.4.46.tgz) = 5700204 bytes 6Size (openldap-2.4.47.tgz) = 5699678 bytes
7SHA1 (patch-ac) = 2995c518278b363bf9657e181c2340d3024d5980 7SHA1 (patch-ac) = 2995c518278b363bf9657e181c2340d3024d5980
8SHA1 (patch-ad) = 24e7ec27d592dd76bdec1e4805801c5304951daf 8SHA1 (patch-ad) = 24e7ec27d592dd76bdec1e4805801c5304951daf
9SHA1 (patch-af) = 2e00b01bd813e73bdc1fb764a02e98d7755703de 9SHA1 (patch-af) = 2e00b01bd813e73bdc1fb764a02e98d7755703de
10SHA1 (patch-ag) = 380336d8b50dd6b3a277f2ea6a03eb88cc5919b8 10SHA1 (patch-ag) = 380336d8b50dd6b3a277f2ea6a03eb88cc5919b8
11SHA1 (patch-ah) = 7b5a9d042df36f17bcb503372e301a0c6554af68 11SHA1 (patch-ah) = 7b5a9d042df36f17bcb503372e301a0c6554af68
12SHA1 (patch-aj) = 857bbf14855d7d2a2911457bc6373d8beb69b751 12SHA1 (patch-aj) = 857bbf14855d7d2a2911457bc6373d8beb69b751
13SHA1 (patch-am) = fb8f3e7699f8b2ef55c066cdc6216522c101c7f3 13SHA1 (patch-am) = fb8f3e7699f8b2ef55c066cdc6216522c101c7f3
14SHA1 (patch-an) = 3e904d05a3e69930259329ca821d3bbf7dd54eb2 14SHA1 (patch-an) = 3e904d05a3e69930259329ca821d3bbf7dd54eb2
15SHA1 (patch-ao) = 4fcbbfd4d6be792392e3646123022aeaf25923e3 15SHA1 (patch-ao) = 4fcbbfd4d6be792392e3646123022aeaf25923e3
16SHA1 (patch-contrib_slapd-modules_cloak_Makefile) = 47c81def0c013a360acb549ed69e9042f0bc1be3 16SHA1 (patch-contrib_slapd-modules_cloak_Makefile) = 47c81def0c013a360acb549ed69e9042f0bc1be3
17SHA1 (patch-contrib_slapd-modules_nops_Makefile) = c51bccf34c3f3112232a134038622d31b6315628 17SHA1 (patch-contrib_slapd-modules_nops_Makefile) = c51bccf34c3f3112232a134038622d31b6315628
18SHA1 (patch-contrib_slapd-modules_nops_slapo-nops.5) = f32352f19361b7e9aa5b038ae8578def7c08fa47 18SHA1 (patch-contrib_slapd-modules_nops_slapo-nops.5) = f32352f19361b7e9aa5b038ae8578def7c08fa47
19SHA1 (patch-da) = 75e26bd08c6e66b69192ebfbb36db974d391ec3e 19SHA1 (patch-da) = 75e26bd08c6e66b69192ebfbb36db974d391ec3e

cvs diff -r1.1 -r1.2 pkgsrc/databases/openldap-client/builtin.mk (expand / switch to unified diff)

--- pkgsrc/databases/openldap-client/builtin.mk 2008/10/12 20:49:19 1.1
+++ pkgsrc/databases/openldap-client/builtin.mk 2018/12/20 17:54:09 1.2
@@ -1,15 +1,15 @@ @@ -1,15 +1,15 @@
1# $NetBSD: builtin.mk,v 1.1 2008/10/12 20:49:19 ahoka Exp $ 1# $NetBSD: builtin.mk,v 1.2 2018/12/20 17:54:09 adam Exp $
2 2
3BUILTIN_PKG:= openldap-client 3BUILTIN_PKG:= openldap-client
4 4
5PKGCONFIG_FILE.openldap-client= /usr/include/ldap_features.h 5PKGCONFIG_FILE.openldap-client= /usr/include/ldap_features.h
6PKGCONFIG_BASE.openldap-client= /usr 6PKGCONFIG_BASE.openldap-client= /usr
7 7
8BUILTIN_VERSION_SCRIPT.openldap-client= ${AWK} \ 8BUILTIN_VERSION_SCRIPT.openldap-client= ${AWK} \
9 '/\#define[ \t]*_?LDAP_VENDOR_VERSION_MAJOR[ \t]/ { major = $$3; } \ 9 '/\#define[ \t]*_?LDAP_VENDOR_VERSION_MAJOR[ \t]/ { major = $$3; } \
10 /\#define[ \t]*_?LDAP_VENDOR_VERSION_MINOR[ \t]/ { minor = $$3; } \ 10 /\#define[ \t]*_?LDAP_VENDOR_VERSION_MINOR[ \t]/ { minor = $$3; } \
11 /\#define[ \t]*_?LDAP_VENDOR_VERSION_PATCH[ \t]/ { patch = $$3; } \ 11 /\#define[ \t]*_?LDAP_VENDOR_VERSION_PATCH[ \t]/ { patch = $$3; } \
12 END { if (major && minor && patch) print major "." minor "." patch; \ 12 END { if (major && minor && patch) print major "." minor "." patch; \
13 else print ""; }' 13 else print ""; }'
14 14
15.include "../../mk/buildlink3/pkgconfig-builtin.mk" 15.include "../../mk/buildlink3/pkgconfig-builtin.mk"

cvs diff -r1.28 -r1.29 pkgsrc/databases/openldap-doc/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/openldap-doc/Makefile 2018/04/21 13:38:04 1.28
+++ pkgsrc/databases/openldap-doc/Makefile 2018/12/20 17:54:09 1.29
@@ -1,34 +1,22 @@ @@ -1,34 +1,22 @@
1# $NetBSD: Makefile,v 1.28 2018/04/21 13:38:04 wiz Exp $ 1# $NetBSD: Makefile,v 1.29 2018/12/20 17:54:09 adam Exp $
2 2
3.include "../../databases/openldap/Makefile.version" 3.include "../../databases/openldap/Makefile.version"
4 4
5DISTNAME= openldap-${OPENLDAP_VERSION} 
6PKGNAME= ${DISTNAME:S/-/-doc-/} 5PKGNAME= ${DISTNAME:S/-/-doc-/}
7CATEGORIES= databases 6CATEGORIES= databases
8MASTER_SITES= ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/ 
9MASTER_SITES+= http://ftp.openldap.org/pub/OpenLDAP/openldap-release/ 
10MASTER_SITES+= ftp://ftp.ntua.gr/mirror/OpenLDAP/openldap-release/ 
11MASTER_SITES+= ftp://ftp.dti.ad.jp/pub/net/OpenLDAP/openldap-release/ 
12MASTER_SITES+= ftp://ftp.u-aizu.ac.jp/pub/net/openldap/openldap-release/ 
13MASTER_SITES+= ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/ 
14MASTER_SITES+= ftp://ftp.linux.pt/pub/mirrors/OpenLDAP/openldap-release/ 
15MASTER_SITES+= ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/openldap-release/ 
16EXTRACT_SUFX= .tgz 
17 7
18MAINTAINER= adam@NetBSD.org 8MAINTAINER= adam@NetBSD.org
19HOMEPAGE= http://www.openldap.org/ 
20COMMENT= Lightweight Directory Access Protocol documentation 9COMMENT= Lightweight Directory Access Protocol documentation
21LICENSE= modified-bsd 
22 10
23NO_CONFIGURE= yes 11NO_CONFIGURE= yes
24NO_BUILD= yes 12NO_BUILD= yes
25 13
26DOCDIR= ${PREFIX}/share/doc/openldap 14DOCDIR= ${PREFIX}/share/doc/openldap
27 15
28do-install: 16do-install:
29 ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR} 17 ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
30 ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}/admin 18 ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}/admin
31 ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}/images 19 ${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}/images
32 ${INSTALL_DATA} ${WRKSRC}/doc/guide/admin/guide.html ${DESTDIR}${DOCDIR}/admin/ 20 ${INSTALL_DATA} ${WRKSRC}/doc/guide/admin/guide.html ${DESTDIR}${DOCDIR}/admin/
33 ${INSTALL_DATA} ${WRKSRC}/doc/guide/admin/*.png ${DESTDIR}${DOCDIR}/admin/ 21 ${INSTALL_DATA} ${WRKSRC}/doc/guide/admin/*.png ${DESTDIR}${DOCDIR}/admin/
34 ${INSTALL_DATA} ${WRKSRC}/doc/guide/images/*.gif ${DESTDIR}${DOCDIR}/images/ 22 ${INSTALL_DATA} ${WRKSRC}/doc/guide/images/*.gif ${DESTDIR}${DOCDIR}/images/

cvs diff -r1.18 -r1.19 pkgsrc/databases/openldap-doc/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/openldap-doc/distinfo 2018/04/02 13:40:45 1.18
+++ pkgsrc/databases/openldap-doc/distinfo 2018/12/20 17:54:09 1.19
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.18 2018/04/02 13:40:45 adam Exp $ 1$NetBSD: distinfo,v 1.19 2018/12/20 17:54:09 adam Exp $
2 2
3SHA1 (openldap-2.4.46.tgz) = a9ae2273eb9bdd70090dafe0d018a3132606bef6 3SHA1 (openldap-2.4.47.tgz) = c59d52dd75f7d1c7b02f83725da36c322d439674
4RMD160 (openldap-2.4.46.tgz) = d7038355b1c13a0b2d5104a0c75735b63e9c4148 4RMD160 (openldap-2.4.47.tgz) = c228e5d55019c90aaeceeda32980e52cd7a0a4a6
5SHA512 (openldap-2.4.46.tgz) = eef39d43f04aa09c657a1422cefef060fe00368559ae40d0d97536c08ebeaaa1ab06207b3f121ba6afcde54abdc550027c3505e5217e5fd47ae6f8c001260186 5SHA512 (openldap-2.4.47.tgz) = d424079e34207e3d24383a2bea70a07ded40714982a6767174d2b2cb208cd94feab5ef12157accae915b8e404e5773a7547aaef65f06b44dc3cc09c6a64d5a11
6Size (openldap-2.4.46.tgz) = 5700204 bytes 6Size (openldap-2.4.47.tgz) = 5699678 bytes

cvs diff -r1.19 -r1.20 pkgsrc/databases/openldap-server/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/openldap-server/options.mk 2015/09/07 12:02:06 1.19
+++ pkgsrc/databases/openldap-server/options.mk 2018/12/20 17:54:09 1.20
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: options.mk,v 1.19 2015/09/07 12:02:06 jperkin Exp $ 1# $NetBSD: options.mk,v 1.20 2018/12/20 17:54:09 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.openldap-server 3PKG_OPTIONS_VAR= PKG_OPTIONS.openldap-server
4PKG_SUPPORTED_OPTIONS= bdb dso inet6 sasl slapi slp smbk5pwd 4PKG_SUPPORTED_OPTIONS= bdb dso inet6 sasl slapi slp smbk5pwd
5PKG_OPTIONS_OPTIONAL_GROUPS+= odbc 5PKG_OPTIONS_OPTIONAL_GROUPS+= odbc
6PKG_OPTIONS_GROUP.odbc= iodbc unixodbc 6PKG_OPTIONS_GROUP.odbc= iodbc unixodbc
7PKG_SUGGESTED_OPTIONS= bdb inet6 7PKG_SUGGESTED_OPTIONS= bdb inet6
8 8
9.include "../../mk/bsd.options.mk" 9.include "../../mk/bsd.options.mk"
10 10
11PLIST_VARS+= slapi 11PLIST_VARS+= slapi
12 12
13### 13###
14### Whether to build with the Berkeley DB based slapd backends. 14### Whether to build with the Berkeley DB based slapd backends.
@@ -84,20 +84,20 @@ PKG_FAIL_REASON+= "smbk5pwd option to op @@ -84,20 +84,20 @@ PKG_FAIL_REASON+= "smbk5pwd option to op
84.endif 84.endif
85 85
86### 86###
87### Enable dynamic module support 87### Enable dynamic module support
88### 88###
89.if !empty(PKG_OPTIONS:Mdso) 89.if !empty(PKG_OPTIONS:Mdso)
90CONFIGURE_ARGS+= --enable-modules 90CONFIGURE_ARGS+= --enable-modules
91.include "../../devel/libltdl/buildlink3.mk" 91.include "../../devel/libltdl/buildlink3.mk"
92.endif 92.endif
93 93
94### 94###
95### Enable SLAPI support 95### Enable SLAPI support
96### 96###
97.if empty(PKG_OPTIONS:Mslapi) 97.if !empty(PKG_OPTIONS:Mslapi)
98CONFIGURE_ARGS+= --disable-slapi 
99.else 
100CONFIGURE_ARGS+= --enable-slapi 98CONFIGURE_ARGS+= --enable-slapi
101PLIST.slapi= yes 99PLIST.slapi= yes
102.include "../../devel/libltdl/buildlink3.mk" 100.include "../../devel/libltdl/buildlink3.mk"
 101.else
 102CONFIGURE_ARGS+= --disable-slapi
103.endif 103.endif