pkgsrc/www/bozohttpd/options.mk
mrg 346d3eaf38 update to bozohttpd 20140102. changes include:
o  update a few content types
        o  add support for directly calling lua scripts to handle
           processes, from mbalmer@netbsd.org
        o  properly escape generated HTML
        o  add authentication for redirections, from martin@netbsd.org
        o  handle chained ssl certifications, from elric@netbsd.org
        o  add basic support for gzipped files, from elric@netbsd.org
        o  properly escape generated URIs

XXX: could integrate this with lua, but left undone for now.
2014-01-02 09:02:22 +00:00

17 lines
345 B
Makefile

# $NetBSD: options.mk,v 1.3 2014/01/02 09:02:22 mrg Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.bozohttpd
PKG_SUPPORTED_OPTIONS= bozohttpd-do-htpasswd
.include "../../mk/bsd.options.mk"
###
### Support Apache's .htpasswd files.
###
.if !empty(PKG_OPTIONS:Mbozohttpd-do-htpasswd)
CPPFLAGS+= -DDO_HTPASSWD
.endif
###
### Support for lua -- missing
###