aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2015-04-08 14:49:14 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2015-04-08 14:49:14 +0300
commitfb0e82f743ae37e59730ad5f20ad86e068c5c920 (patch)
tree78d3f518b47288e7e7ab7e7aeb5a85904d961513 /configure.ac
parentDisable awkward trap_exit flag (diff)
Add SQLite3 library checks at the configure script
Diffstat (limited to '')
-rw-r--r--configure.ac7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index a70530990..a3e26384b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -253,6 +253,13 @@ fi
ERLANG_DEPRECATED_TYPES_CHECK
+if test "$sqlite" = "true"; then
+ AX_LIB_SQLITE3([3.6.19])
+ if test "x$SQLITE3_VERSION" = "x"; then
+ AC_MSG_ERROR(SQLite3 library >= 3.6.19 was not found)
+ fi
+fi
+
AC_SUBST(hipe)
AC_SUBST(roster_gateway_workaround)
AC_SUBST(transient_supervisors)