mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-17 04:13:55 -05:00
| .. | ||
| dyngroup.c | ||
| Makefile.in | ||
| overlays.c | ||
| pcache.c | ||
| README | ||
| rwm.c | ||
| rwm.h | ||
| rwmconf.c | ||
| rwmdn.c | ||
| rwmmap.c | ||
# $OpenLDAP$ This directory is still a work in progress. As such, no explicit makefile is provided. The overlays are meant to be built as dynamically loaded modules. To build a particular overlay, use commands of this form: libtool --mode=compile cc -I../../../include -I.. -c dyngroup.c libtool --mode=link cc -rpath /module/executable/path \ -module -o dyngroup.la dyngroup.lo To use the dyngroup overlay on a backend, set slapd.conf as follows: moduleload /module/executable/path/dyngroup.la database bdb ... (BDB configuration) overlay dyngroup attrpair member memberurl Replace "/module/executable/path" with the full pathname of the directory where the module will be installed.