diff options
author | unknown <tim@threads.polyesthetic.msg> | 2000-11-17 13:48:09 -0500 |
---|---|---|
committer | unknown <tim@threads.polyesthetic.msg> | 2000-11-17 13:48:09 -0500 |
commit | 104fa518b6760e9a3650a020ca0038d5984b968e (patch) | |
tree | f985df655f7e0e4693e7d9c52852d38b4da4fc49 /acinclude.m4 | |
parent | 645cfcb142a0a2532a180106308163a613f323ca (diff) | |
download | mariadb-git-104fa518b6760e9a3650a020ca0038d5984b968e.tar.gz |
acinclude.m4 undef inline during some C++ tests
acinclude.m4:
undef inline during some C++ tests
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index c8dab319c99..7f039dbf7af 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -41,14 +41,20 @@ then CXXFLAGS="$CXXFLAGS -Werror" fi mysql_cv_btype_last_arg_accept=none -[AC_TRY_COMPILE([#include <stdlib.h> +[AC_TRY_COMPILE([#if defined(inline) +#undef inline +#endif +#include <stdlib.h> #include <sys/types.h> #include <sys/socket.h> ], [int a = accept(1, (struct sockaddr *) 0, (socklen_t *) 0); return (a != 0);], mysql_cv_btype_last_arg_accept=socklen_t)] if test $mysql_cv_btype_last_arg_accept = none; then -[AC_TRY_COMPILE([#include <stdlib.h> +[AC_TRY_COMPILE([#if defined(inline) +#undef inline +#endif +#include <stdlib.h> #include <sys/types.h> #include <sys/socket.h> ], |