Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-11-03 | waf: added reconfigure targets to our libraries | Andrew Tridgell | 1 | -0/+5 | |
This allows you to do "make reconfigure" to re-run configure only if needed | |||||
2010-10-26 | waf: Only specify vnum for non-private libraries. | Jelmer Vernooij | 1 | -6/+12 | |
2010-10-23 | waf: Rename some BUNDLED_ functios to PRIVATE_. | Jelmer Vernooij | 1 | -1/+1 | |
2010-10-21 | waf: replace the is_bundled option with private_library | Andrew Tridgell | 1 | -1/+1 | |
'private_library' better captures what we are trying to get at when we bundle a library | |||||
2010-10-21 | s4-build: fixed some formatting | Andrew Tridgell | 1 | -1/+2 | |
indentation was far too deep | |||||
2010-10-17 | tdb: Bump version to 1.2.7 after addition of pytdb.__version__. | Jelmer Vernooij | 1 | -1/+1 | |
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 17 18:23:16 UTC 2010 on sn-devel-104 | |||||
2010-10-07 | waf: fixed exit status of test suites | Andrew Tridgell | 1 | -2/+4 | |
use RUN_COMMAND() to handle signal errors and exit status | |||||
2010-10-04 | tdb: Only use system pytdb when using system tdb. | Jelmer Vernooij | 1 | -2/+2 | |
2010-10-04 | tdb: Support using system pytdb. | Jelmer Vernooij | 1 | -8/+9 | |
2010-10-04 | pytdb: Add __version__ attribute. | Jelmer Vernooij | 1 | -1/+2 | |
2010-09-27 | tdb: TDB_INCOMPATIBLE_HASH, to allow safe changing of default hash. | Rusty Russell | 1 | -1/+1 | |
This flag to tdb_open/tdb_open_ex effects creation of a new database: 1) Uses the Jenkins lookup3 hash instead of the old gdbm hash if none is specified, 2) Places a non-zero field in header->rwlocks, so older versions of TDB will refuse to open it. This means that the caller (ie Samba) can set this flag to safely change the hash function. Versions of TDB from this one on will either use the correct hash or refuse to open (if a different hash is specified). Older TDB versions will see the nonzero rwlocks field and refuse to open it under any conditions. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2010-09-27 | tdb: add Bob Jenkins lookup3 hash as helper hash. | Rusty Russell | 1 | -2/+2 | |
This is a better hash than the default: shipping it with tdb makes it easy for callers to use it as the hash by passing it to tdb_open_ex(). This version taken from CCAN and modified, which took it from http://www.burtleburtle.net/bob/c/lookup3.c. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2010-09-23 | tdb: add restore | Volker Lendecke | 1 | -0/+4 | |
Based on an idea by Simon McVittie, largely rewritten | |||||
2010-09-13 | lib/tdb: change version to 1.2.4 after hash checking improvments | Stefan Metzmacher | 1 | -1/+1 | |
lib/tdb: change version to 1.2.4 after hash checking improvments metze Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2010-08-31 | tdb/waf: the deps for rt are provided by libreplace | Björn Jacke | 1 | -1/+1 | |
2010-08-14 | tdb: workaround starvation problem in locking entire database. | Rusty Russell | 1 | -1/+1 | |
We saw tdb_lockall() take 71 seconds under heavy load; this is because Linux (at least) doesn't prevent new small locks being obtained while we're waiting for a big log. The workaround is to do divide and conquer using non-blocking chainlocks: if we get down to a single chain we block. Using a simple test program where children did "hold lock for 100ms, sleep for 1 second" the time to do tdb_lockall() dropped signifiantly. There are ln(hashsize) locks taken in the contended case, but that's slow anyway. More analysis is given in my blog at http://rusty.ozlabs.org/?p=120 This may also help transactions, though in that case it's the initial read lock which uses this gradual locking routine; the update-to-write-lock code is separate and still tries to update in one go. Even though ABI doesn't change, minor version bumped so behavior change can be easily detected. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2010-06-24 | s4-ldb: use CHECK_XSLTPROC_MANPAGES() | Andrew Tridgell | 1 | -2/+1 | |
2010-06-19 | wafsamba: Fix typo: noextenion -> noextension. | Jelmer Vernooij | 1 | -1/+1 | |
2010-05-31 | tdb-waf: Don't install binaries when using system tdb. | Jelmer Vernooij | 1 | -17/+17 | |
2010-05-31 | tdb-waf: Simplify manpage handling. | Jelmer Vernooij | 1 | -17/+4 | |
2010-05-31 | s4-waf: sanitize library names like the old build system did, only add | Jelmer Vernooij | 1 | -1/+1 | |
-samba4 suffix for libraries that are bundled. | |||||
2010-04-21 | build: make python development headers not mandatory in standalone libs | Andrew Tridgell | 1 | -1/+1 | |
This needed an update to the python tool in waf thanks to Kai for spotting this | |||||
2010-04-20 | tdb: update tdb ABI to use hide_symbols=True | Andrew Tridgell | 1 | -1/+2 | |
We now use -fvisibilty=hidden to hide symbols from outside the tdb shared library. This also moved tdb_transaction_recover() into the tdb_private.h header, as it should never have been a public API. For that reason we are changing the version number. We're only doing a minor version increment as it is extremely unlikely that anyone was actually using tdb_transaction_recover() as its locking requirements were rather unusual. Pair-Programmed-With: Rusty Russell <rusty@samba.org> | |||||
2010-04-18 | tdb-waf: added ABI checking for tdb | Andrew Tridgell | 1 | -0/+2 | |
2010-04-13 | s4-waf: don't try to use the system lib for the library build | Andrew Tridgell | 1 | -5/+6 | |
when building library FOO, don't try to find the system library FOO Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-04-13 | tdb-waf: added build of manpages and config options for RPM build | Andrew Tridgell | 1 | -3/+44 | |
Building a RPM from the fedora spec file now works with minimal changes Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-04-06 | s4-waf: fixed waf distcheck for our standalone libs and s4 | Andrew Tridgell | 1 | -0/+4 | |
2010-04-06 | s4-waf: added simple 'waf test' support for tdb, talloc and ldb | Andrew Tridgell | 1 | -0/+6 | |
2010-04-06 | s4-waf: use a common pattern for finding buildtools and libs | Andrew Tridgell | 1 | -11/+7 | |
2010-04-06 | s4-waf: move to a universal method of recursing into subdirs | Andrew Tridgell | 1 | -3/+3 | |
This works with both standalone lib builds and bundled builds | |||||
2010-04-06 | s4-waf: fixed finding of buildtools and srcdir | Andrew Tridgell | 1 | -7/+6 | |
2010-04-06 | s4-waf: avoid having to run waf configure before waf dist | Andrew Tridgell | 1 | -2/+3 | |
This should be useful for building tarballs from a clean checkout | |||||
2010-04-06 | s4-waf: allow standalone tarball build of libraries | Andrew Tridgell | 1 | -2/+9 | |
2010-04-06 | s4-waf: added 'waf dist' to our standalone libs as well | Andrew Tridgell | 1 | -1/+3 | |
2010-04-06 | s4-waf: added implied_deps for system libraries | Andrew Tridgell | 1 | -1/+2 | |
when we use a system version of a library such as talloc, then we no longer get the automtica dependency propogation of talloc implying libreplace. That means we don't get the includes for libreplace, which means things can fail to build. To fix this this change adds an implied_deps option to CHECK_BUNDLED_SYSTEM(), which tells the samba_deps module to add an implied dependency on the listed targets if the system library is chosen. | |||||
2010-04-06 | s4-waf: support the use of system libraries | Andrew Tridgell | 1 | -5/+10 | |
distros can set --bundled-libraries=NONE to force use of all system libraries. If the right version isn't found then configure will fail. Users may choose which libraries to use from the system, and which to use bundled libs. The default is to try system libs, and use them if their version matches the one in the source tree. | |||||
2010-04-06 | s4-waf: set default for bundled libraries | Andrew Tridgell | 1 | -1/+2 | |
2010-04-06 | s4-waf: set the bundled library extension for some libs | Andrew Tridgell | 1 | -0/+1 | |
2010-04-06 | s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵ | Andrew Tridgell | 1 | -0/+2 | |
them | |||||
2010-04-06 | s4-waf: fdatasync is in librt on solaris8 | Andrew Tridgell | 1 | -1/+1 | |
2010-04-06 | build: only enable pytdb on s4 build | Andrew Tridgell | 1 | -0/+3 | |
2010-04-06 | build: enable pytdb | Andrew Tridgell | 1 | -0/+6 | |
2010-04-06 | build: result of hack session with ita | Andrew Tridgell | 1 | -1/+1 | |
2010-04-06 | build: started to split up wafsamba.py into separate modules | Andrew Tridgell | 1 | -0/+5 | |
2010-04-06 | build: added BUILD_SUBDIR() wrapper | Andrew Tridgell | 1 | -1/+1 | |
2010-04-06 | build: added ADD_CFLAGS() and started of Samba4 build | Andrew Tridgell | 1 | -1/+1 | |
2010-04-06 | build: tdb does not depend on talloc | Andrew Tridgell | 1 | -1/+1 | |
2010-04-06 | build: added waf build rules for ldb | Andrew Tridgell | 1 | -3/+3 | |
2010-04-06 | build: neater way to find libreplace and start on tevent waf build | Andrew Tridgell | 1 | -9/+16 | |
2010-04-06 | build: more binaries for waf tdb build | Andrew Tridgell | 1 | -0/+12 | |