summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2022-10-02 16:40:56 +0000
committerjsing <>2022-10-02 16:40:56 +0000
commit26867e2c9c386b2897b23f5fdf91039e7c6680b6 (patch)
treeea84af2ac4ebcc608fd4577a39daf3c7313ed74a /src
parent888117cda0dc2c3432db6a033b48f140389c0a1b (diff)
downloadopenbsd-26867e2c9c386b2897b23f5fdf91039e7c6680b6.tar.gz
openbsd-26867e2c9c386b2897b23f5fdf91039e7c6680b6.tar.bz2
openbsd-26867e2c9c386b2897b23f5fdf91039e7c6680b6.zip
Dynamically link libssl for QUIC regress.
Now that the QUIC API is public, we can stop linking this statically.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libssl/quic/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/quic/Makefile b/src/regress/lib/libssl/quic/Makefile
index 72f1a04849..a348b2df47 100644
--- a/src/regress/lib/libssl/quic/Makefile
+++ b/src/regress/lib/libssl/quic/Makefile
@@ -1,7 +1,7 @@
1# $OpenBSD: Makefile,v 1.1 2022/08/27 09:16:29 jsing Exp $ 1# $OpenBSD: Makefile,v 1.2 2022/10/02 16:40:56 jsing Exp $
2 2
3PROG= quictest 3PROG= quictest
4LDADD= ${SSL_INT} -lcrypto 4LDADD= -lssl -lcrypto
5DPADD= ${LIBSSL} ${LIBCRYPTO} 5DPADD= ${LIBSSL} ${LIBCRYPTO}
6 6
7WARNINGS= Yes 7WARNINGS= Yes