summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-11-04 13:59:35 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-11-05 16:48:39 +0100
commit07f8986051b5ad8f6f34b82036f615c70f7fbb3e (patch)
tree726ab79c21ad26e3cbae5d4205ff2235d5f54be1
parent2839cfdc53c38df341a818549820303fde641452 (diff)
downloadcurl-07f8986051b5ad8f6f34b82036f615c70f7fbb3e.tar.gz
configure: only say ipv6 enabled when the variable is set
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 Closes #4560
-rwxr-xr-xconfigure.ac5
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index f6cf2ed0b..cb8f4943e 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1227,10 +1227,6 @@ main()
ipv6=yes
))
-if test "$ipv6" = "yes"; then
- curl_ipv6_msg="enabled"
-fi
-
# Check if struct sockaddr_in6 have sin6_scope_id member
if test "$ipv6" = yes; then
AC_MSG_CHECKING([if struct sockaddr_in6 has sin6_scope_id member])
@@ -3969,6 +3965,7 @@ if test "$ipv6" = "yes"; then
AC_DEFINE(ENABLE_IPV6, 1, [Define if you want to enable IPv6 support])
IPV6_ENABLED=1
AC_SUBST(IPV6_ENABLED)
+ curl_ipv6_msg="enabled"
fi
fi