From 52b053537db3ef83c8f1afb91015f584c42b118a Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 15 Mar 2024 10:08:57 +1100 Subject: [PATCH] Add OpenSSL libraries and flags to proxystream_test --- tests/isc/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/isc/Makefile.am b/tests/isc/Makefile.am index 5cdd915aeb..e813212704 100644 --- a/tests/isc/Makefile.am +++ b/tests/isc/Makefile.am @@ -115,10 +115,12 @@ proxyheader_test_SOURCES = \ proxyheader_test_data.h proxystream_test_CPPFLAGS = \ - $(AM_CPPFLAGS) + $(AM_CPPFLAGS) \ + $(OPENSSL_CFLAGS) proxystream_test_LDADD = \ - $(LDADD) + $(LDADD) \ + $(OPENSSL_LIBS) proxystream_test_SOURCES = \ proxystream_test.c \