diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-18 08:33:44 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-18 08:33:44 +0000 |
commit | bb3ef9f7c8d0cbbcd44d19b91dff690afd317c7e (patch) | |
tree | e06c08f96036b266af21a9e653df0a85dadf33ad /lib/libcrypto/ui | |
parent | 2c87517126efcb8a18496889d798975bf4c14aec (diff) |
Move some includes out of OPENSSL_NO_DEPRECATED
Some headers were included conditionally on OPENSSL_NO_DEPRECATED in hopes
that eventually the mess of everything includes everything will magically
resolve itself. Of course everyone would end up building openssl with
OPENSSL_NO_DEPRECATED over time... Right.
Surprisingly, the ecosystem has come to rely on these implicit inclusions,
so about two dozen ports would fail to build because of this. Patching this
would be easy but really not worth the effort.
ok jsing
Diffstat (limited to 'lib/libcrypto/ui')
-rw-r--r-- | lib/libcrypto/ui/ui.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/ui/ui.h b/lib/libcrypto/ui/ui.h index 79d807f03c9..c6884313941 100644 --- a/lib/libcrypto/ui/ui.h +++ b/lib/libcrypto/ui/ui.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ui.h,v 1.17 2023/03/10 16:41:32 tb Exp $ */ +/* $OpenBSD: ui.h,v 1.18 2023/04/18 08:33:43 tb Exp $ */ /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL * project 2001. */ @@ -61,9 +61,7 @@ #include <openssl/opensslconf.h> -#ifndef OPENSSL_NO_DEPRECATED #include <openssl/crypto.h> -#endif #include <openssl/safestack.h> #include <openssl/ossl_typ.h> |