From eb1f34345d45ef5b5aa89fbbd6ddd691fb75f12e Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 2 Oct 2022 16:40:56 +0000 Subject: Dynamically link libssl for QUIC regress. Now that the QUIC API is public, we can stop linking this statically. --- src/regress/lib/libssl/quic/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 @@ -# $OpenBSD: Makefile,v 1.1 2022/08/27 09:16:29 jsing Exp $ +# $OpenBSD: Makefile,v 1.2 2022/10/02 16:40:56 jsing Exp $ PROG= quictest -LDADD= ${SSL_INT} -lcrypto +LDADD= -lssl -lcrypto DPADD= ${LIBSSL} ${LIBCRYPTO} WARNINGS= Yes -- cgit v1.2.3-55-g6feb