summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/pqueue/Makefile
diff options
context:
space:
mode:
authormiod <>2014-05-12 19:14:14 +0000
committermiod <>2014-05-12 19:14:14 +0000
commitd65c39e2c5f99603b15513e73dbc0dc5ca5b73fd (patch)
treef99b0c7d57d24dcda17ac624bffd72e594930568 /src/regress/lib/libcrypto/pqueue/Makefile
parent184c91d9e726029e0dd6782d9ec4e2e1a7f7fc70 (diff)
downloadopenbsd-d65c39e2c5f99603b15513e73dbc0dc5ca5b73fd.tar.gz
openbsd-d65c39e2c5f99603b15513e73dbc0dc5ca5b73fd.tar.bz2
openbsd-d65c39e2c5f99603b15513e73dbc0dc5ca5b73fd.zip
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.
Diffstat (limited to 'src/regress/lib/libcrypto/pqueue/Makefile')
-rw-r--r--src/regress/lib/libcrypto/pqueue/Makefile8
1 files changed, 3 insertions, 5 deletions
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 @@
1# $OpenBSD: Makefile,v 1.2 2014/05/06 20:40:26 miod Exp $ 1# $OpenBSD: Makefile,v 1.3 2014/05/12 19:14:14 miod Exp $
2 2
3PROG= pq_test 3PROG= pq_test
4CRYPTO= ${.CURDIR}/../../../../lib/libssl/src/crypto
5CFLAGS+= -I${CRYPTO}/pqueue
6 4
7LDADD= -lcrypto 5LDADD= -lssl -lcrypto
8DPADD= ${LIBCRYPTO} 6DPADD= ${LIBSSL} ${LIBCRYPTO}
9 7
10REGRESS_TARGETS= regress-pq_test 8REGRESS_TARGETS= regress-pq_test
11 9