diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2010-09-24 15:34:06 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2010-09-27 10:48:28 +0930 |
commit | 3258cf3f11bf7c68a2e69e1808c4551cc899725a (patch) | |
tree | 4936334d88f8e159c0412f8f3370f3ab07c0817d /lib/tdb/wscript | |
parent | 7afa7b8a848a6afdb586768168c95b566b7b912f (diff) | |
download | samba-3258cf3f11bf7c68a2e69e1808c4551cc899725a.tar.gz samba-3258cf3f11bf7c68a2e69e1808c4551cc899725a.tar.bz2 samba-3258cf3f11bf7c68a2e69e1808c4551cc899725a.zip |
tdb: add Bob Jenkins lookup3 hash as helper hash.
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>
Diffstat (limited to 'lib/tdb/wscript')
-rw-r--r-- | lib/tdb/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tdb/wscript b/lib/tdb/wscript index ff468f2797..970c6287cf 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -1,7 +1,7 @@ #!/usr/bin/env python APPNAME = 'tdb' -VERSION = '1.2.4' +VERSION = '1.2.5' blddir = 'bin' @@ -58,7 +58,7 @@ def build(bld): COMMON_SRC = bld.SUBDIR('common', '''check.c error.c tdb.c traverse.c freelistcheck.c lock.c dump.c freelist.c - io.c open.c transaction.c''') + io.c open.c transaction.c hash.c''') if not bld.CONFIG_SET('USING_SYSTEM_TDB'): bld.SAMBA_LIBRARY('tdb', |