aboutsummaryrefslogtreecommitdiff
path: root/m4/libsqlite.m4
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-06 07:43:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-06 07:43:11 +0200
commitf19ae935d1ae09eb7b347d3ce198c3ccacba6bd8 (patch)
tree4e5c47cca30a678442046cb13dd759fdfabc8605 /m4/libsqlite.m4
parent32613d718b36a6c400d6f05da50d30b3fd25c3b8 (diff)
Fix incorrect AC_LANG_SOURCE quoting
Thanks to Hugo Mildenberger <Hugo.Mildenberger@web.de> for the patch.
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
])