summaryrefslogtreecommitdiff
path: root/m4/threads.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/threads.m4')
-rw-r--r--m4/threads.m422
1 files changed, 11 insertions, 11 deletions
diff --git a/m4/threads.m4 b/m4/threads.m4
index d803402235b..8ff7c239f60 100644
--- a/m4/threads.m4
+++ b/m4/threads.m4
@@ -351,22 +351,22 @@ AC_DEFUN(ACE_CHECK_THREAD_FLAGS, dnl
[
ACE_CONVERT_WARNINGS_TO_ERRORS([
AC_TRY_LINK(
-ifelse(AC_LANG, CPLUSPLUS, [#ifdef __cplusplus
-extern "C"
-#endif
-
+[
#ifndef _REENTRANT
#error _REENTRANT was not defined
THROW ME AN ERROR!
#endif
-])dnl
+]
+ifelse(AC_LANG, CPLUSPLUS, [#ifdef __cplusplus
+extern "C"
+#endif
+])
[
char thr_create();
], [
thr_create();
], [$1],
[
-dnl
AC_REQUIRE([AC_PROG_AWK])
AC_TRY_CPP(
@@ -394,14 +394,15 @@ EOF
fi dnl test "$ace_header_not_exist" != yes
AC_TRY_LINK(
-ifelse(AC_LANG, CPLUSPLUS, [#ifdef __cplusplus
-extern "C"
-#endif
-
+[
#ifndef _REENTRANT
#error _REENTRANT was not defined
THROW ME AN ERROR!
#endif
+]
+ifelse(AC_LANG, CPLUSPLUS, [#ifdef __cplusplus
+extern "C"
+#endif
])dnl
[
char $ace_real_function();
@@ -409,7 +410,6 @@ char $ace_real_function();
$ace_real_function();
], [$1],[$2])
-dnl
])
])
])