summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorbeck <>2023-07-06 06:15:36 +0000
committerbeck <>2023-07-06 06:15:36 +0000
commit9cbf6fca419db1aac8facd72f628352a2bdc6e8c (patch)
treeb2aa54d6c5eae0384ac8f4b5a0ba172ce92ee816 /src/lib
parent0da1913b3c721e1a62fd66bc43547b4e910cbc34 (diff)
downloadopenbsd-9cbf6fca419db1aac8facd72f628352a2bdc6e8c.tar.gz
openbsd-9cbf6fca419db1aac8facd72f628352a2bdc6e8c.tar.bz2
openbsd-9cbf6fca419db1aac8facd72f628352a2bdc6e8c.zip
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@
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/opensslfeatures.h7
1 files changed, 4 insertions, 3 deletions
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 @@
106/* #define OPENSSL_NO_STATIC_ENGINE */ 106/* #define OPENSSL_NO_STATIC_ENGINE */
107/* #define OPENSSL_NO_STDIO */ 107/* #define OPENSSL_NO_STDIO */
108/* #define OPENSSL_NO_TLS */ 108/* #define OPENSSL_NO_TLS */
109/* #define OPENSSL_NO_TLS1 */ 109#define OPENSSL_NO_TLS1
110/* #define OPENSSL_NO_TLS1_1 */ 110#define OPENSSL_NO_TLS1_1
111/* #define OPENSSL_NO_TLS1_1_METHOD */ 111#define OPENSSL_NO_TLS1_METHOD
112#define OPENSSL_NO_TLS1_1_METHOD
112/* #define OPENSSL_NO_TLS1_2 */ 113/* #define OPENSSL_NO_TLS1_2 */
113/* #define OPENSSL_NO_TLS1_2_METHOD */ 114/* #define OPENSSL_NO_TLS1_2_METHOD */
114#ifndef LIBRESSL_HAS_TLS1_3 115#ifndef LIBRESSL_HAS_TLS1_3