summaryrefslogtreecommitdiffstats
path: root/ssl/build.info
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-06-07 16:32:49 +0100
committerPauli <paul.dale@oracle.com>2019-07-12 06:26:46 +1000
commit0d345f0e10b14392925479fc61b6c9072a9605a3 (patch)
treeb9de0309ec60a7f1d6cb4fe675c2b59a4e58bf22 /ssl/build.info
parent54846b7c6ef5718f507def9d192628133f97fe20 (diff)
Make the PACKET/WPACKET code available to both libcrypto and libssl
Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9111)
Diffstat (limited to 'ssl/build.info')
-rw-r--r--ssl/build.info6
1 files changed, 5 insertions, 1 deletions
diff --git a/ssl/build.info b/ssl/build.info
index bb2f1deb53..152810ba25 100644
--- a/ssl/build.info
+++ b/ssl/build.info
@@ -1,6 +1,10 @@
LIBS=../libssl
+#TODO: For now we just include the libcrypto packet.c in libssl as well. We
+# could either continue to do it like this, or export all the WPACKET
+# symbols so that libssl can use them like any other. Probably would do
+# this privately so it does not become part of the public API.
SOURCE[../libssl]=\
- pqueue.c packet.c \
+ pqueue.c ../crypto/packet.c \
statem/statem_srvr.c statem/statem_clnt.c s3_lib.c s3_enc.c record/rec_layer_s3.c \
statem/statem_lib.c statem/extensions.c statem/extensions_srvr.c \
statem/extensions_clnt.c statem/extensions_cust.c s3_cbc.c s3_msg.c \