r22249: move tdb code to lib/tdb/ as in samba4
authorStefan Metzmacher <metze@samba.org>
Mon, 16 Apr 2007 08:20:13 +0000 (08:20 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:19:22 +0000 (12:19 -0500)
metze

33 files changed:
source/Makefile.in
source/configure.in
source/lib/tdb/Makefile.in [moved from source/tdb/Makefile.in with 100% similarity]
source/lib/tdb/aclocal.m4 [moved from source/tdb/aclocal.m4 with 100% similarity]
source/lib/tdb/autogen.sh [moved from source/tdb/autogen.sh with 100% similarity]
source/lib/tdb/common/dump.c [moved from source/tdb/common/dump.c with 100% similarity]
source/lib/tdb/common/error.c [moved from source/tdb/common/error.c with 100% similarity]
source/lib/tdb/common/freelist.c [moved from source/tdb/common/freelist.c with 100% similarity]
source/lib/tdb/common/freelistcheck.c [moved from source/tdb/common/freelistcheck.c with 100% similarity]
source/lib/tdb/common/io.c [moved from source/tdb/common/io.c with 100% similarity]
source/lib/tdb/common/lock.c [moved from source/tdb/common/lock.c with 100% similarity]
source/lib/tdb/common/open.c [moved from source/tdb/common/open.c with 100% similarity]
source/lib/tdb/common/tdb.c [moved from source/tdb/common/tdb.c with 100% similarity]
source/lib/tdb/common/tdb_private.h [moved from source/tdb/common/tdb_private.h with 100% similarity]
source/lib/tdb/common/tdbback.c [moved from source/tdb/common/tdbback.c with 100% similarity]
source/lib/tdb/common/transaction.c [moved from source/tdb/common/transaction.c with 100% similarity]
source/lib/tdb/common/traverse.c [moved from source/tdb/common/traverse.c with 100% similarity]
source/lib/tdb/config.m4 [moved from source/tdb/config.m4 with 100% similarity]
source/lib/tdb/config.mk [moved from source/tdb/config.mk with 100% similarity]
source/lib/tdb/configure.in [moved from source/tdb/configure.in with 100% similarity]
source/lib/tdb/docs/README [moved from source/tdb/docs/README with 100% similarity]
source/lib/tdb/docs/tdb.magic [moved from source/tdb/docs/tdb.magic with 100% similarity]
source/lib/tdb/include/tdb.h [moved from source/tdb/include/tdb.h with 100% similarity]
source/lib/tdb/include/tdbback.h [moved from source/tdb/include/tdbback.h with 100% similarity]
source/lib/tdb/include/tdbconfig.h.in [moved from source/tdb/include/tdbconfig.h.in with 100% similarity]
source/lib/tdb/swig/Tdb.py [moved from source/tdb/swig/Tdb.py with 100% similarity]
source/lib/tdb/swig/tdb.i [moved from source/tdb/swig/tdb.i with 100% similarity]
source/lib/tdb/tdb.pc.in [moved from source/tdb/tdb.pc.in with 100% similarity]
source/lib/tdb/tools/tdbbackup.c [moved from source/tdb/tools/tdbbackup.c with 100% similarity]
source/lib/tdb/tools/tdbdump.c [moved from source/tdb/tools/tdbdump.c with 100% similarity]
source/lib/tdb/tools/tdbtest.c [moved from source/tdb/tools/tdbtest.c with 100% similarity]
source/lib/tdb/tools/tdbtool.c [moved from source/tdb/tools/tdbtool.c with 100% similarity]
source/lib/tdb/tools/tdbtorture.c [moved from source/tdb/tools/tdbtorture.c with 100% similarity]

index 6195e0ed366dbc0c5b44c922dc1aa468650b9ca1..ac2f8f2551c2627ff3c0059eccc385e6eabd6bc2 100644 (file)
@@ -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)
 
 
index 810ab6bced4bd5c52d7e64d04d7e3fa0f2560d45..ed53a335c7c7b336beaf9b2d1d281555d74a4b0e 100644 (file)
@@ -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"