From 78d30bd5827eeaffdfb5906a4afedb48868aceac Mon Sep 17 00:00:00 2001 From: ng0 Date: Thu, 25 Jul 2019 17:51:43 +0000 Subject: attempt fix --- src/microhttpd/mhd_send.c | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) (limited to 'src/microhttpd/mhd_send.c') diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c index 354b9349..284def22 100644 --- a/src/microhttpd/mhd_send.c +++ b/src/microhttpd/mhd_send.c @@ -678,31 +678,7 @@ static int freebsd_sendfile_flags_; */ static int freebsd_sendfile_flags_thd_p_c_; #endif /* SF_FLAGS */ -/** - * Initialises static variables - */ -void -MHD_conn_init_static_ (void) -{ -/* FreeBSD 11 and later allow to specify read-ahead size - * and handles SF_NODISKIO differently. - * SF_FLAGS defined only on FreeBSD 11 and later. */ -#ifdef SF_FLAGS - long sys_page_size = sysconf (_SC_PAGESIZE); - if (0 > sys_page_size) - { /* Failed to get page size. */ - freebsd_sendfile_flags_ = SF_NODISKIO; - freebsd_sendfile_flags_thd_p_c_ = SF_NODISKIO; - } - else - { - freebsd_sendfile_flags_ = - SF_FLAGS((uint16_t)(MHD_SENFILE_CHUNK_ / sys_page_size), SF_NODISKIO); - freebsd_sendfile_flags_thd_p_c_ = - SF_FLAGS((uint16_t)(MHD_SENFILE_CHUNK_THR_P_C_ / sys_page_size), SF_NODISKIO); - } -#endif /* SF_FLAGS */ -} + #endif /* HAVE_FREEBSD_SENDFILE */ #if defined(_MHD_HAVE_SENDFILE) -- cgit v1.2.3