diff options
author | Pauli <pauli@openssl.org> | 2022-08-29 06:52:44 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2022-09-13 13:13:22 +0200 |
commit | 02d0f87a8ba143eaeaee3334a2f63543b10148a9 (patch) | |
tree | c6ca88a3790d90db7dcf13c65032e0fe4f54cfb2 /ssl/build.info | |
parent | Avoid struct timeval in QUIC code (diff) | |
download | openssl-02d0f87a8ba143eaeaee3334a2f63543b10148a9.tar.xz openssl-02d0f87a8ba143eaeaee3334a2f63543b10148a9.zip |
time: move OSSL_TIME to libcrypto
Keep building it for libssl without exposing any symbols.
Reviewed-by: Todd Short <todd.short@me.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19082)
Diffstat (limited to 'ssl/build.info')
-rw-r--r-- | ssl/build.info | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ssl/build.info b/ssl/build.info index ea35779f07..81631c7497 100644 --- a/ssl/build.info +++ b/ssl/build.info @@ -7,7 +7,7 @@ IF[{- !$disabled{quic} -}] ENDIF SOURCE[../libssl]=\ - pqueue.c time.c \ + pqueue.c \ statem/statem_srvr.c statem/statem_clnt.c s3_lib.c s3_enc.c \ statem/statem_lib.c statem/extensions.c statem/extensions_srvr.c \ statem/extensions_clnt.c statem/extensions_cust.c s3_msg.c \ @@ -23,7 +23,8 @@ SOURCE[../libssl]=\ # For shared builds we need to include the libcrypto packet.c and quic_vlint.c # in libssl as well. -SHARED_SOURCE[../libssl]=../crypto/packet.c ../crypto/quic_vlint.c +SHARED_SOURCE[../libssl]=\ + ../crypto/packet.c ../crypto/quic_vlint.c ../crypto/time.c IF[{- !$disabled{'deprecated-3.0'} -}] SOURCE[../libssl]=ssl_rsa_legacy.c |