diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-21 10:06:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-21 13:42:25 +0200 |
commit | 9406d93e77e7923e2788e43df50cf3a577f1c42b (patch) | |
tree | 70d7ad60be900909fd50537f78d6f18dd24d3641 /configure.ac | |
parent | b069815a7ac245c9c794c173de411f3d4d051531 (diff) | |
download | curl-9406d93e77e7923e2788e43df50cf3a577f1c42b.tar.gz |
configure: detect getsockname and getpeername on windows too
Made detection macros for these two functions in the same style as other
functions possibly in winsock in the hope this will work better to
detect these functions when cross-compiling for Windows.
Follow-up to e91e4816123
Fixes #3913
Closes #3915
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 13e8e297b..3e45b5151 100755 --- a/configure.ac +++ b/configure.ac @@ -3719,6 +3719,8 @@ CURL_CHECK_FUNC_GETHOSTBYADDR_R CURL_CHECK_FUNC_GETHOSTBYNAME CURL_CHECK_FUNC_GETHOSTBYNAME_R CURL_CHECK_FUNC_GETHOSTNAME +CURL_CHECK_FUNC_GETPEERNAME +CURL_CHECK_FUNC_GETSOCKNAME CURL_CHECK_FUNC_GETIFADDRS CURL_CHECK_FUNC_GETSERVBYPORT_R CURL_CHECK_FUNC_GMTIME_R @@ -3772,8 +3774,6 @@ AC_CHECK_FUNCS([fnmatch \ getpwuid_r \ getrlimit \ gettimeofday \ - getpeername \ - getsockname \ if_nametoindex \ mach_absolute_time \ pipe \ |