diff options
author | sashan <anedvedicky@gmail.com> | 2024-05-16 06:33:55 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-05-28 08:56:13 +0200 |
commit | da9342ed5edabfbbd658e35f6bad1831682cc7e7 (patch) | |
tree | 00cf057471eefa0ba61357afc1206e3d19e36ec6 /build.info | |
parent | speed: Fix regression of measuring shake with -evp (diff) | |
download | openssl-da9342ed5edabfbbd658e35f6bad1831682cc7e7.tar.xz openssl-da9342ed5edabfbbd658e35f6bad1831682cc7e7.zip |
Move stack of compression methods from libssl to OSSL_LIB_CTX
The compression methods are now a global variable in libssl.
This change moves it into OSSL library context.
It is necessary to eliminate atexit call from libssl.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24414)
Diffstat (limited to 'build.info')
-rw-r--r-- | build.info | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build.info b/build.info index 51d9184045..c8bcb74bda 100644 --- a/build.info +++ b/build.info @@ -26,6 +26,7 @@ DEPEND[]=include/openssl/asn1.h \ include/openssl/cmp.h \ include/openssl/cms.h \ include/openssl/conf.h \ + include/openssl/comp.h \ include/openssl/core_names.h \ include/openssl/crmf.h \ include/openssl/crypto.h \ @@ -55,6 +56,7 @@ GENERATE[include/openssl/bio.h]=include/openssl/bio.h.in GENERATE[include/openssl/cmp.h]=include/openssl/cmp.h.in GENERATE[include/openssl/cms.h]=include/openssl/cms.h.in GENERATE[include/openssl/conf.h]=include/openssl/conf.h.in +GENERATE[include/openssl/comp.h]=include/openssl/comp.h.in # include/openssl/configuration.h is generated by configdata.pm # We still need this information for the FIPS module checksum, but the attribute # 'skip' ensures that nothing is actually done with it. |