mirror of
https://github.com/curl/curl.git
synced 2026-07-31 07:58:04 +03:00
am f
This commit is contained in:
parent
0392cf126b
commit
86fae80c87
1 changed files with 6 additions and 7 deletions
13
configure.ac
13
configure.ac
|
|
@ -4610,13 +4610,12 @@ AS_HELP_STRING([--disable-httpsig],[Disable HTTP Message Signatures support (exp
|
|||
want_httpsig="no"
|
||||
)
|
||||
|
||||
if test "$want_httpsig" = "yes"; then
|
||||
if test "$OPENSSL_ENABLED" = "1" || test "$WOLFSSL_ENABLED" = "1"; then
|
||||
AC_MSG_WARN([HTTPSIG requires OpenSSL or wolfSSL. HTTPSIG support disabled.])
|
||||
else
|
||||
AC_DEFINE(CURL_DISABLE_HTTPSIG, 1, [to disable HTTP Message Signatures support])
|
||||
want_httpsig="no"
|
||||
fi
|
||||
if test "$want_httpsig" = "yes" && test "$OPENSSL_ENABLED" != "1" && test "$WOLFSSL_ENABLED" = "1"; then
|
||||
AC_MSG_WARN([HTTPSIG requires OpenSSL or wolfSSL. HTTPSIG support disabled.])
|
||||
want_httpsig="no"
|
||||
fi
|
||||
if test "$want_httpsig" != "yes"; then
|
||||
AC_DEFINE(CURL_DISABLE_HTTPSIG, 1, [to disable HTTP Message Signatures support])
|
||||
fi
|
||||
|
||||
dnl ************************************************************
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue