summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-04-16 08:20:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:19:22 -0500
commitc7def92a9c2e17c90061ef17bc14e36250574e85 (patch)
tree2da3f5269ad4e850aa9421e2f8493c2acefcbccc
parent17088fd644ef68ac2e96ed1246339b65943d63d0 (diff)
downloadsamba-c7def92a9c2e17c90061ef17bc14e36250574e85.tar.gz
r22249: move tdb code to lib/tdb/ as in samba4
metze
-rw-r--r--source/Makefile.in18
-rw-r--r--source/configure.in2
-rw-r--r--source/lib/tdb/Makefile.in (renamed from source/tdb/Makefile.in)0
-rw-r--r--source/lib/tdb/aclocal.m4 (renamed from source/tdb/aclocal.m4)0
-rwxr-xr-xsource/lib/tdb/autogen.sh (renamed from source/tdb/autogen.sh)0
-rw-r--r--source/lib/tdb/common/dump.c (renamed from source/tdb/common/dump.c)0
-rw-r--r--source/lib/tdb/common/error.c (renamed from source/tdb/common/error.c)0
-rw-r--r--source/lib/tdb/common/freelist.c (renamed from source/tdb/common/freelist.c)0
-rw-r--r--source/lib/tdb/common/freelistcheck.c (renamed from source/tdb/common/freelistcheck.c)0
-rw-r--r--source/lib/tdb/common/io.c (renamed from source/tdb/common/io.c)0
-rw-r--r--source/lib/tdb/common/lock.c (renamed from source/tdb/common/lock.c)0
-rw-r--r--source/lib/tdb/common/open.c (renamed from source/tdb/common/open.c)0
-rw-r--r--source/lib/tdb/common/tdb.c (renamed from source/tdb/common/tdb.c)0
-rw-r--r--source/lib/tdb/common/tdb_private.h (renamed from source/tdb/common/tdb_private.h)0
-rw-r--r--source/lib/tdb/common/tdbback.c (renamed from source/tdb/common/tdbback.c)0
-rw-r--r--source/lib/tdb/common/transaction.c (renamed from source/tdb/common/transaction.c)0
-rw-r--r--source/lib/tdb/common/traverse.c (renamed from source/tdb/common/traverse.c)0
-rw-r--r--source/lib/tdb/config.m4 (renamed from source/tdb/config.m4)0
-rw-r--r--source/lib/tdb/config.mk (renamed from source/tdb/config.mk)0
-rw-r--r--source/lib/tdb/configure.in (renamed from source/tdb/configure.in)0
-rw-r--r--source/lib/tdb/docs/README (renamed from source/tdb/docs/README)0
-rw-r--r--source/lib/tdb/docs/tdb.magic (renamed from source/tdb/docs/tdb.magic)0
-rw-r--r--source/lib/tdb/include/tdb.h (renamed from source/tdb/include/tdb.h)0
-rw-r--r--source/lib/tdb/include/tdbback.h (renamed from source/tdb/include/tdbback.h)0
-rw-r--r--source/lib/tdb/include/tdbconfig.h.in (renamed from source/tdb/include/tdbconfig.h.in)0
-rw-r--r--source/lib/tdb/swig/Tdb.py (renamed from source/tdb/swig/Tdb.py)0
-rw-r--r--source/lib/tdb/swig/tdb.i (renamed from source/tdb/swig/tdb.i)0
-rw-r--r--source/lib/tdb/tdb.pc.in (renamed from source/tdb/tdb.pc.in)0
-rw-r--r--source/lib/tdb/tools/tdbbackup.c (renamed from source/tdb/tools/tdbbackup.c)0
-rw-r--r--source/lib/tdb/tools/tdbdump.c (renamed from source/tdb/tools/tdbdump.c)0
-rw-r--r--source/lib/tdb/tools/tdbtest.c (renamed from source/tdb/tools/tdbtest.c)0
-rw-r--r--source/lib/tdb/tools/tdbtool.c (renamed from source/tdb/tools/tdbtool.c)0
-rw-r--r--source/lib/tdb/tools/tdbtorture.c (renamed from source/tdb/tools/tdbtorture.c)0
33 files changed, 11 insertions, 9 deletions
diff --git a/source/Makefile.in b/source/Makefile.in
index 6195e0ed366..ac2f8f2551c 100644
--- a/source/Makefile.in
+++ b/source/Makefile.in
@@ -194,11 +194,13 @@ MODULES = $(VFS_MODULES) $(PDB_MODULES) $(RPC_MODULES) $(IDMAP_MODULES) \
# object file lists
######################################################################
-TDBBASE_OBJ = tdb/common/tdb.o tdb/common/dump.o tdb/common/error.o \
- tdb/common/freelist.o tdb/common/freelistcheck.o tdb/common/io.o tdb/common/lock.o \
- tdb/common/open.o tdb/common/transaction.o tdb/common/traverse.o
+TDBBASE_OBJ = lib/tdb/common/tdb.o lib/tdb/common/dump.o lib/tdb/common/error.o \
+ lib/tdb/common/freelist.o lib/tdb/common/freelistcheck.o \
+ lib/tdb/common/io.o lib/tdb/common/lock.o \
+ lib/tdb/common/open.o lib/tdb/common/transaction.o \
+ lib/tdb/common/traverse.o
-TDB_OBJ = $(TDBBASE_OBJ) lib/util_tdb.o tdb/common/tdbback.o
+TDB_OBJ = $(TDBBASE_OBJ) lib/util_tdb.o lib/tdb/common/tdbback.o
SMBLDAP_OBJ = @SMBLDAP@ @SMBLDAPUTIL@
@@ -881,16 +883,16 @@ POPT_OBJ=popt/findme.o popt/popt.o popt/poptconfig.o \
INIPARSER_OBJ = iniparser/src/iniparser.o iniparser/src/dictionary.o \
iniparser/src/strlib.o
-TDBBACKUP_OBJ = tdb/tools/tdbbackup.o tdb/common/tdbback.o $(LIBREPLACE_OBJ) \
+TDBBACKUP_OBJ = lib/tdb/tools/tdbbackup.o lib/tdb/common/tdbback.o $(LIBREPLACE_OBJ) \
$(TDBBASE_OBJ) $(SOCKET_WRAPPER_OBJ)
-TDBTOOL_OBJ = tdb/tools/tdbtool.o $(TDBBASE_OBJ) $(LIBREPLACE_OBJ) \
+TDBTOOL_OBJ = lib/tdb/tools/tdbtool.o $(TDBBASE_OBJ) $(LIBREPLACE_OBJ) \
$(SOCKET_WRAPPER_OBJ)
-TDBDUMP_OBJ = tdb/tools/tdbdump.o $(TDBBASE_OBJ) $(LIBREPLACE_OBJ) \
+TDBDUMP_OBJ = lib/tdb/tools/tdbdump.o $(TDBBASE_OBJ) $(LIBREPLACE_OBJ) \
$(SOCKET_WRAPPER_OBJ)
-TDBTORTURE_OBJ = tdb/tools/tdbtorture.o $(TDBBASE_OBJ) $(LIBREPLACE_OBJ) \
+TDBTORTURE_OBJ = lib/tdb/tools/tdbtorture.o $(TDBBASE_OBJ) $(LIBREPLACE_OBJ) \
$(SOCKET_WRAPPER_OBJ)
diff --git a/source/configure.in b/source/configure.in
index 810ab6bced4..ed53a335c7c 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -233,7 +233,7 @@ done
SAMBA_CPPFLAGS="-Iinclude -I${srcdir-.}/include -I. -I${srcdir-.}"
SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/lib/replace"
SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/lib/talloc"
-SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/tdb/include"
+SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/lib/tdb/include"
SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/libaddns"
SAMBA_CPPFLAGS="${SAMBA_CPPFLAGS} -I${srcdir-.}/librpc"
diff --git a/source/tdb/Makefile.in b/source/lib/tdb/Makefile.in
index 455a6e52ce4..455a6e52ce4 100644
--- a/source/tdb/Makefile.in
+++ b/source/lib/tdb/Makefile.in
diff --git a/source/tdb/aclocal.m4 b/source/lib/tdb/aclocal.m4
index 5605e476bab..5605e476bab 100644
--- a/source/tdb/aclocal.m4
+++ b/source/lib/tdb/aclocal.m4
diff --git a/source/tdb/autogen.sh b/source/lib/tdb/autogen.sh
index 1691689e10c..1691689e10c 100755
--- a/source/tdb/autogen.sh
+++ b/source/lib/tdb/autogen.sh
diff --git a/source/tdb/common/dump.c b/source/lib/tdb/common/dump.c
index 3f5c2c87f5b..3f5c2c87f5b 100644
--- a/source/tdb/common/dump.c
+++ b/source/lib/tdb/common/dump.c
diff --git a/source/tdb/common/error.c b/source/lib/tdb/common/error.c
index 4cf33a29ab2..4cf33a29ab2 100644
--- a/source/tdb/common/error.c
+++ b/source/lib/tdb/common/error.c
diff --git a/source/tdb/common/freelist.c b/source/lib/tdb/common/freelist.c
index 0efe47f8798..0efe47f8798 100644
--- a/source/tdb/common/freelist.c
+++ b/source/lib/tdb/common/freelist.c
diff --git a/source/tdb/common/freelistcheck.c b/source/lib/tdb/common/freelistcheck.c
index 63d2dbadc25..63d2dbadc25 100644
--- a/source/tdb/common/freelistcheck.c
+++ b/source/lib/tdb/common/freelistcheck.c
diff --git a/source/tdb/common/io.c b/source/lib/tdb/common/io.c
index cd06dbb1e38..cd06dbb1e38 100644
--- a/source/tdb/common/io.c
+++ b/source/lib/tdb/common/io.c
diff --git a/source/tdb/common/lock.c b/source/lib/tdb/common/lock.c
index 8a964371d3a..8a964371d3a 100644
--- a/source/tdb/common/lock.c
+++ b/source/lib/tdb/common/lock.c
diff --git a/source/tdb/common/open.c b/source/lib/tdb/common/open.c
index c7fd3f66564..c7fd3f66564 100644
--- a/source/tdb/common/open.c
+++ b/source/lib/tdb/common/open.c
diff --git a/source/tdb/common/tdb.c b/source/lib/tdb/common/tdb.c
index 25103d826e5..25103d826e5 100644
--- a/source/tdb/common/tdb.c
+++ b/source/lib/tdb/common/tdb.c
diff --git a/source/tdb/common/tdb_private.h b/source/lib/tdb/common/tdb_private.h
index 9d39de02003..9d39de02003 100644
--- a/source/tdb/common/tdb_private.h
+++ b/source/lib/tdb/common/tdb_private.h
diff --git a/source/tdb/common/tdbback.c b/source/lib/tdb/common/tdbback.c
index 28de85c29f8..28de85c29f8 100644
--- a/source/tdb/common/tdbback.c
+++ b/source/lib/tdb/common/tdbback.c
diff --git a/source/tdb/common/transaction.c b/source/lib/tdb/common/transaction.c
index 640cd5014d2..640cd5014d2 100644
--- a/source/tdb/common/transaction.c
+++ b/source/lib/tdb/common/transaction.c
diff --git a/source/tdb/common/traverse.c b/source/lib/tdb/common/traverse.c
index fb2371d4039..fb2371d4039 100644
--- a/source/tdb/common/traverse.c
+++ b/source/lib/tdb/common/traverse.c
diff --git a/source/tdb/config.m4 b/source/lib/tdb/config.m4
index a37f36b29e0..a37f36b29e0 100644
--- a/source/tdb/config.m4
+++ b/source/lib/tdb/config.m4
diff --git a/source/tdb/config.mk b/source/lib/tdb/config.mk
index c5d1a339907..c5d1a339907 100644
--- a/source/tdb/config.mk
+++ b/source/lib/tdb/config.mk
diff --git a/source/tdb/configure.in b/source/lib/tdb/configure.in
index 0a72af20d94..0a72af20d94 100644
--- a/source/tdb/configure.in
+++ b/source/lib/tdb/configure.in
diff --git a/source/tdb/docs/README b/source/lib/tdb/docs/README
index b31ce36ab14..b31ce36ab14 100644
--- a/source/tdb/docs/README
+++ b/source/lib/tdb/docs/README
diff --git a/source/tdb/docs/tdb.magic b/source/lib/tdb/docs/tdb.magic
index f5619e7327e..f5619e7327e 100644
--- a/source/tdb/docs/tdb.magic
+++ b/source/lib/tdb/docs/tdb.magic
diff --git a/source/tdb/include/tdb.h b/source/lib/tdb/include/tdb.h
index dafe2a130ec..dafe2a130ec 100644
--- a/source/tdb/include/tdb.h
+++ b/source/lib/tdb/include/tdb.h
diff --git a/source/tdb/include/tdbback.h b/source/lib/tdb/include/tdbback.h
index 69d3bb6f91a..69d3bb6f91a 100644
--- a/source/tdb/include/tdbback.h
+++ b/source/lib/tdb/include/tdbback.h
diff --git a/source/tdb/include/tdbconfig.h.in b/source/lib/tdb/include/tdbconfig.h.in
index d6d2c09b3c8..d6d2c09b3c8 100644
--- a/source/tdb/include/tdbconfig.h.in
+++ b/source/lib/tdb/include/tdbconfig.h.in
diff --git a/source/tdb/swig/Tdb.py b/source/lib/tdb/swig/Tdb.py
index aac7a90354d..aac7a90354d 100644
--- a/source/tdb/swig/Tdb.py
+++ b/source/lib/tdb/swig/Tdb.py
diff --git a/source/tdb/swig/tdb.i b/source/lib/tdb/swig/tdb.i
index 98bf6441ce8..98bf6441ce8 100644
--- a/source/tdb/swig/tdb.i
+++ b/source/lib/tdb/swig/tdb.i
diff --git a/source/tdb/tdb.pc.in b/source/lib/tdb/tdb.pc.in
index 0d54afe2424..0d54afe2424 100644
--- a/source/tdb/tdb.pc.in
+++ b/source/lib/tdb/tdb.pc.in
diff --git a/source/tdb/tools/tdbbackup.c b/source/lib/tdb/tools/tdbbackup.c
index 4ae5a4f9212..4ae5a4f9212 100644
--- a/source/tdb/tools/tdbbackup.c
+++ b/source/lib/tdb/tools/tdbbackup.c
diff --git a/source/tdb/tools/tdbdump.c b/source/lib/tdb/tools/tdbdump.c
index 2ff2a2b0193..2ff2a2b0193 100644
--- a/source/tdb/tools/tdbdump.c
+++ b/source/lib/tdb/tools/tdbdump.c
diff --git a/source/tdb/tools/tdbtest.c b/source/lib/tdb/tools/tdbtest.c
index 1564a42bc41..1564a42bc41 100644
--- a/source/tdb/tools/tdbtest.c
+++ b/source/lib/tdb/tools/tdbtest.c
diff --git a/source/tdb/tools/tdbtool.c b/source/lib/tdb/tools/tdbtool.c
index cf801d5dc55..cf801d5dc55 100644
--- a/source/tdb/tools/tdbtool.c
+++ b/source/lib/tdb/tools/tdbtool.c
diff --git a/source/tdb/tools/tdbtorture.c b/source/lib/tdb/tools/tdbtorture.c
index 14a2b48cdc7..14a2b48cdc7 100644
--- a/source/tdb/tools/tdbtorture.c
+++ b/source/lib/tdb/tools/tdbtorture.c