From 7ffc617ae89fe08b8a9a17bed41ef8941b8151fb Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Mon, 17 Aug 2020 12:28:48 +0300 Subject: Supporting platforms without sendfile() implementation. This is a quick and dirty sendfile() replacement. This closes #452 PR on GitHub. --- auto/sendfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'auto') diff --git a/auto/sendfile b/auto/sendfile index a065f7b6..1c20db06 100644 --- a/auto/sendfile +++ b/auto/sendfile @@ -84,10 +84,8 @@ fi if [ $nxt_found = no ]; then - $echo - $echo "$0: error: no supported sendfile() found." - $echo - exit 1; + # No supported sendfile() found. Using our replacement. + nxt_found=yes fi -- cgit