From: Azat Khuzhin Date: Tue, 20 Nov 2018 03:20:51 +0000 (+0300) Subject: regress_http: fix compilation with !EVENT__HAVE_OPENSSL X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3036f15a176b038f42d3896463c39058c6bac943;p=libevent regress_http: fix compilation with !EVENT__HAVE_OPENSSL Fixes: 811c63f7 ("regress: test for HTTP/HTTPS with IOCP enabled") --- 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 };