summaryrefslogtreecommitdiff
path: root/source3/tdb
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-07-14 05:10:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:19:21 -0500
commit2a2d67f5adb29ed602e751141ab2c0937bfa1b73 (patch)
tree635f1af0d5e40d6d88f6b5661e70e3ebb9ee6aaa /source3/tdb
parent5f0e9cc4e6529b1db145958cc965ba29dafe4497 (diff)
downloadsamba-2a2d67f5adb29ed602e751141ab2c0937bfa1b73.tar.gz
samba-2a2d67f5adb29ed602e751141ab2c0937bfa1b73.tar.bz2
samba-2a2d67f5adb29ed602e751141ab2c0937bfa1b73.zip
r17030: Partially fix standalone build of tdb directory
(tdbtool still fails). Jeremy. (This used to be commit 50dbb66d73c8c25755e675876dd55000ca8bfd12)
Diffstat (limited to 'source3/tdb')
-rw-r--r--source3/tdb/Makefile2
-rw-r--r--source3/tdb/tdb_private.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/source3/tdb/Makefile b/source3/tdb/Makefile
index 92bc33a661..e824a7cfe8 100644
--- a/source3/tdb/Makefile
+++ b/source3/tdb/Makefile
@@ -7,7 +7,7 @@ CC = gcc
ADMINPROGS = tdbdump tdbbackup
PROGS = tdbtest tdbtool tdbtorture
-TDB_OBJ = tdb.o spinlock.o tdbback.o
+TDB_OBJ = tdb.o tdbback.o dump.o error.o freelist.o io.o lock.o open.o traverse.o transaction.o
default: $(PROGS)
diff --git a/source3/tdb/tdb_private.h b/source3/tdb/tdb_private.h
index d10c1c46bf..d4f94048a4 100644
--- a/source3/tdb/tdb_private.h
+++ b/source3/tdb/tdb_private.h
@@ -25,7 +25,6 @@
*/
#ifndef _SAMBA_BUILD_
-#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#ifdef HAVE_STDINT_H