]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/overlays/Makefile.in
Plug memleak when query isn't added to cache
[openldap] / servers / slapd / overlays / Makefile.in
index 86c8f043ca38fcf3f5e5b12184006e82a37682e0..068b65fc05a48b0d3f84a7e0bc24f4b87d42f20e 100644 (file)
@@ -2,7 +2,7 @@
 # $OpenLDAP$
 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
 ##
-## Copyright 2003-2005 The OpenLDAP Foundation.
+## Copyright 2003-2006 The OpenLDAP Foundation.
 ## All rights reserved.
 ##
 ## Redistribution and use in source and binary forms, with or without
@@ -15,6 +15,7 @@
 
 SRCS = overlays.c \
        accesslog.c \
+       dds.c \
        denyop.c \
        dyngroup.c \
        dynlist.c \
@@ -29,6 +30,7 @@ SRCS = overlays.c \
        unique.c \
        valsort.c
 OBJS = overlays.o \
+       statover.o \
        @SLAPD_STATIC_OVERLAYS@
 
 # Add here the objs that are needed by overlays, but do not make it
@@ -58,6 +60,9 @@ dynamic: $(PROGRAMS)
 accesslog.la : accesslog.lo
        $(LTLINK_MOD) -module -o $@ accesslog.lo version.lo $(LINK_LIBS)
 
+dds.la : dds.lo
+       $(LTLINK_MOD) -module -o $@ dds.lo version.lo $(LINK_LIBS)
+
 denyop.la : denyop.lo
        $(LTLINK_MOD) -module -o $@ denyop.lo version.lo $(LINK_LIBS)
 
@@ -113,6 +118,8 @@ MKDEPFLAG = -l
 .c.lo:
        $(LTCOMPILE_MOD) $<
 
+statover.o: statover.c $(srcdir)/../slap.h
+
 $(LIBRARY): $(OBJS) version.lo
        $(AR) rs $@ $(OBJS)
 
@@ -124,3 +131,6 @@ depend-local:
        mv Makefile Makefile.bak; $(SED) $$SCR Makefile.bak > Makefile && \
        $(RM) Makefile.bak; fi
 
+veryclean-local:
+       $(RM) statover.c
+