summaryrefslogtreecommitdiffstats
path: root/ssl/Makefile.in
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-02-09 11:26:14 +0000
committerMatt Caswell <matt@openssl.org>2016-02-09 15:11:38 +0000
commitb184e3ef73200cb3b7914a603b43a5b8a074c85f (patch)
tree95533e5aa6e9a0ae6e17605fc76441324cdc8ee9 /ssl/Makefile.in
parentbc66265da8f4c8830cfaf229c985bc391075aa9d (diff)
Provide framework for auto initialise/deinitialise of the library
This commit provides the basis and core code for an auto initialisation and deinitialisation framework for libcrypto and libssl. The intention is to remove the need (in many circumstances) to call explicit initialise and deinitialise functions. Explicit initialisation will still be an option, and if non-default initialisation is needed then it will be required. Similarly for de-initialisation (although this will be a lot easier since it will bring all de-initialisation into a single function). Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/Makefile.in')
-rw-r--r--ssl/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/Makefile.in b/ssl/Makefile.in
index 586d287944..f9beee4c15 100644
--- a/ssl/Makefile.in
+++ b/ssl/Makefile.in
@@ -25,7 +25,7 @@ LIBSRC= \
statem/statem_dtls.c d1_srtp.c \
ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \
ssl_ciph.c ssl_stat.c ssl_rsa.c \
- ssl_asn1.c ssl_txt.c ssl_algs.c ssl_conf.c ssl_mcnf.c \
+ ssl_asn1.c ssl_txt.c ssl_algs.c ssl_init.c ssl_conf.c ssl_mcnf.c \
bio_ssl.c ssl_err.c t1_reneg.c tls_srp.c t1_trce.c ssl_utst.c \
record/ssl3_buffer.c record/ssl3_record.c record/dtls1_bitmap.c \
statem/statem.c
@@ -38,7 +38,7 @@ LIBOBJ= \
statem/statem_dtls.o d1_srtp.o\
ssl_lib.o ssl_err2.o ssl_cert.o ssl_sess.o \
ssl_ciph.o ssl_stat.o ssl_rsa.o \
- ssl_asn1.o ssl_txt.o ssl_algs.o ssl_conf.o ssl_mcnf.o \
+ ssl_asn1.o ssl_txt.o ssl_algs.o ssl_init.o ssl_conf.o ssl_mcnf.o \
bio_ssl.o ssl_err.o t1_reneg.o tls_srp.o t1_trce.o ssl_utst.o \
record/ssl3_buffer.o record/ssl3_record.o record/dtls1_bitmap.o \
statem/statem.o