blob: 0cfb2038bf85b26f106143d3a0940d63e83b6c65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.31 2020/08/12 08:31:13 adam Exp $
PKGNAME= ${DISTNAME:S/-/-client-/}
COMMENT= Lightweight Directory Access Protocol libraries and client programs
CONFLICTS+= openldap<2.3.23nb1
CONFIGURE_ARGS+= --disable-slapd
MAKE_DIRS= ${OPENLDAP_ETCDIR}
BUILD_DEFS+= OPENLDAP_ETCDIR
CNFS= ldap.conf
.include "options.mk"
.if ${OS_VARIANT} == "SCOOSR5"
# SCO OpenServer 5.0.7/3.2 has sockelen_t definition in pthread.h of GNU pth.
CONFIGURE_ENV+= ac_cv_type_socklen_t=yes
.endif
.include "../../databases/openldap/Makefile.common"
.include "../../mk/bsd.pkg.mk"
|