aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReyk Floeter <reyk@esdenera.com>2015-02-24 08:57:19 +0100
committerReyk Floeter <reyk@esdenera.com>2015-02-24 08:57:19 +0100
commitbe1b7213b8e8d0de98b5a6445504a583e8c9a064 (patch)
treeb7360e53b785340929ce2e4722703fd97c121f26 /Makefile
parent8a2934048ba934e50ecc1736d554036fc39f6752 (diff)
downloadhttpd-be1b7213b8e8d0de98b5a6445504a583e8c9a064.tar.gz
httpd-be1b7213b8e8d0de98b5a6445504a583e8c9a064.zip
Allow to specify CGI variables as macros in redirection strings, eg.OPENBSD_5_7_BASE
block return 301 "http://www.example.com/$REQUEST_URI" OK tedu@ florian@ Add return_uri to serverconfig_reset() to avoid using garbage from the imsg buffer. Debugging & OK halex@ Change TLS_PROTOCOLS_DEFAULT to be TLSv1.2 only. Add a TLS_PROTOCOLS_ALL that includes all currently supported protocols (TLSv1.0, TLSv1.1 and TLSv1.2). Change all users of libtls to use TLS_PROTOCOLS_ALL so that they maintain existing behaviour. Discussed with tedu@ and reyk@.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 441e02c..885ad42 100644
--- a/Makefile
+++ b/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