From 13e86ecbe8770791ef0dce6cc8f460ba6d10b66d Mon Sep 17 00:00:00 2001 From: beck Date: Thu, 6 Jul 2023 06:38:01 +0000 Subject: [PATCH] define OPENSSL_NO_DTLS1_1 since we no longer have that either. ok tb@ --- lib/libcrypto/opensslfeatures.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/opensslfeatures.h b/lib/libcrypto/opensslfeatures.h index 0c0caa9f89c..1e087f9c239 100644 --- a/lib/libcrypto/opensslfeatures.h +++ b/lib/libcrypto/opensslfeatures.h @@ -1,3 +1,4 @@ +/* $OpenBSD: opensslfeatures.h,v 1.39 2023/07/06 06:38:01 beck Exp $ */ /* * Feature flags for LibreSSL... so you can actually tell when things * are enabled, rather than not being able to tell when things are @@ -52,8 +53,10 @@ /* #define OPENSSL_NO_DSA */ /* #define OPENSSL_NO_DSO */ /* #define OPENSSL_NO_DTLS */ -/* #define OPENSSL_NO_DTLS1 */ -/* #define OPENSSL_NO_DTLS1_2 */ +#define OPENSSL_NO_DTLS1 +#ifndef LIBRESSL_HAS_DTLS1_2 +#define OPENSSL_NO_DTLS1_2 +#endif /* #define OPENSSL_NO_DTLS1_2_METHOD */ /* #define OPENSSL_NO_DTLS1_METHOD */ #define OPENSSL_NO_DYNAMIC_ENGINE -- 2.20.1