summaryrefslogtreecommitdiffstats
path: root/ssl/Makefile.in
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2016-01-22 14:54:01 -0500
committerRich Salz <rsalz@openssl.org>2016-01-24 18:25:04 -0500
commitcf2cede4a75f5e269f791bf1dcc029bba8c1f689 (patch)
tree093d88fcb4a288e899114adf1ecd2e208ac94758 /ssl/Makefile.in
parent68ed0b2480023424f280e98cda7199d913f3d7cc (diff)
Move pqueue into ssl
This is an internal facility, never documented, not for public consumption. Move it into ssl (where it's only used for DTLS). I also made the typedef's for pqueue and pitem follow our style: they name structures, not pointers. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/Makefile.in')
-rw-r--r--ssl/Makefile.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/Makefile.in b/ssl/Makefile.in
index fd0ab76d0c..b3860d3ca4 100644
--- a/ssl/Makefile.in
+++ b/ssl/Makefile.in
@@ -17,6 +17,7 @@ GENERAL=Makefile README ssl-lib.com install.com
LIB=$(TOP)/libssl.a
SHARED_LIB= libssl$(SHLIB_EXT)
LIBSRC= \
+ pqueue.c \
statem/statem_srvr.c statem/statem_clnt.c s3_lib.c s3_enc.c record/rec_layer_s3.c \
statem/statem_lib.c s3_cbc.c s3_msg.c \
methods.c t1_lib.c t1_enc.c t1_ext.c \
@@ -29,6 +30,7 @@ LIBSRC= \
record/ssl3_buffer.c record/ssl3_record.c record/dtls1_bitmap.c \
statem/statem.c
LIBOBJ= \
+ pqueue.o \
statem/statem_srvr.o statem/statem_clnt.o s3_lib.o s3_enc.o record/rec_layer_s3.o \
statem/statem_lib.o s3_cbc.o s3_msg.o \
methods.o t1_lib.o t1_enc.o t1_ext.o \