Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
./buildconf ./configure --enable-debug --with-winssl --enable-alt-svc
configure says:
IPv6: enabled
because of
curl/configure.ac
Line 1231 in 2839cfd
But curl_config.h says:
/* Define if you want to enable IPv6 support */ /* #undef ENABLE_IPV6 */
Line 3968 in 2839cfd
The output of configure to match ENABLE_IPV6. And probably ENABLE_IPV6 being independent of HAVE_GETADDRINFO.
ENABLE_IPV6
HAVE_GETADDRINFO
2839cfd
curl 7.67.0-DEV (i686-pc-mingw32) libcurl/7.67.0-DEV Schannel zlib/1.2.11 Release-Date: [unreleased] Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp Features: alt-svc AsynchDNS Debug Kerberos Largefile libz NTLM SPNEGO SSL SSPI TrackMemory
Classic MinGW with MSYS 1.0 on Windows 10
The text was updated successfully, but these errors were encountered:
I don't think there's any point in making them independent of each other. We can only do IPv6 "proper" if getaddrinfo() exists.
getaddrinfo()
Sorry, something went wrong.
configure: only say ipv6 enabled when the variable is set
23cfcc6
Previously it could say "IPv6: enabled" at the end of the configure run but the define wasn't set because of a missing getaddrinfo(). Reported-by: Marcel Raad Fixes #4555
07f8986
Successfully merging a pull request may close this issue.
I did this
configure says:
because of
curl/configure.ac
Line 1231 in 2839cfd
But curl_config.h says:
because of
curl/configure.ac
Line 3968 in 2839cfd
I expected the following
The output of configure to match
ENABLE_IPV6
. And probablyENABLE_IPV6
being independent ofHAVE_GETADDRINFO
.curl/libcurl version
2839cfd
operating system
Classic MinGW with MSYS 1.0 on Windows 10
The text was updated successfully, but these errors were encountered: