Commit 317d3514 authored by Yang Tse's avatar Yang Tse
Browse files

Attempt to handle getpeername() prototypes with a void pointer for third argument

parent d27519c0
Loading
Loading
Loading
Loading
+19 −1
Original line number Diff line number Diff line
@@ -3075,7 +3075,7 @@ AC_DEFUN([CURL_CONFIGURE_CURL_SOCKLEN_T], [
  rm -f debug.txt
  for arg1 in int SOCKET; 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
          AC_COMPILE_IFELSE([
            AC_LANG_PROGRAM([[
@@ -3098,6 +3098,24 @@ AC_DEFUN([CURL_CONFIGURE_CURL_SOCKLEN_T], [
      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])
  if test "$curl_typeof_curl_socklen_t" = "unknown"; then
    cat debug.txt >&6