diff options
author | jsing <> | 2022-10-02 16:40:56 +0000 |
---|---|---|
committer | jsing <> | 2022-10-02 16:40:56 +0000 |
commit | 26867e2c9c386b2897b23f5fdf91039e7c6680b6 (patch) | |
tree | ea84af2ac4ebcc608fd4577a39daf3c7313ed74a /src | |
parent | 888117cda0dc2c3432db6a033b48f140389c0a1b (diff) | |
download | openbsd-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/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 |