summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-07-27 23:52:05 +0000
committerderaadt <deraadt@openbsd.org>2014-07-27 23:52:05 +0000
commita9d9b0f4d4d27aae37c6d7907174b377087a0cc2 (patch)
treeffacc649f3ace820f5a31e3c2bca870276f85919
parentLink dependencies on libssl and libcrypto were missing. (diff)
downloadwireguard-openbsd-a9d9b0f4d4d27aae37c6d7907174b377087a0cc2.tar.xz
wireguard-openbsd-a9d9b0f4d4d27aae37c6d7907174b377087a0cc2.zip
turn of -Werror, unless you are sure both gcc work...
-rw-r--r--usr.sbin/httpd/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/Makefile b/usr.sbin/httpd/Makefile
index a6c482fd2ee..aca6355bcd3 100644
--- a/usr.sbin/httpd/Makefile
+++ b/usr.sbin/httpd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.20 2014/07/12 23:34:54 reyk Exp $
+# $OpenBSD: Makefile,v 1.21 2014/07/27 23:52:05 deraadt Exp $
PROG= httpd
SRCS= parse.y
@@ -9,7 +9,7 @@ MAN= httpd.8 httpd.conf.5
LDADD= -levent -lssl -lcrypto -lutil
DPADD= ${LIBEVENT} ${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