Added SPDY option to options.mk

This commit is contained in:
imil 2013-04-19 07:25:18 +00:00
parent 6e9f13eab0
commit ee5e3c01cb

View file

@ -1,9 +1,9 @@
# $NetBSD: options.mk,v 1.18 2013/01/29 12:36:40 imil Exp $
# $NetBSD: options.mk,v 1.19 2013/04/19 07:25:18 imil Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.nginx
PKG_SUPPORTED_OPTIONS= dav flv gtools inet6 mail-proxy memcache naxsi pcre \
push realip ssl sub uwsgi image-filter upload debug \
status nginx-autodetect-cflags
status nginx-autodetect-cflags spdy
PKG_SUGGESTED_OPTIONS= inet6 pcre ssl
PLIST_VARS+= naxsi uwsgi
@ -41,6 +41,10 @@ CONFIGURE_ARGS+= --with-http_dav_module
CONFIGURE_ARGS+= --with-http_flv_module
.endif
.if !empty(PKG_OPTIONS:Mspdy)
CONFIGURE_ARGS+= --with-http_spdy_module
.endif
.if !empty(PKG_OPTIONS:Msub)
CONFIGURE_ARGS+= --with-http_sub_module
.endif