aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index a6c482f..63d50f4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
-# $OpenBSD: Makefile,v 1.20 2014/07/12 23:34:54 reyk Exp $
+# $OpenBSD: Makefile,v 1.25 2014/08/04 17:38:12 reyk Exp $
PROG= httpd
SRCS= parse.y
-SRCS+= config.c control.c httpd.c log.c proc.c
-SRCS+= server.c server_http.c server_file.c
+SRCS+= config.c control.c httpd.c log.c logger.c proc.c
+SRCS+= server.c server_http.c server_file.c server_fcgi.c
MAN= httpd.8 httpd.conf.5
-LDADD= -levent -lssl -lcrypto -lutil
-DPADD= ${LIBEVENT} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL}
+LDADD= -levent -lressl -lssl -lcrypto -lutil
+DPADD= ${LIBEVENT} ${LIBRESSL} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL}
#DEBUG= -g -DDEBUG=3
-CFLAGS+= -Wall -I${.CURDIR} -Werror
+CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith