summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2020-05-08 22:00:43 +0200
committerLeah Neukirchen <leah@vuxu.org>2020-05-08 22:00:43 +0200
commit0d5dd415c34acbe6e154f3b0140c5a98e2892f34 (patch)
tree608c6e864c6ab889244ffa05ec4eb9b997f5ae5d /Makefile
parentc724fd1ba192189f96ea8990f3792bd11a25cbd2 (diff)
downloadhittpd-0d5dd415c34acbe6e154f3b0140c5a98e2892f34.tar.gz
hittpd-0d5dd415c34acbe6e154f3b0140c5a98e2892f34.tar.xz
hittpd-0d5dd415c34acbe6e154f3b0140c5a98e2892f34.zip
simply enable sendfile on linux
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fbe0a26..f2a101e 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ ALL=hittpd
 OBJ=hittpd.o http-parser/http_parser.o
 
 CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings
-CPPFLAGS=-DUSE_SENDFILE -Ihttp-parser
+CPPFLAGS=-Ihttp-parser
 
 DESTDIR=
 PREFIX=/usr/local