diff options
author | fhajny <fhajny> | 2012-03-13 10:00:14 +0000 |
---|---|---|
committer | fhajny <fhajny> | 2012-03-13 10:00:14 +0000 |
commit | 4e90fa0656c5b59861f5e08b47d14ee33eaf84ed (patch) | |
tree | 1192c8a80e6c1ffe803d8e9f91d789eafd20ec5a /www/nginx | |
parent | c0fb8fa45eceeeb17233ecc7b75eff435f5f79b5 (diff) | |
download | pkgsrc-4e90fa0656c5b59861f5e08b47d14ee33eaf84ed.tar.gz |
Add an option to generate stats via http_stub_status_module
Diffstat (limited to 'www/nginx')
-rw-r--r-- | www/nginx/options.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www/nginx/options.mk b/www/nginx/options.mk index 22411dac153..81629b554b1 100644 --- a/www/nginx/options.mk +++ b/www/nginx/options.mk @@ -1,8 +1,9 @@ -# $NetBSD: options.mk,v 1.12 2011/12/13 22:00:47 joerg Exp $ +# $NetBSD: options.mk,v 1.13 2012/03/13 10:00:14 fhajny Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.nginx PKG_SUPPORTED_OPTIONS= dav flv gtools inet6 mail-proxy memcache pcre \ - push realip ssl sub uwsgi image-filter upload debug + push realip ssl sub uwsgi image-filter upload debug \ + status PKG_SUGGESTED_OPTIONS= pcre ssl PLIST_VARS+= uwsgi @@ -92,3 +93,7 @@ SITES.${NGX_UPLOAD_DISTFILE}= http://www.grid.net.ru/nginx/download/ .include "../../graphics/gd/buildlink3.mk" CONFIGURE_ARGS+= --with-http_image_filter_module .endif + +.if !empty(PKG_OPTIONS:Mstatus) +CONFIGURE_ARGS+= --with-http_stub_status_module +.endif |