diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2014-12-05 20:02:42 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2014-12-05 20:02:42 +0000 |
commit | e71a0fbc151ce6b19bcc856dc32efd2820e30e1b (patch) | |
tree | 2bd4098fd944266fcb9911beb02b8dd8e46c1aaf /usr.sbin | |
parent | 049a9047770c49ab7e1af410b2e2d39000b164d4 (diff) |
enable warnings
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/slowcgi/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/slowcgi/Makefile b/usr.sbin/slowcgi/Makefile index e09a600b74a..f4b70254a97 100644 --- a/usr.sbin/slowcgi/Makefile +++ b/usr.sbin/slowcgi/Makefile @@ -1,7 +1,12 @@ -# $OpenBSD: Makefile,v 1.1 2013/05/23 12:03:24 florian Exp $ +# $OpenBSD: Makefile,v 1.2 2014/12/05 20:02:41 florian Exp $ PROG= slowcgi SRCS= slowcgi.c +CFLAGS+= -Wall +CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes +CFLAGS+= -Wmissing-declarations +CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual +CFLAGS+= -Wsign-compare LDADD= -levent DPADD= ${LIBEVENT} MAN= slowcgi.8 |