From bb1f78b0976389edbc302ea662b80029cbf5ce5a Mon Sep 17 00:00:00 2001 From: miod <> Date: Mon, 12 May 2014 19:14:14 +0000 Subject: Move the `pqueue' part of libcrypto, which is a glorified sorted linked list of 64-bit data, and only used by DTLS, to libssl where it belongs. Remove pqueue_print() which is a debugging interface and serves no useful purpose, except for the regress test, which grows its own pqueue_print() routine. Bump libcrypto major and libssl minor. WARNING: do not update your tree right now, more changes are coming, which will ride the libcrypto major bump. --- src/regress/lib/libcrypto/pqueue/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/regress/lib/libcrypto/pqueue/Makefile') diff --git a/src/regress/lib/libcrypto/pqueue/Makefile b/src/regress/lib/libcrypto/pqueue/Makefile index b817169a7f..8b2d27e052 100644 --- a/src/regress/lib/libcrypto/pqueue/Makefile +++ b/src/regress/lib/libcrypto/pqueue/Makefile @@ -1,11 +1,9 @@ -# $OpenBSD: Makefile,v 1.2 2014/05/06 20:40:26 miod Exp $ +# $OpenBSD: Makefile,v 1.3 2014/05/12 19:14:14 miod Exp $ PROG= pq_test -CRYPTO= ${.CURDIR}/../../../../lib/libssl/src/crypto -CFLAGS+= -I${CRYPTO}/pqueue -LDADD= -lcrypto -DPADD= ${LIBCRYPTO} +LDADD= -lssl -lcrypto +DPADD= ${LIBSSL} ${LIBCRYPTO} REGRESS_TARGETS= regress-pq_test -- cgit v1.2.3-55-g6feb