diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-02-11 13:13:05 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@ydb.tech> | 2024-02-14 14:25:53 +0000 |
commit | a42a78eb28fae449efc0badec59fff55046e67a8 (patch) | |
tree | e4e461ed2aff7cf90c5d29fe92045807803edb2d | |
parent | 055aa7619a1d02399db47a08b64da91eb41b5479 (diff) | |
download | ydb-a42a78eb28fae449efc0badec59fff55046e67a8.tar.gz |
Disable unused openssl/ includes
-rw-r--r-- | build/sysincl/unsorted.yml | 5 | ||||
-rw-r--r-- | contrib/libs/poco/Crypto/include/Poco/Crypto/OpenSSLInitializer.h | 2 | ||||
-rw-r--r-- | contrib/libs/poco/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h | 2 |
3 files changed, 2 insertions, 7 deletions
diff --git a/build/sysincl/unsorted.yml b/build/sysincl/unsorted.yml index 7f09f12499..cdf7578906 100644 --- a/build/sysincl/unsorted.yml +++ b/build/sysincl/unsorted.yml @@ -125,7 +125,6 @@ - nonblocking.h - note.h - opcdef.h - - openssl/applink.c - os2def.h - oslib/osfscontrol.h - paper.h @@ -432,7 +431,6 @@ - config_auto.h #endif #if defined(_TRASH_) && TODO - - openssl/fips.h - bits/c++config.h - bits/atomicity.h - gcrypt.h @@ -601,9 +599,6 @@ - lckdef.h - libdtdef.h - novsock2.h - - openssl/fips_rand.h - - openssl/fipssyms.h - - openssl/jpake.h - rld_interface.h - screen.h - sureware.h diff --git a/contrib/libs/poco/Crypto/include/Poco/Crypto/OpenSSLInitializer.h b/contrib/libs/poco/Crypto/include/Poco/Crypto/OpenSSLInitializer.h index 42c97ae465..1fbd7d3a2c 100644 --- a/contrib/libs/poco/Crypto/include/Poco/Crypto/OpenSSLInitializer.h +++ b/contrib/libs/poco/Crypto/include/Poco/Crypto/OpenSSLInitializer.h @@ -24,7 +24,7 @@ #include <openssl/crypto.h> #if defined(OPENSSL_FIPS) && OPENSSL_VERSION_NUMBER < 0x010001000L -#include <openssl/fips.h> +#error #include <openssl/fips.h> #endif diff --git a/contrib/libs/poco/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h b/contrib/libs/poco/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h index 6d0f469295..989515bf01 100644 --- a/contrib/libs/poco/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h +++ b/contrib/libs/poco/NetSSL_OpenSSL/include/Poco/Net/SSLManager.h @@ -30,7 +30,7 @@ #include "Poco/Mutex.h" #include <openssl/ssl.h> #if defined(OPENSSL_FIPS) && OPENSSL_VERSION_NUMBER < 0x010001000L -#include <openssl/fips.h> +#error #include <openssl/fips.h> #endif |