summaryrefslogtreecommitdiff
path: root/www/nginx/options.mk
diff options
context:
space:
mode:
authorjoerg <joerg>2010-01-23 16:32:11 +0000
committerjoerg <joerg>2010-01-23 16:32:11 +0000
commit42eea367c702755668f2d0105d26e63a6c27bfbb (patch)
treee610672a2a5e14fdb6899becefa72be076be633b /www/nginx/options.mk
parent5d398683de5f1444071e89017d723d451992fec8 (diff)
downloadpkgsrc-42eea367c702755668f2d0105d26e63a6c27bfbb.tar.gz
Update to nginx-0.8.32. Way too many changes to list after two years of
development. Based on wip/nginx.
Diffstat (limited to 'www/nginx/options.mk')
-rw-r--r--www/nginx/options.mk34
1 files changed, 32 insertions, 2 deletions
diff --git a/www/nginx/options.mk b/www/nginx/options.mk
index f4ebbbfc8df..4cb892a4cb5 100644
--- a/www/nginx/options.mk
+++ b/www/nginx/options.mk
@@ -1,7 +1,7 @@
-# $NetBSD: options.mk,v 1.1.1.1 2007/12/11 09:12:26 ghen Exp $
+# $NetBSD: options.mk,v 1.2 2010/01/23 16:32:11 joerg Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.nginx
-PKG_SUPPORTED_OPTIONS= ssl pcre
+PKG_SUPPORTED_OPTIONS= ssl pcre dav flv sub gtools mail-proxy memcache realip
PKG_SUGGESTED_OPTIONS= ssl pcre
.include "../../mk/bsd.options.mk"
@@ -9,6 +9,7 @@ PKG_SUGGESTED_OPTIONS= ssl pcre
.if !empty(PKG_OPTIONS:Mssl)
.include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-mail_ssl_module
+CONFIGURE_ARGS+= --with-http_ssl_module
.endif
.if !empty(PKG_OPTIONS:Mpcre)
@@ -17,3 +18,32 @@ CONFIGURE_ARGS+= --with-mail_ssl_module
CONFIGURE_ARGS+= --without-pcre
CONFIGURE_ARGS+= --without-http_rewrite_module
.endif
+
+.if !empty(PKG_OPTIONS:Mdav)
+CONFIGURE_ARGS+= --with-http_dav_module
+.endif
+
+.if !empty(PKG_OPTIONS:Mflv)
+CONFIGURE_ARGS+= --with-http_flv_module
+.endif
+
+.if !empty(PKG_OPTIONS:Msub)
+CONFIGURE_ARGS+= --with-http_sub_module
+.endif
+
+.if !empty(PKG_OPTIONS:Mgtools)
+CONFIGURE_ARGS+= --with-google_perftools_module
+.endif
+
+.if !empty(PKG_OPTIONS:Mmail-proxy)
+CONFIGURE_ARGS+= --with-mail
+.endif
+
+.if empty(PKG_OPTIONS:Mmemcache)
+CONFIGURE_ARGS+= --without-http_memcached_module
+.endif
+
+.if !empty(PKG_OPTIONS:Mrealip)
+CONFIGURE_ARGS+= --with-http_realip_module
+.endif
+