mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-27 03:20:22 +08:00
5fdba27288
The old monitoring stuff has been removed; the new backend is enabled by using --enable-monitor at configure time and requires database monitor in slapd.conf to be activated. At present it implements a subset of the old monitoring options, and it should be extendable to a number of different subsystems. The search operation has been implementd; it does not honor abandon or size/time limits, though. The compare and the abandon operations are planned. Copyright Pierangelo Masarati <ando@sys-net.it>; the code is provided AS IS with NO GUARANTEE. It can be used and distributed under the conditions stated by the OpenLDAP Public License.
40 lines
794 B
Makefile
40 lines
794 B
Makefile
# $OpenLDAP$
|
|
|
|
SRCS = init.c search.c compare.c abandon.c \
|
|
cache.c entry.c \
|
|
backend.c database.c thread.c conn.c rww.c \
|
|
dummy.c
|
|
OBJS = init.o search.o compare.o abandon.o \
|
|
cache.o entry.o \
|
|
backend.o database.o thread.o conn.o rww.o \
|
|
dummy.o
|
|
|
|
LDAP_INCDIR= ../../../include
|
|
LDAP_LIBDIR= ../../../libraries
|
|
|
|
BUILD_OPT = "--enable-monitor"
|
|
BUILD_MOD = @BUILD_MONITOR@
|
|
LINKAGE = @BUILD_MONITOR_DYNAMIC@
|
|
|
|
DYN_DEFS = -DLBER_DECL=dllimport -DLDAP_DECL=dllimport
|
|
|
|
# TODO
|
|
#NT_mod_DYN_MODDEFS =
|
|
#NT_mod_STAT_MODDEFS =
|
|
|
|
NT_yes_DYN_MODDEFS = $(DYN_DEFS)
|
|
NT_yes_STAT_MODDEFS =
|
|
|
|
MODDEFS = $(@PLAT@_@BUILD_MONITOR@_@LIB_LINKAGE@_MODDEFS)
|
|
|
|
LIBBASE = back_monitor
|
|
|
|
XINCPATH = -I.. -I$(srcdir)/..
|
|
XDEFS = $(MODULES_CPPFLAGS)
|
|
|
|
all-local-lib: ../.backend
|
|
|
|
../.backend: lib$(LIBBASE).a
|
|
@touch $@
|
|
|