mirror of
https://github.com/curl/curl.git
synced 2026-07-31 14:58:02 +03:00
or newer -> higher
This commit is contained in:
parent
1d5dc6d2f9
commit
7d02e46280
11 changed files with 16 additions and 16 deletions
|
|
@ -61,12 +61,12 @@
|
|||
#include <ares.h>
|
||||
|
||||
#if ARES_VERSION < 0x011000
|
||||
#error "requires c-ares 1.16.0 or newer"
|
||||
#error "requires c-ares 1.16.0 or higher"
|
||||
#endif
|
||||
|
||||
#ifdef USE_HTTPSRR
|
||||
#if ARES_VERSION < 0x011c00
|
||||
#error "requires c-ares 1.28.0 or newer for HTTPSRR"
|
||||
#error "requires c-ares 1.28.0 or higher for HTTPSRR"
|
||||
#endif
|
||||
#define HTTPSRR_WORKS
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ timediff_t Curl_async_timeleft_ms(struct Curl_easy *data,
|
|||
#ifdef USE_ARES
|
||||
|
||||
#if ARES_VERSION < 0x011000
|
||||
#error "requires c-ares 1.16.0 or newer"
|
||||
#error "requires c-ares 1.16.0 or higher"
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
#ifdef HAVE_LIBZ
|
||||
|
||||
#if !defined(ZLIB_VERNUM) || (ZLIB_VERNUM < 0x1252)
|
||||
#error "requires zlib 1.2.5.2 or newer"
|
||||
#error "requires zlib 1.2.5.2 or higher"
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
|
|
|
|||
|
|
@ -545,7 +545,7 @@ static bool xfer_may_multiplex(const struct Curl_easy *data,
|
|||
|
||||
if(Curl_multiplex_wanted(data->multi) &&
|
||||
(data->state.http_neg.allowed & (CURL_HTTP_V2x | CURL_HTTP_V3x)))
|
||||
/* allows HTTP/2 or newer */
|
||||
/* allows HTTP/2 or higher */
|
||||
return TRUE;
|
||||
}
|
||||
#else
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
#error "wolfSSL version should be at least 5.0.0"
|
||||
#endif
|
||||
#if defined(OPENSSL_COEXIST) && LIBWOLFSSL_VERSION_HEX < 0x05007006
|
||||
#error "wolfSSL 5.7.6 or newer is required to coexist with OpenSSL"
|
||||
#error "wolfSSL 5.7.6 or higher is required to coexist with OpenSSL"
|
||||
#endif
|
||||
|
||||
/* To determine what functions are available we rely on one or both of:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue