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
commitbd8d9766771728755ee0d84ba1003773a35be055 (patch)
treeb2aa54d6c5eae0384ac8f4b5a0ba172ce92ee816 /src/lib
parentf02026f6f76299e13e86d72eda1292aed8790474 (diff)
downloadopenbsd-bd8d9766771728755ee0d84ba1003773a35be055.tar.gz
openbsd-bd8d9766771728755ee0d84ba1003773a35be055.tar.bz2
openbsd-bd8d9766771728755ee0d84ba1003773a35be055.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