summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-09-04 23:41:07 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-09-04 23:41:07 +0200
commit6f753b8d0879759508ebe8a031851781e40dbe56 (patch)
tree899859f4bf1fb687f82526b503f2cccc755a61dc
parente514e67c61cc385c81e235750b31936b3cd4243b (diff)
downloadcurl-bagder/configure-disable-hsts.tar.gz
configure: make --disable-hsts workbagder/configure-disable-hsts
The AC_ARG_ENABLE() macro itself uses a variable called 'enable_[option]', so when our script also used a variable with that name for the purpose of storing what the user wants, it also accidentally made it impossible to switch off the feature with --disable-hsts. Fix this by renaming our variable. Reported-by: MichaƂ Antoniak Fixes #7669 Closes #
-rw-r--r--configure.ac14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 694a16cba..34ec0efd3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -172,7 +172,7 @@ curl_verbose_msg="enabled (--disable-verbose)"
curl_h3_msg="no (--with-ngtcp2, --with-quiche)"
enable_altsvc="yes"
-enable_hsts="yes"
+hsts="yes"
dnl
dnl Save some initial values the user might have provided
@@ -534,7 +534,7 @@ AS_HELP_STRING([--disable-http],[Disable HTTP support]),
curl_altsvc_msg="no";
curl_hsts_msg="no (--enable-hsts)";
enable_altsvc="no"
- enable_hsts="no"
+ hsts="no"
;;
*) AC_MSG_RESULT(yes)
;;
@@ -3901,19 +3901,19 @@ if test -n "$SSL_ENABLED"; then
[ case "$enableval" in
no)
AC_MSG_RESULT(no)
- enable_hsts="no"
+ hsts="no"
;;
*) AC_MSG_RESULT(yes)
;;
esac ],
- AC_MSG_RESULT(no)
+ AC_MSG_RESULT($hsts)
)
else
AC_MSG_NOTICE([disables HSTS due to lack of SSL])
- enable_hsts="no"
+ hsts="no"
fi
-if test "x$enable_hsts" != "xyes"; then
+if test "x$hsts" != "xyes"; then
curl_hsts_msg="no (--enable-hsts)";
AC_DEFINE(CURL_DISABLE_HSTS, 1, [disable alt-svc])
fi
@@ -4038,7 +4038,7 @@ fi
if test "x$enable_altsvc" = "xyes"; then
SUPPORT_FEATURES="$SUPPORT_FEATURES alt-svc"
fi
-if test "x$enable_hsts" = "xyes"; then
+if test "x$hsts" = "xyes"; then
SUPPORT_FEATURES="$SUPPORT_FEATURES HSTS"
fi