diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-10-20 19:28:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:02:20 -0500 |
commit | a9bd40549767c19207f3ec520a3e4346beeabef4 (patch) | |
tree | 055d67a79bdd2cb9098284fabdbf8a9cba6e95a9 /source4/lib/ldb/Makefile.ldb | |
parent | 8d48ca63db0ec8dc47a386bd1fa38be2827755f3 (diff) | |
download | samba-a9bd40549767c19207f3ec520a3e4346beeabef4.tar.gz samba-a9bd40549767c19207f3ec520a3e4346beeabef4.tar.bz2 samba-a9bd40549767c19207f3ec520a3e4346beeabef4.zip |
r3093: - implment ldb_rename() and ldbrename
- add tests for ldbrename
- disable all tests which regenerate the index
(this is broken for me...the process hangs,
tridge we need to discuss that)
- link only the needed stuff to the ldb tools
- build ldbtest inside samba
metze
(This used to be commit 18552f4786c24e0019cc87726ef4c05365fe586e)
Diffstat (limited to 'source4/lib/ldb/Makefile.ldb')
-rw-r--r-- | source4/lib/ldb/Makefile.ldb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/lib/ldb/Makefile.ldb b/source4/lib/ldb/Makefile.ldb index 6a87043114..38456a75e4 100644 --- a/source4/lib/ldb/Makefile.ldb +++ b/source4/lib/ldb/Makefile.ldb @@ -29,7 +29,7 @@ OBJS = $(COMMON_OBJ) $(LDB_TDB_OBJ) $(TDB_OBJ) $(LDB_LDAP_OBJ) LDB_LIB = lib/libldb.a -BINS = bin/ldbadd bin/ldbsearch bin/ldbdel bin/ldbmodify bin/ldbedit bin/ldbtest +BINS = bin/ldbadd bin/ldbsearch bin/ldbdel bin/ldbmodify bin/ldbedit bin/ldbrename bin/ldbtest LIBS = $(LDB_LIB)($(OBJS)) @@ -60,6 +60,9 @@ bin/ldbmodify: tools/ldbmodify.o $(LIBS) bin/ldbedit: tools/ldbedit.o $(LIBS) $(CC) -o bin/ldbedit tools/ldbedit.o $(LIB_FLAGS) +bin/ldbrename: tools/ldbrename.o $(LIBS) + $(CC) -o bin/ldbrename tools/ldbrename.o $(LIB_FLAGS) + bin/ldbtest: tools/ldbtest.o $(LIBS) $(CC) -o bin/ldbtest tools/ldbtest.o $(LIB_FLAGS) |