diff options
author | tb <> | 2023-07-28 09:46:36 +0000 |
---|---|---|
committer | tb <> | 2023-07-28 09:46:36 +0000 |
commit | 681b4eb7a5896143c26eac201c041f6f22357b18 (patch) | |
tree | 1aca488e2c506f6251ea781ae63f28ddea06a4b2 /src/lib/libcrypto/opensslfeatures.h | |
parent | 52f7bdc5fb75e3796bdf3fa19043d8ee5213cf45 (diff) | |
download | openbsd-681b4eb7a5896143c26eac201c041f6f22357b18.tar.gz openbsd-681b4eb7a5896143c26eac201c041f6f22357b18.tar.bz2 openbsd-681b4eb7a5896143c26eac201c041f6f22357b18.zip |
Drop DSO and define OPENSSL_NO_DSO
DSO and in particular dlopen() was used for dynamic engines, which we
removed a long time ago and for dynamic conf modules, which we removed
only very recently. Now remove this dangerous interface.
ok jsing
Diffstat (limited to 'src/lib/libcrypto/opensslfeatures.h')
-rw-r--r-- | src/lib/libcrypto/opensslfeatures.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/opensslfeatures.h b/src/lib/libcrypto/opensslfeatures.h index 1e087f9c23..7b8d40e688 100644 --- a/src/lib/libcrypto/opensslfeatures.h +++ b/src/lib/libcrypto/opensslfeatures.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: opensslfeatures.h,v 1.39 2023/07/06 06:38:01 beck Exp $ */ | 1 | /* $OpenBSD: opensslfeatures.h,v 1.40 2023/07/28 09:46:36 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Feature flags for LibreSSL... so you can actually tell when things | 3 | * Feature flags for LibreSSL... so you can actually tell when things |
4 | * are enabled, rather than not being able to tell when things are | 4 | * are enabled, rather than not being able to tell when things are |
@@ -51,7 +51,7 @@ | |||
51 | /* #define OPENSSL_NO_DGRAM */ | 51 | /* #define OPENSSL_NO_DGRAM */ |
52 | /* #define OPENSSL_NO_DH */ | 52 | /* #define OPENSSL_NO_DH */ |
53 | /* #define OPENSSL_NO_DSA */ | 53 | /* #define OPENSSL_NO_DSA */ |
54 | /* #define OPENSSL_NO_DSO */ | 54 | #define OPENSSL_NO_DSO |
55 | /* #define OPENSSL_NO_DTLS */ | 55 | /* #define OPENSSL_NO_DTLS */ |
56 | #define OPENSSL_NO_DTLS1 | 56 | #define OPENSSL_NO_DTLS1 |
57 | #ifndef LIBRESSL_HAS_DTLS1_2 | 57 | #ifndef LIBRESSL_HAS_DTLS1_2 |