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

Add basic detection for db3

parent 8411a531
No related branches found
No related tags found
No related merge requests found
......@@ -265,7 +265,9 @@ AC_DEFUN([OL_BERKELEY_DB_TRY],
#define NULL ((void*)0)
#endif
],[
#if DB_VERSION_MAJOR > 1
#if DB_VERSION_MAJOR > 2
db_env_create( NULL, 0 );
#elif DB_VERSION_MAJOR > 1
db_appexit( NULL );
#else
(void) dbopen( NULL, 0, 0, 0, NULL);
......
This diff is collapsed.
......@@ -1723,8 +1723,6 @@ if test $ol_with_ldbm_api = auto \
fi
fi
exit
if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
AC_MSG_WARN(Could not find LDBM with BTREE support)
ol_with_ldbm_api=none
......
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