Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2017-08-27 10:35:50 +0300
committerGitHub <noreply@github.com>2017-08-27 10:35:50 +0300
commit3b3b48dbb4cdbda44ffa2f10e74f819acb78bd96 (patch)
treeb822edf4cd5a763f09914b484c61ed9be97e2883 /configure.ac
parentd605f4536512989d62272253f49a5f2e22e7e71e (diff)
[runtime] Use the AC_FUNC_STRERROR_R() autoconf macro to distinguish between the two possible signatures for strerror_r (). (#5453)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6ef80db60cb..ba174a27c1a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1502,6 +1502,8 @@ if test x$host_win32 = xno; then
AC_CHECK_FUNCS(getpwuid_r)
fi
+ AC_FUNC_STRERROR_R()
+
dnl ****************************************************************
dnl *** Check for sched_setaffinity from glibc versions before ***
dnl *** 2.3.4. The older versions of the function only take 2 ***