r17030: Partially fix standalone build of tdb directory
authorJeremy Allison <jra@samba.org>
Fri, 14 Jul 2006 05:10:55 +0000 (05:10 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:19:21 +0000 (11:19 -0500)
(tdbtool still fails).
Jeremy.

source/tdb/Makefile
source/tdb/tdb_private.h

index 92bc33a661ec3a8a2049b7a68cb02f60e8eb67cf..e824a7cfe81fe828b6aa714072c47355876d9900 100644 (file)
@@ -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)
 
index d10c1c46bf66f180f62c978ac7faf471aad7602d..d4f94048a4551bf4d06f3cc52952536ec051fe32 100644 (file)
@@ -25,7 +25,6 @@
 */
 
 #ifndef _SAMBA_BUILD_
-#include "config.h"
 #include <stdlib.h>
 #include <stdio.h>
 #ifdef HAVE_STDINT_H