mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
Attempt to handle getpeername() prototypes with a void pointer for third argument
This commit is contained in:
parent
d27519c0ca
commit
317d351423
20
acinclude.m4
20
acinclude.m4
@ -3075,7 +3075,7 @@ AC_DEFUN([CURL_CONFIGURE_CURL_SOCKLEN_T], [
|
|||||||
rm -f debug.txt
|
rm -f debug.txt
|
||||||
for arg1 in int SOCKET; do
|
for arg1 in int SOCKET; do
|
||||||
for arg2 in 'struct sockaddr' void; do
|
for arg2 in 'struct sockaddr' void; do
|
||||||
for t in socklen_t int size_t 'unsigned int' long 'unsigned long'; do
|
for t in socklen_t int size_t 'unsigned int' long 'unsigned long' void; do
|
||||||
if test "$curl_typeof_curl_socklen_t" = "unknown"; then
|
if test "$curl_typeof_curl_socklen_t" = "unknown"; then
|
||||||
AC_COMPILE_IFELSE([
|
AC_COMPILE_IFELSE([
|
||||||
AC_LANG_PROGRAM([[
|
AC_LANG_PROGRAM([[
|
||||||
@ -3098,6 +3098,24 @@ AC_DEFUN([CURL_CONFIGURE_CURL_SOCKLEN_T], [
|
|||||||
done
|
done
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
for t in socklen_t int; do
|
||||||
|
if test "$curl_typeof_curl_socklen_t" = "void"; then
|
||||||
|
AC_COMPILE_IFELSE([
|
||||||
|
AC_LANG_PROGRAM([[
|
||||||
|
$curl_includes_sys_socket
|
||||||
|
typedef $t curl_socklen_t;
|
||||||
|
]],[[
|
||||||
|
curl_socklen_t dummy;
|
||||||
|
]])
|
||||||
|
],[
|
||||||
|
curl_typeof_curl_socklen_t="$t"
|
||||||
|
],[
|
||||||
|
echo "DEBUG: ======================================" >>debug.txt
|
||||||
|
sed 's/^/cc-src: /' conftest.$ac_ext >>debug.txt
|
||||||
|
sed 's/^/cc-err: /' conftest.err >>debug.txt
|
||||||
|
])
|
||||||
|
fi
|
||||||
|
done
|
||||||
AC_MSG_RESULT([$curl_typeof_curl_socklen_t])
|
AC_MSG_RESULT([$curl_typeof_curl_socklen_t])
|
||||||
if test "$curl_typeof_curl_socklen_t" = "unknown"; then
|
if test "$curl_typeof_curl_socklen_t" = "unknown"; then
|
||||||
cat debug.txt >&6
|
cat debug.txt >&6
|
||||||
|
Loading…
Reference in New Issue
Block a user