mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:33:31 +03:00
if no strerror_r prototype is found, we provide our own to prevent picky
compilers to warn
This commit is contained in:
parent
af72f198ba
commit
6f74820cfc
2 changed files with 20 additions and 0 deletions
11
acinclude.m4
11
acinclude.m4
|
|
@ -396,6 +396,17 @@ AC_DEFUN([CURL_CHECK_STRERROR_R],
|
|||
AC_MSG_RESULT(no))])])
|
||||
|
||||
if test "x$strerror_r" = "xyes"; then
|
||||
|
||||
dnl check if strerror_r is properly declared in the headers
|
||||
AC_CHECK_DECL(strerror_r, ,
|
||||
AC_DEFINE(HAVE_NO_STRERROR_R_DECL, 1, [we have no strerror_r() proto])
|
||||
,
|
||||
[#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
])
|
||||
|
||||
dnl determine if this strerror_r() is glibc or POSIX
|
||||
AC_MSG_CHECKING([for a glibc strerror_r API])
|
||||
AC_TRY_RUN([
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue