From: jsing Date: Fri, 15 Oct 2021 16:49:12 +0000 (+0000) Subject: Pull in ssl_locl.h so that we can keep reaching into libssl internals. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b3b86eec72513b1e2fdd728d7647fbdf1eb8d35e;p=openbsd Pull in ssl_locl.h so that we can keep reaching into libssl internals. --- diff --git a/regress/lib/libssl/ssl/Makefile b/regress/lib/libssl/ssl/Makefile index 581341c3105..582dd1c8af7 100644 --- a/regress/lib/libssl/ssl/Makefile +++ b/regress/lib/libssl/ssl/Makefile @@ -1,10 +1,11 @@ -# $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:53 jsing Exp $ +# $OpenBSD: Makefile,v 1.4 2021/10/15 16:49:12 jsing Exp $ PROG= ssltest LDADD= -lcrypto -lssl DPADD= ${LIBCRYPTO} ${LIBSSL} WARNINGS= Yes CFLAGS+= -DLIBRESSL_INTERNAL -Werror +CFLAGS+= -I${.CURDIR}/../../../../lib/libssl REGRESS_TARGETS=regress-ssltest diff --git a/regress/lib/libssl/ssl/ssltest.c b/regress/lib/libssl/ssl/ssltest.c index ba62bb6e708..f5203b07139 100644 --- a/regress/lib/libssl/ssl/ssltest.c +++ b/regress/lib/libssl/ssl/ssltest.c @@ -176,6 +176,8 @@ #include #include +#include "ssl_locl.h" + #define TEST_SERVER_CERT "../apps/server.pem" #define TEST_CLIENT_CERT "../apps/client.pem"