summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharlie Brej <cbrej@cs.man.ac.uk>2010-08-07 10:20:18 +0100
committerCharlie Brej <cbrej@cs.man.ac.uk>2010-08-07 10:20:18 +0100
commita2358b6faa187e57720e515f8eb534baa4ceb8d9 (patch)
tree9931ac005e23b673e27e4c1528e58a710d09885d
parent33332192312f798fd0bce0ed6a1a3ac9ffc80e19 (diff)
Error configure if sqlite is missing
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 022c4ff..824777a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -43,6 +43,10 @@ AC_SUBST(SQLITE3_CFLAGS)
AC_SUBST(SQLITE3_LDFLAGS)
AC_SUBST(SQLITE3_VERSION)
+if test $SQLITE3_VERSION = "" ; then
+ AC_MSG_ERROR([SQLite3 is required to build..]);
+fi
+
PKG_CHECK_MODULES(LIBSOUP, [libsoup-2.4 >= 2.23])
AC_SUBST(LIBSOUP_CFLAGS)
AC_SUBST(LIBSOUP_LIBS)