From 3036f15a176b038f42d3896463c39058c6bac943 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Tue, 20 Nov 2018 06:20:51 +0300 Subject: [PATCH] regress_http: fix compilation with !EVENT__HAVE_OPENSSL Fixes: 811c63f7 ("regress: test for HTTP/HTTPS with IOCP enabled") --- test/regress_http.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/regress_http.c b/test/regress_http.c index cb749dd9..2efc0dbf 100644 --- a/test/regress_http.c +++ b/test/regress_http.c @@ -4970,6 +4970,8 @@ struct testcase_t http_testcases[] = { struct testcase_t http_iocp_testcases[] = { { "simple", http_simple_test, TT_FORK|TT_NEED_BASE|TT_ENABLE_IOCP, &basic_setup, NULL }, +#ifdef EVENT__HAVE_OPENSSL { "https_simple", https_simple_test, TT_FORK|TT_NEED_BASE|TT_ENABLE_IOCP, &basic_setup, NULL }, +#endif END_OF_TESTCASES }; -- 2.40.0