aboutsummaryrefslogtreecommitdiff
path: root/m4/libmysqlclient.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
commitde82dd16a013979d9ff69a5f176348607db49342 (patch)
treebeaebf6d68c433f3f597867b3bbce7b9ce131dbe /m4/libmysqlclient.m4
parent14b94b2a6cc24d8539e1c71ccd1d5e0728b50ec0 (diff)
Fix incorrect AC_LANG_SOURCE quoting
Thanks to Hugo Mildenberger <Hugo.Mildenberger@web.de> for the patch.
Diffstat (limited to 'm4/libmysqlclient.m4')
-rw-r--r--m4/libmysqlclient.m418
1 files changed, 9 insertions, 9 deletions
diff --git a/m4/libmysqlclient.m4 b/m4/libmysqlclient.m4
index f75acc9..3148f26 100644
--- a/m4/libmysqlclient.m4
+++ b/m4/libmysqlclient.m4
@@ -33,8 +33,8 @@ if test x"path" != xnone; then
LDFLAGS="$LDFLAGS -L$path"
fi
-CXX_LIBTOOL_LINK_IFELSE(
-AC_LANG_SOURCE([[
+CXX_LIBTOOL_LINK_IFELSE([
+AC_LANG_SOURCE([
#ifdef _WIN32
# include <winsock2.h>
#endif
@@ -50,7 +50,7 @@ main ()
mysql_stmt_close (stmt);
mysql_close (&handle);
}
-]]),
+])],
[
libmysqlclient_found=yes
libmysqlclient_include=long
@@ -60,8 +60,8 @@ if test x"$libmysqlclient_found" = xyes; then
break;
fi
-CXX_LIBTOOL_LINK_IFELSE(
-AC_LANG_SOURCE([[
+CXX_LIBTOOL_LINK_IFELSE([
+AC_LANG_SOURCE([
#ifdef _WIN32
# include <winsock2.h>
#endif
@@ -77,7 +77,7 @@ main ()
mysql_stmt_close (stmt);
mysql_close (&handle);
}
-]]),
+])],
[
libmysqlclient_found=yes
libmysqlclient_include=short
@@ -111,8 +111,8 @@ libmysqlclient_thr_key_visible=no
if test x"$libmysqlclient_found" = xyes -a x"$1" = xposix; then
-CXX_LIBTOOL_LINK_IFELSE(
-AC_LANG_SOURCE([[
+CXX_LIBTOOL_LINK_IFELSE([
+AC_LANG_SOURCE([
#include <pthread.h>
extern pthread_key_t THR_KEY_mysys;
int
@@ -120,7 +120,7 @@ main ()
{
return pthread_getspecific (THR_KEY_mysys) != 0;
}
-]]),
+])],
[
libmysqlclient_thr_key_visible=yes
])