diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-30 13:10:42 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-30 13:10:42 +0200 |
commit | 18e0b8065af3b660a73af93dabb4767cbc64ec35 (patch) | |
tree | 54bb7540f6fb1db7b2ca9afe83f0690f8daffaca /configure.ac | |
parent | 27a6fdf4b5295281853254cfdde8730128038dd2 (diff) |
Autotools support for SQLite
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 81d4a1a..cea2bd2 100644 --- a/configure.ac +++ b/configure.ac @@ -63,6 +63,10 @@ case $database in LIBODB_MYSQL([], [AC_MSG_ERROR([libodb-mysql is not found; consider using --with-libodb-mysql=DIR])]) MYSQL ;; + sqlite) + LIBODB_SQLITE([], [AC_MSG_ERROR([libodb-sqlite is not found; consider using --with-libodb-sqlite=DIR])]) + SQLITE + ;; esac # Check for the ODB compiler. |