summaryrefslogtreecommitdiff
path: root/source4/lib/tdb/autogen.sh
AgeCommit message (Collapse)AuthorFilesLines
2007-12-21r26180: Allow prebuilding swig output files.Jelmer Vernooij1-0/+2
(This used to be commit 52106ad04edc3e80e3e3feb8d4b2d4e9e945cbbb)
2007-10-10r22424: fixed the bad merge (thanks to metze for pointing out)Andrew Tridgell1-1/+1
(This used to be commit bffb8f88006fd2530cad270df642d9a23a01b34b)
2007-10-10r22422: merged tdb changes from ctdbAndrew Tridgell1-1/+1
(This used to be commit a0ff739bcab32065d9d3957eb1d93f7791f84f04)
2007-10-10r18129: moved the system includes into libreplace - this gives much moreAndrew Tridgell1-2/+3
isolation of our portability environment from the main code, and also simplifies the includes system (no separate #ifdef _SAMBA_BUILD for tdb. ldb etc now) (This used to be commit 77d1a468e06290aba789e2f3affc769fc5159a21)
2007-10-10r18090: sometimes autoconf picks up some old stuff:Stefan Metzmacher1-0/+5
- remove configure and config.h.in - cleanup after autoconf and autoheader are done metze (This used to be commit 57531074439140da75e2d279b052224e6809a79d)
2007-10-10r10253: a fairly large tdb cleanup and re-organise. Nearly all of this changeAndrew Tridgell1-0/+1
just involves splitting up the core tdb.c code into separate files on logical boundaries, but there are some minor functional changes as well: - move the 'struct tdb_context' into tdb_private.h, hiding it from users. This was done to allow the structure to change without breaking code that uses tdb. - added accessor functions tdb_fd(), tdb_name(), and tdb_log_fn() to access the elements of struct tdb_context that were used by external code but are no longer visible - simplied tdb_append() to use tdb_fetch()/tdb_store(), which is just as good due to the way tdb locks work - changed some of the types (such as tdb_off to tdb_off_t) to make syntax highlighting work better - removed the old optional spinlock code. It was a bad idea. - fixed a bug in tdb_reopen_all() that caused tdbtorture to sometimes fail or report nasty looking errors. This is the only real bug fixed in this commit. Jeremy/Jerry, you might like to pickup this change for Samba3, as that could definately affect smbd in Samba3. The aim of all of these changes is to make the tdb transactions/journaling code I am working on easier to write. I started to write it on top of the existing tdb.c code and it got very messy. Splitting up the code makes it much easier to follow. There are more cleanups we could do in tdb, such as using uint32_t instead of u32 (suggested by metze). I'll leave those for another day. (This used to be commit 4673cdd0d261614e707b72a7a348bb0e7dbb2482)
2007-10-10r6487: Use autoconf for standalone build of tdbJelmer Vernooij1-0/+7
(This used to be commit 78bf8026bde34b7accc78f07c940ef1dcfc0dea7)