diff options
author | Manuel Massing <m.massing@warped-space.de> | 2011-03-12 23:38:10 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-03-12 23:38:10 +0100 |
commit | c042340b2a8d503488a93e48b79878158606bd16 (patch) | |
tree | 0478aaabbc6e3f6dc7606036f1718539e79a5c4a /acinclude.m4 | |
parent | b8478187406cf625c9d0f10b45a082221130cc92 (diff) | |
download | curl-c042340b2a8d503488a93e48b79878158606bd16.tar.gz |
CURL_CHECK_FUNC_RECVFROM: android/bionic fix
recvfrom in bionic (the android libc) deviates from POSIX and uses a
const in the 5th argument ("const struct sockaddr *") so the check now
tests for that as well.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 03d8e20a0..1074e9221 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -1663,7 +1663,7 @@ AC_DEFUN([CURL_CHECK_FUNC_RECVFROM], [ for recvfrom_arg2 in 'char *' 'void *'; do for recvfrom_arg3 in 'size_t' 'int' 'socklen_t' 'unsigned int'; do for recvfrom_arg4 in 'int' 'unsigned int'; do - for recvfrom_arg5 in 'struct sockaddr *' 'void *'; do + for recvfrom_arg5 in 'const struct sockaddr *' 'struct sockaddr *' 'void *'; do for recvfrom_arg6 in 'socklen_t *' 'int *' 'unsigned int *' 'size_t *' 'void *'; do if test "$curl_cv_func_recvfrom_args" = "unknown"; then AC_COMPILE_IFELSE([ |