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

ITS#3581: Have configure report a mismatch if the version in db.h

header doesn't precisely match the return of db_version().
parent f7e15833
No related branches found
No related tags found
No related merge requests found
......@@ -368,7 +368,10 @@ main()
version = db_version( &major, &minor, &patch );
if( major != DB_VERSION_MAJOR || minor < DB_VERSION_MINOR ) {
if( major != DB_VERSION_MAJOR ||
minor != DB_VERSION_MINOR ||
patch != DB_VERSION_PATCH )
{
printf("Berkeley DB version mismatch\n"
"\theader: %s\n\tlibrary: %s\n",
DB_VERSION_STRING, version);
......
This diff is collapsed.
......@@ -1034,9 +1034,6 @@
/* define to support SQL backend */
#undef SLAPD_SQL
/* define for Dynamic Group overlay */
#undef SLAPD_OVER_CHAIN
/* define for Dynamic Group overlay */
#undef SLAPD_OVER_DENYOP
......
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