From 41c7293bf991e4449c41224e812634b414ec5b83 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 18 Mar 2011 15:30:06 +0200 Subject: Autotools and VC++ build systems setup --- m4/libsqlite.m4 | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 m4/libsqlite.m4 (limited to 'm4/libsqlite.m4') diff --git a/m4/libsqlite.m4 b/m4/libsqlite.m4 new file mode 100644 index 0000000..2ad9eb1 --- /dev/null +++ b/m4/libsqlite.m4 @@ -0,0 +1,47 @@ +dnl file : m4/libsqlite.m4 +dnl author : Boris Kolpackov +dnl copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +dnl license : GNU GPL v2; see accompanying LICENSE file +dnl +dnl LIBSQLITE([ACTION-IF-FOUND[,ACTION-IF-NOT-FOUND]]) +dnl +dnl +AC_DEFUN([LIBSQLITE], [ +libsqlite_found=no + +AC_MSG_CHECKING([for libsqlite3]) + +save_LIBS="$LIBS" +LIBS="-lsqlite3 $LIBS" + +CXX_LIBTOOL_LINK_IFELSE( +AC_LANG_SOURCE([[ +#include + +int +main () +{ + sqlite3* handle; + sqlite3_open_v2 ("", &handle, 0, 0); + sqlite3_stmt* stmt; + sqlite3_prepare_v2 (handle, "", 0, &stmt, 0); + sqlite3_finalize (stmt); + sqlite3_close (handle); +} +]]), +[ +libsqlite_found=yes +]) + +if test x"$libsqlite_found" = xno; then + LIBS="$save_LIBS" +fi + +if test x"$libsqlite_found" = xyes; then + AC_MSG_RESULT([yes]) + $1 +else + AC_MSG_RESULT([no]) + $2 +fi +])dnl -- cgit v1.1