mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
c0c4e6ba0a
PR #18345 added some code for an event queue. It also added a test for it. Unfortunately this event queue code has never been used for anything. Additionally the test was never integrated into a test recipe, so it never actually gets invoked via "make test". This makes the code entirely dead, unnecessarily bloats the size of libssl and causes a decrease in our testing code coverage value. We remove the dead code. Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/25100)
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
SUBDIRS=record rio
|
|
|
|
LIBS=../libssl
|
|
|
|
IF[{- !$disabled{quic} -}]
|
|
SUBDIRS=quic
|
|
ENDIF
|
|
|
|
SOURCE[../libssl]=\
|
|
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 \
|
|
methods.c t1_lib.c t1_enc.c tls13_enc.c \
|
|
d1_lib.c d1_msg.c \
|
|
statem/statem_dtls.c d1_srtp.c \
|
|
ssl_lib.c ssl_cert.c ssl_sess.c \
|
|
ssl_ciph.c ssl_stat.c ssl_rsa.c \
|
|
ssl_asn1.c ssl_txt.c ssl_init.c ssl_conf.c ssl_mcnf.c \
|
|
bio_ssl.c ssl_err.c ssl_err_legacy.c tls_srp.c t1_trce.c ssl_utst.c \
|
|
statem/statem.c \
|
|
ssl_cert_comp.c \
|
|
tls_depr.c
|
|
|
|
# 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 ../crypto/time.c
|
|
|
|
IF[{- !$disabled{'deprecated-3.0'} -}]
|
|
SOURCE[../libssl]=ssl_rsa_legacy.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{quic} -}]
|
|
SOURCE[../libssl]=priority_queue.c
|
|
ENDIF
|