Skip to content
Snippets Groups Projects
Commit abd65e21 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

force recent AIX versions to check for strerror_r

parent e21104a8
No related branches found
No related tags found
No related merge requests found
......@@ -915,6 +915,7 @@ printf("just fine");
#endif
],
[ AC_MSG_RESULT([yes])
RECENTAIX=yes
OPT_THREAD=off ],
[ AC_MSG_RESULT([no]) ]
)
......@@ -959,6 +960,16 @@ else
fi
dnl for recent AIX versions, we skip all the thread-safe checks above since
dnl they claim a thread-safe libc using the standard API. But the man page
dnl says strerror() is not thread-safe, so we check for this only!
if test "x$RECENTAIX" = "xyes"; then
dnl is there a strerror_r()
CURL_CHECK_STRERROR_R()
fi
dnl **********************************************************************
dnl Back to "normal" configuring
dnl **********************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment