diff options
author | imil <imil@pkgsrc.org> | 2013-04-19 07:25:18 +0000 |
---|---|---|
committer | imil <imil@pkgsrc.org> | 2013-04-19 07:25:18 +0000 |
commit | ee5e3c01cb79213eac53bfd0f4ffc07e0aa14e1e (patch) | |
tree | 05391032e04c4dcbdab24e8b35a4c395439b64ac /www | |
parent | 6e9f13eab0467ae049155cef71a4b4bd1966c626 (diff) | |
download | pkgsrc-ee5e3c01cb79213eac53bfd0f4ffc07e0aa14e1e.tar.gz |
Added SPDY option to options.mk
Diffstat (limited to 'www')
-rw-r--r-- | www/nginx/options.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/www/nginx/options.mk b/www/nginx/options.mk index 31a5fd83079..5ba1b2e0af3 100644 --- a/www/nginx/options.mk +++ b/www/nginx/options.mk @@ -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 |