From f19ae935d1ae09eb7b347d3ce198c3ccacba6bd8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 6 Feb 2013 07:43:11 +0200 Subject: Fix incorrect AC_LANG_SOURCE quoting Thanks to Hugo Mildenberger for the patch. --- m4/libsqlite.m4 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'm4/libsqlite.m4') 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 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 int @@ -52,7 +52,7 @@ main () sqlite3* handle (0); sqlite3_unlock_notify (handle, 0, 0); } -]]), +])], [ libsqlite_unlock_notify=yes ]) -- cgit v1.1