From 7e4c4721b4fbfa71ce6712ec5b9f3e8e8a105147 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 6 Dec 2000 00:05:15 +0000 Subject: Changed to sourceforge tdb code. This includes spinlocks (so we now have a --with-spinlocks option to configure, this does mean the on-disk tdb format has changed, so 2.2alphaX sites will need to re-create their tdb's. The upside is no more tdb fragmentation and a +5% on netbench. Swings and roundabouts.... Jeremy. (This used to be commit 9dea7b7c257db487f8ced7dad3fce92fba03ea91) --- source3/tdb/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/tdb/Makefile') diff --git a/source3/tdb/Makefile b/source3/tdb/Makefile index d9b0e05f4d..01de7d244b 100644 --- a/source3/tdb/Makefile +++ b/source3/tdb/Makefile @@ -8,14 +8,14 @@ PROGS = tdbtest tdbtool tdbtorture default: $(PROGS) -tdbtest: tdbtest.o tdb.o - $(CC) $(CFLAGS) -o tdbtest tdbtest.o tdb.o -lgdbm +tdbtest: tdbtest.o tdb.o spinlock.o + $(CC) $(CFLAGS) -o tdbtest tdbtest.o tdb.o spinlock.o -lgdbm -tdbtool: tdbtool.o tdb.o - $(CC) $(CFLAGS) -o tdbtool tdbtool.o tdb.o +tdbtool: tdbtool.o tdb.o spinlock.o + $(CC) $(CFLAGS) -o tdbtool tdbtool.o tdb.o spinlock.o tdbtorture: tdbtorture.o tdb.o - $(CC) $(CFLAGS) -o tdbtorture tdbtorture.o tdb.o + $(CC) $(CFLAGS) -o tdbtorture tdbtorture.o tdb.o spinlock.o clean: rm -f $(PROGS) *.o *~ *% core test.db test.tdb test.gdbm -- cgit