summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-06-17 09:08:23 +1000
committerAndrew Bartlett <abartlet@samba.org>2009-06-18 13:49:29 +1000
commit95345986e855c5d26a6728ba0b996ac7a104cfb8 (patch)
treec0c84efe31032c60126ec4add8995352fd57ec12
parentb250c8de3930ed95c876219e13ceb1375b07d228 (diff)
downloadsamba-95345986e855c5d26a6728ba0b996ac7a104cfb8.tar.gz
Require the new tdb 1.1.5 (for performance reasons)
While tdb has not changed ABI in a way that requires this, we don't want Samba4 somehow built against the old version with performance problems on large, growing databases. Andrew Bartlett
-rw-r--r--source4/lib/ldb/external/libtdb.m42
-rw-r--r--source4/min_versions.m42
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/external/libtdb.m4 b/source4/lib/ldb/external/libtdb.m4
index cdfc5ea2fbb..2554f27d27e 100644
--- a/source4/lib/ldb/external/libtdb.m4
+++ b/source4/lib/ldb/external/libtdb.m4
@@ -4,4 +4,4 @@ AC_SUBST(TDB_LIBS)
AC_CHECK_HEADER(tdb.h,
[AC_CHECK_LIB(tdb, tdb_open, [TDB_LIBS="-ltdb"]) ],
- [PKG_CHECK_MODULES(TDB, tdb >= 1.1.4)])
+ [PKG_CHECK_MODULES(TDB, tdb >= 1.1.5)])
diff --git a/source4/min_versions.m4 b/source4/min_versions.m4
index 0d9f439d60f..6b6bd9864e8 100644
--- a/source4/min_versions.m4
+++ b/source4/min_versions.m4
@@ -1,6 +1,6 @@
# Minimum and exact required versions for various libraries
# if we use the ones installed in the system.
-define(TDB_MIN_VERSION,1.1.4)
+define(TDB_MIN_VERSION,1.1.5)
define(TALLOC_MIN_VERSION,1.3.0)
define(LDB_REQUIRED_VERSION,0.9.5)
define(TEVENT_REQUIRED_VERSION,0.9.6)