From c9ce46ce0b1f508a427bc53e485f6d117423f927 Mon Sep 17 00:00:00 2001 From: jsing Date: Sun, 2 Oct 2022 16:40:56 +0000 Subject: [PATCH] Dynamically link libssl for QUIC regress. Now that the QUIC API is public, we can stop linking this statically. --- regress/lib/libssl/quic/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regress/lib/libssl/quic/Makefile b/regress/lib/libssl/quic/Makefile index 72f1a048497..a348b2df471 100644 --- a/regress/lib/libssl/quic/Makefile +++ b/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 -- 2.20.1