From: jsing Date: Sun, 2 Oct 2022 16:40:56 +0000 (+0000) Subject: Dynamically link libssl for QUIC regress. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c9ce46ce0b1f508a427bc53e485f6d117423f927;p=openbsd Dynamically link libssl for QUIC regress. Now that the QUIC API is public, we can stop linking this statically. --- 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