Skip to content
Snippets Groups Projects
Commit 0573d735 authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

Merge branch 'lmdb_autoconf' into 'master'

Fix lmdb detection code in configure.ac
parents 9f059eaa 6c859225
No related branches found
No related tags found
No related merge requests found
......@@ -265,9 +265,9 @@ AS_IF([test "$with_lmdb" != "no"],[
save_LIBS=$LIBS
for try_lmdb in "$with_lmdb" "" "/usr/local"; do
AS_IF([test -d "$try_openssl"], [
lmdb_CFLAGS="-I$with_lmdb/include"
lmdb_LIBS=""
AS_IF([test -d "$try_lmdb"], [
lmdb_CFLAGS="-I$try_lmdb/include"
lmdb_LIBS="-L$try_lmdb/lib"
],[
lmdb_CFLAGS=""
lmdb_LIBS=""
......
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