diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-02-23 10:39:11 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-02-23 10:39:11 +0000 |
commit | 7eea9316e9faac5acae9fbb25cdd9821d53bf494 (patch) | |
tree | 4dcbccc293b3a924296a91b88013620daec195ae /usr.sbin | |
parent | 1a1cb0c5c9a4e7284b1c2de84fc76a9c9a3a9ed0 (diff) |
Add -O0 to the DEBUG example. Figured out while analysing core dumps
with halex@. No binary change - it is commented out.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/httpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/Makefile b/usr.sbin/httpd/Makefile index 441e02c1350..885ad42c3b8 100644 --- a/usr.sbin/httpd/Makefile +++ b/usr.sbin/httpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.26 2014/10/31 13:49:52 jsing Exp $ +# $OpenBSD: Makefile,v 1.27 2015/02/23 10:39:10 reyk Exp $ PROG= httpd SRCS= parse.y @@ -8,7 +8,7 @@ MAN= httpd.8 httpd.conf.5 LDADD= -levent -ltls -lssl -lcrypto -lutil DPADD= ${LIBEVENT} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL} -#DEBUG= -g -DDEBUG=3 +#DEBUG= -g -DDEBUG=3 -O0 CFLAGS+= -Wall -I${.CURDIR} CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations |