From bd8d9766771728755ee0d84ba1003773a35be055 Mon Sep 17 00:00:00 2001 From: beck <> Date: Thu, 6 Jul 2023 06:15:36 +0000 Subject: Define the 'standard' OPENSSL_NO_BLAHBLAH's for no tls 1.0 or 1.1 We have no tls 1.0 or 1.1 or methods for them. These "in theory" will make things that check the openssl #ifdef soup for all the floating eyeballs make the correct decisions, or if they do not they at least can not blame us. ok tb@ --- src/lib/libcrypto/opensslfeatures.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/opensslfeatures.h b/src/lib/libcrypto/opensslfeatures.h index 38e7c921c9..0c0caa9f89 100644 --- a/src/lib/libcrypto/opensslfeatures.h +++ b/src/lib/libcrypto/opensslfeatures.h @@ -106,9 +106,10 @@ /* #define OPENSSL_NO_STATIC_ENGINE */ /* #define OPENSSL_NO_STDIO */ /* #define OPENSSL_NO_TLS */ -/* #define OPENSSL_NO_TLS1 */ -/* #define OPENSSL_NO_TLS1_1 */ -/* #define OPENSSL_NO_TLS1_1_METHOD */ +#define OPENSSL_NO_TLS1 +#define OPENSSL_NO_TLS1_1 +#define OPENSSL_NO_TLS1_METHOD +#define OPENSSL_NO_TLS1_1_METHOD /* #define OPENSSL_NO_TLS1_2 */ /* #define OPENSSL_NO_TLS1_2_METHOD */ #ifndef LIBRESSL_HAS_TLS1_3 -- cgit v1.2.3-55-g6feb