diff options
author | Georg Richter <georg@mariadb.com> | 2018-06-18 19:06:55 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-06-21 10:15:27 +0200 |
commit | b4db59ba47f7670c5ea90962e36afb9dede0d238 (patch) | |
tree | bc664d80c95ad68354d399c67700dbf95d4877ae /include | |
parent | 1db1340c0c5302e16c88528d89f583f4f1b7bc90 (diff) | |
download | mariadb-git-b4db59ba47f7670c5ea90962e36afb9dede0d238.tar.gz |
MDEV-15596 10.2 doesn't work with openssl 1.1.1
Diffstat (limited to 'include')
-rw-r--r-- | include/ssl_compat.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/ssl_compat.h b/include/ssl_compat.h index 54e80af769d..2777ae94527 100644 --- a/include/ssl_compat.h +++ b/include/ssl_compat.h @@ -27,7 +27,7 @@ #define HAVE_OPENSSL11 1 #define SSL_LIBRARY OpenSSL_version(OPENSSL_VERSION) #define ERR_remove_state(X) ERR_clear_error() -#define EVP_CIPHER_CTX_SIZE 168 +#define EVP_CIPHER_CTX_SIZE 176 #define EVP_MD_CTX_SIZE 48 #undef EVP_MD_CTX_init #define EVP_MD_CTX_init(X) do { bzero((X), EVP_MD_CTX_SIZE); EVP_MD_CTX_reset(X); } while(0) @@ -77,6 +77,10 @@ #define X509_get0_notAfter(X) X509_get_notAfter(X) #endif +#ifndef TLS1_3_VERSION +#define SSL_CTX_set_ciphersuites(X,Y) 0 +#endif + #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ |