diff options
author | Simo Sorce <idra@samba.org> | 2010-02-06 10:48:39 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2010-02-06 10:48:39 -0500 |
commit | 70534adee10fc6f5bba2d9304668dc6508e5de5a (patch) | |
tree | 2081475e093c2b1ff79b4f7e6cb3d3d54e5182a5 | |
parent | 65710dae847273edb99495241e6d7b7acd303c5f (diff) | |
download | samba-70534adee10fc6f5bba2d9304668dc6508e5de5a.tar.gz samba-70534adee10fc6f5bba2d9304668dc6508e5de5a.tar.bz2 samba-70534adee10fc6f5bba2d9304668dc6508e5de5a.zip |
tdb: raise version to 1.2.1
after recent fixes we need to raise the version to 1.2.1 so that
we can require also the right patched version.
-rw-r--r-- | lib/tdb/configure.ac | 2 | ||||
-rw-r--r-- | source3/configure.in | 2 | ||||
-rw-r--r-- | source4/min_versions.m4 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/tdb/configure.ac b/lib/tdb/configure.ac index dac7bb2673..395121937f 100644 --- a/lib/tdb/configure.ac +++ b/lib/tdb/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.50) AC_DEFUN([SMB_MODULE_DEFAULT], [echo -n ""]) AC_DEFUN([SMB_LIBRARY_ENABLE], [echo -n ""]) AC_DEFUN([SMB_ENABLE], [echo -n ""]) -AC_INIT(tdb, 1.2.0) +AC_INIT(tdb, 1.2.1) AC_CONFIG_SRCDIR([common/tdb.c]) AC_CONFIG_HEADER(include/config.h) AC_LIBREPLACE_ALL_CHECKS diff --git a/source3/configure.in b/source3/configure.in index f3c6ba5987..14b57b688a 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1965,7 +1965,7 @@ AC_ARG_ENABLE(external_libtdb, if test "x$enable_external_libtdb" != xno then - PKG_CHECK_MODULES(LIBTDB, tdb >= 1.1.7, + PKG_CHECK_MODULES(LIBTDB, tdb >= 1.2.1, [ enable_external_libtdb=yes ], [ if test x$enable_external_libtdb = xyes; then diff --git a/source4/min_versions.m4 b/source4/min_versions.m4 index af8c4dd8fb..c134c693dd 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.2.0) +define(TDB_MIN_VERSION,1.2.1) define(TALLOC_MIN_VERSION,2.0.1) define(LDB_REQUIRED_VERSION,0.9.10) define(TEVENT_REQUIRED_VERSION,0.9.8) |