aboutsummaryrefslogtreecommitdiff
path: root/m4/libsqlite.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/libsqlite.m4')
-rw-r--r--m4/libsqlite.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/m4/libsqlite.m4 b/m4/libsqlite.m4
index 5a353b9..e108c02 100644
--- a/m4/libsqlite.m4
+++ b/m4/libsqlite.m4
@@ -16,8 +16,8 @@ AC_MSG_CHECKING([for libsqlite3])
save_LIBS="$LIBS"
LIBS="-lsqlite3 $LIBS"
-CXX_LIBTOOL_LINK_IFELSE(
-AC_LANG_SOURCE([[
+CXX_LIBTOOL_LINK_IFELSE([
+AC_LANG_SOURCE([
#include <sqlite3.h>
int
@@ -30,7 +30,7 @@ main ()
sqlite3_finalize (stmt);
sqlite3_close (handle);
}
-]]),
+])],
[
libsqlite_found=yes
])
@@ -42,8 +42,8 @@ fi
# Check for unlock_notify.
#
if test x"$libsqlite_found" = xyes; then
-CXX_LIBTOOL_LINK_IFELSE(
-AC_LANG_SOURCE([[
+CXX_LIBTOOL_LINK_IFELSE([
+AC_LANG_SOURCE([
#include <sqlite3.h>
int
@@ -52,7 +52,7 @@ main ()
sqlite3* handle (0);
sqlite3_unlock_notify (handle, 0, 0);
}
-]]),
+])],
[
libsqlite_unlock_notify=yes
])