summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorVolker Lendecke <vl@sernet.de>2007-11-09 23:43:24 +0100
committerVolker Lendecke <vl@samba.org>2007-12-10 16:06:32 +0100
commitd5ab80054d3c1dde396c18ae506bb3713e84e7e6 (patch)
treec6953bf605e9aca1ebfbc10ab1160019ae1665f4 /source3/Makefile.in
parent8a8b146ead07149de57069ed803051ce460fa94b (diff)
downloadsamba-d5ab80054d3c1dde396c18ae506bb3713e84e7e6.tar.gz
samba-d5ab80054d3c1dde396c18ae506bb3713e84e7e6.tar.bz2
samba-d5ab80054d3c1dde396c18ae506bb3713e84e7e6.zip
dbwrap_rbt
This is meant as a replacement for the internal tdb. To me it seems a bit silly that for in-memory structures we do our own memory management. With this rbt based approach we can make use of the system-supplied malloc. (This used to be commit 54e5d4404619443caed32e2acff8921cdbff9ed1)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 01aa236130..e636a9119f 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -224,8 +224,8 @@ TDBBASE_OBJ = lib/tdb/common/tdb.o lib/tdb/common/dump.o lib/tdb/common/error.o
lib/tdb/common/open.o lib/tdb/common/transaction.o \
lib/tdb/common/traverse.o
-TDB_OBJ = $(TDBBASE_OBJ) lib/util_tdb.o\
- lib/dbwrap.o lib/dbwrap_tdb.o lib/dbwrap_ctdb.o
+TDB_OBJ = $(TDBBASE_OBJ) lib/util_tdb.o \
+ lib/dbwrap.o lib/dbwrap_tdb.o lib/dbwrap_ctdb.o lib/dbwrap_rbt.o
SMBLDAP_OBJ = @SMBLDAP@ @SMBLDAPUTIL@