diff options
-rw-r--r-- | source3/tdb/Makefile | 2 | ||||
-rw-r--r-- | source3/tdb/tdb_private.h | 1 |
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 |