Skip to content
Snippets Groups Projects
Commit f5dc8ed4 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Back-BDB now requires Berkeley DB 4 as this release includes

important fixes necessary for proper operation of back-bdb.
parent 15902ae7
No related branches found
No related tags found
No related merge requests found
......@@ -429,10 +429,8 @@ AC_DEFUN([OL_BDB_COMPAT],
# define DB_VERSION_MAJOR 1
#endif
/* require 3.3 or later */
#if DB_VERSION_MAJOR > 3
__db_version_compat
#elif DB_VERSION_MAJOR == 3 && DB_VERSION_MINOR >= 3
/* require 4.0 or later */
#if DB_VERSION_MAJOR >= 4
__db_version_compat
#endif
], [ol_cv_bdb_compat=yes], [ol_cv_bdb_compat=no])])
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment