21aeb43676
OpenLDAP 2.4.50 Engineering Fixed client benign typos Fixed libldap type cast Fixed libldap retry loop in ldap_int_tls_connect Fixed libldap_r race on Windows mutex initialization Fixed liblunicode memory leak Fixed slapd benign typos Fixed slapd-mdb memory leak in dnSuperiorMatch Fixed slapo-pcache database initialization Fixed slapo-ppolicy callback Build Fix olcDatabaseDummy initialization for windows Fix detection for ws2tcpip.h for windows Fix back-mdb types for windows Contrib Update ldapc++ config.guess and config.sub to support newer architectures Added pw-argon2 module Documentation slapd-ldap(5) - Clarify idassert-authzfrom behavior slapd-meta(5) - Remove client-pr option slapdinex(8) - Fix truncate option information for back-mdb
34 lines
847 B
Makefile
34 lines
847 B
Makefile
# $NetBSD: Makefile,v 1.10 2020/04/29 07:31:52 adam Exp $
|
|
|
|
.include "../../databases/openldap/Makefile.version"
|
|
|
|
# get the version from libraries/liblmdb/lmdb.h
|
|
PKGNAME= lmdb-0.9.25
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Symas Lightning Memory-Mapped Database
|
|
|
|
USE_GCC_RUNTIME= yes
|
|
USE_TOOLS+= gmake
|
|
|
|
BUILD_DIRS= libraries/liblmdb
|
|
MAKE_FLAGS+= CC=${CC:Q}
|
|
MAKE_FLAGS+= XCFLAGS=${CFLAGS:Q}\ -D_SEM_SEMUN_UNDEFINED
|
|
INSTALL_MAKE_FLAGS+= prefix=${PREFIX}
|
|
|
|
INSTALLATION_DIRS+= bin
|
|
INSTALLATION_DIRS+= include
|
|
INSTALLATION_DIRS+= lib
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
|
|
|
TEST_TARGET= test
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} == "Darwin"
|
|
MAKE_FLAGS+= SOEXT=.dylib
|
|
MAKE_FLAGS+= SOLIBS=-install_name\ ${PREFIX}/lib/liblmdb.dylib
|
|
.endif
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|