diff options
author | jsing <> | 2022-10-02 16:40:56 +0000 |
---|---|---|
committer | jsing <> | 2022-10-02 16:40:56 +0000 |
commit | eb1f34345d45ef5b5aa89fbbd6ddd691fb75f12e (patch) | |
tree | ea84af2ac4ebcc608fd4577a39daf3c7313ed74a /src | |
parent | 4a69b2a0d348a1d8c5cb7cbf6b4214eaff61c9d7 (diff) | |
download | openbsd-eb1f34345d45ef5b5aa89fbbd6ddd691fb75f12e.tar.gz openbsd-eb1f34345d45ef5b5aa89fbbd6ddd691fb75f12e.tar.bz2 openbsd-eb1f34345d45ef5b5aa89fbbd6ddd691fb75f12e.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/Makefile | 4 |
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 | ||
3 | PROG= quictest | 3 | PROG= quictest |
4 | LDADD= ${SSL_INT} -lcrypto | 4 | LDADD= -lssl -lcrypto |
5 | DPADD= ${LIBSSL} ${LIBCRYPTO} | 5 | DPADD= ${LIBSSL} ${LIBCRYPTO} |
6 | 6 | ||
7 | WARNINGS= Yes | 7 | WARNINGS= Yes |