aboutsummaryrefslogtreecommitdiffstats
path: root/www/nginx
diff options
context:
space:
mode:
authorosa <osa@FreeBSD.org>2007-11-13 15:54:35 +0800
committerosa <osa@FreeBSD.org>2007-11-13 15:54:35 +0800
commit32b4851ae128aaeed752e1c4d1f267605ee8f117 (patch)
treeed38c692101e2475d2787175b5adb811a782485b /www/nginx
parent82dc92e42816c6560b65a3eb6b469941f79667c3 (diff)
downloadfreebsd-ports-gnome-32b4851ae128aaeed752e1c4d1f267605ee8f117.tar.gz
freebsd-ports-gnome-32b4851ae128aaeed752e1c4d1f267605ee8f117.tar.zst
freebsd-ports-gnome-32b4851ae128aaeed752e1c4d1f267605ee8f117.zip
Update from 0.5.32 to latest bugfix release 0.5.33.
Add new MAIL_* knobs. Approved by: portmgr (erwin) <CommitLog> *) Change: now by default the "echo" SSI command uses entity encoding. *) Feature: the "encoding" parameter in the "echo" SSI command. *) Change: mail proxy was split on three modules: pop3, imap and smtp. *) Feature: the --without-mail_pop3_module, --without-mail_imap_module, and --without-mail_smtp_module configuration parameters. *) Feature: the "smtp_greeting_delay" and "smtp_client_buffer" directives of the ngx_mail_smtp_module. *) Feature: the "server_name" and "valid_referers" directives support regular expressions. *) Feature: the "server_name", "map", and "valid_referers" directives support the "www.example.*" wildcards. *) Bugfix: sub_filter did not work with empty substitution. *) Bugfix: in sub_filter parsing. *) Bugfix: a worker process may got caught in an endless loop, if the memcached was used. *) Bugfix: nginx supported low case only "close" and "keep-alive" values in the "Connection" request header line; bug appeared in 0.5.32. *) Bugfix: nginx could not start on Solaris if the shared PCRE library located in non-standard place was used. </CommitLog>
Diffstat (limited to 'www/nginx')
-rw-r--r--www/nginx/Makefile14
-rw-r--r--www/nginx/distinfo6
2 files changed, 16 insertions, 4 deletions
diff --git a/www/nginx/Makefile b/www/nginx/Makefile
index e5b87ac87d8b..c89eec95fef8 100644
--- a/www/nginx/Makefile
+++ b/www/nginx/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= nginx
-PORTVERSION= 0.5.32
+PORTVERSION= 0.5.33
CATEGORIES= www
MASTER_SITES= http://sysoev.ru/nginx/
MASTER_SITES+= ${MASTER_SITE_LOCAL}
@@ -27,6 +27,9 @@ OPTIONS= DEBUG "Enable nginx debugging" off \
HTTP_STATUS_MODULE "Enable http_stub_status module" on \
HTTP_SUB_MODULE "Enable http_sub module" off \
MAIL_MODULE "Enable IMAP4/POP3/SMTP proxy module" off \
+ MAIL_IMAP_MODULE "Enable IMAP4 proxy module" off \
+ MAIL_POP3_MODULE "Enable POP3 proxy module" off \
+ MAIL_SMTP_MODULE "Enable SMTP proxy module" off \
MAIL_SSL_MODULE "Enable mail_ssl module" off \
WWW "Enable html sample files" on
@@ -122,6 +125,15 @@ PLIST_SUB+= WWWDATA="@comment "
.if defined(WITH_MAIL_MODULE)
CONFIGURE_ARGS+=--with-mail
+.if defined(WITHOUT_MAIL_IMAP_MODULE)
+CONFIGURE_ARGS+=--without-mail_proxy_imap_module
+.endif
+.if defined(WITHOUT_MAIL_POP3_MODULE)
+CONFIGURE_ARGS+=--without-mail_proxy_pop3_module
+.endif
+.if defined(WITHOUT_MAIL_SMTP_MODULE)
+CONFIGURE_ARGS+=--without-mail_proxy_smtp_module
+.endif
.if defined(WITH_MAIL_SSL_MODULE)
NGINX_OPENSSL= yes
CONFIGURE_ARGS+=--with-mail_ssl_module
diff --git a/www/nginx/distinfo b/www/nginx/distinfo
index 04c5d8ac27d8..3b56eafdccd0 100644
--- a/www/nginx/distinfo
+++ b/www/nginx/distinfo
@@ -1,3 +1,3 @@
-MD5 (nginx-0.5.32.tar.gz) = 0088269b8a59a146b0ba9c9ee29853bb
-SHA256 (nginx-0.5.32.tar.gz) = 8cb95cc61bafec7b0fe3e91f06f2e7aee7b12f12a6af8200d60038f8d5e52cac
-SIZE (nginx-0.5.32.tar.gz) = 479982
+MD5 (nginx-0.5.33.tar.gz) = a78be74b4fd8e009545ef02488fcac86
+SHA256 (nginx-0.5.33.tar.gz) = b7cf8c2ca93ac4ce474a98ed3f9ce49559c3b0aa90454d64aa24af890b51a72c
+SIZE (nginx-0.5.33.tar.gz) = 485441