aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--m4/libodb.m46
-rw-r--r--m4/libsqlite.m412
-rw-r--r--m4/threads.m46
3 files changed, 12 insertions, 12 deletions
diff --git a/m4/libodb.m4 b/m4/libodb.m4
index 6e282a6..7d3130b 100644
--- a/m4/libodb.m4
+++ b/m4/libodb.m4
@@ -31,8 +31,8 @@ fi
save_LIBS="$LIBS"
LIBS="-lodb $LIBS"
-CXX_LIBTOOL_LINK_IFELSE(
-AC_LANG_SOURCE([[
+CXX_LIBTOOL_LINK_IFELSE([
+AC_LANG_SOURCE([
#include <odb/exception.hxx>
void
@@ -60,7 +60,7 @@ main ()
const char* m (g ());
return m != 0;
}
-]]),
+])],
[libodb_found=yes])
if test x"$libodb_found" = xno; then
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
])
diff --git a/m4/threads.m4 b/m4/threads.m4
index fce3f39..4cd4c05 100644
--- a/m4/threads.m4
+++ b/m4/threads.m4
@@ -36,8 +36,8 @@ if test x$threads = xcheck; then
#
AC_MSG_CHECKING([for __thread keyword])
- CXX_LIBTOOL_LINK_IFELSE(
- AC_LANG_SOURCE([[
+ CXX_LIBTOOL_LINK_IFELSE([
+ AC_LANG_SOURCE([
__thread int tls_var;
int
@@ -45,7 +45,7 @@ if test x$threads = xcheck; then
{
tls_var = 0;
}
- ]]),
+ ])],
[threads_thread_keyword=yes])
AC_MSG_RESULT([$threads_thread_keyword])