aboutsummaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorosa <osa@FreeBSD.org>2007-10-08 23:23:24 +0800
committerosa <osa@FreeBSD.org>2007-10-08 23:23:24 +0800
commit7be71df0db133830d82ab270005a94edd6139609 (patch)
tree2910cc56725facb4bc94edc78c504d500276a930 /www
parentf470a4d2005307e2efd27064b2c80f3a524aae72 (diff)
downloadfreebsd-ports-gnome-7be71df0db133830d82ab270005a94edd6139609.tar.gz
freebsd-ports-gnome-7be71df0db133830d82ab270005a94edd6139609.tar.zst
freebsd-ports-gnome-7be71df0db133830d82ab270005a94edd6139609.zip
Update from 0.6.11 to 0.6.13.
Add three new knobs for imap, pop3, smtp mail modules. Submitted by: Ilya Pizik aka polzun at scar dot jinr dot ru <ChangeLog> Changes with nginx 0.6.13 24 Sep 2007 *) Bugfix: nginx did not close directory file on HEAD request if autoindex was used. Thanks to Arkadiusz Patyk. Changes with nginx 0.6.12 21 Sep 2007 *) 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. *) Bugfix: the trailing wildcards did not work; bug appeared in 0.6.9. *) Bugfix: nginx could not start on Solaris if the shared PCRE library located in non-standard place was used. *) Bugfix: the "proxy_hide_header" and "fastcgi_hide_header" directives did not hide response header lines whose name was longer than 32 characters. Thanks to Manlio Perillo. </ChangeLog>
Diffstat (limited to 'www')
-rw-r--r--www/nginx-devel/Makefile15
-rw-r--r--www/nginx-devel/distinfo6
2 files changed, 16 insertions, 5 deletions
diff --git a/www/nginx-devel/Makefile b/www/nginx-devel/Makefile
index 5973f393405a..e7a9a91c51e8 100644
--- a/www/nginx-devel/Makefile
+++ b/www/nginx-devel/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= nginx
-PORTVERSION= 0.6.11
-PORTREVISION= 1
+PORTVERSION= 0.6.13
CATEGORIES= www
MASTER_SITES= http://sysoev.ru/nginx/
MASTER_SITES+= ${MASTER_SITE_LOCAL}
@@ -29,6 +28,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
@@ -124,6 +126,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-devel/distinfo b/www/nginx-devel/distinfo
index 56c99b75c018..9880f2a12028 100644
--- a/www/nginx-devel/distinfo
+++ b/www/nginx-devel/distinfo
@@ -1,3 +1,3 @@
-MD5 (nginx-0.6.11.tar.gz) = e0989160e4b6731ca287894a580e3684
-SHA256 (nginx-0.6.11.tar.gz) = bc41d28768221e3d6acef68ba23fd6d71c35a28338e8f0b54de91688cd6e38a9
-SIZE (nginx-0.6.11.tar.gz) = 487646
+MD5 (nginx-0.6.13.tar.gz) = 0c4fcc5f456febdf8444dc794316256b
+SHA256 (nginx-0.6.13.tar.gz) = 211d315d2df8914ca4486486a99c8ec22dbbb19a2838242c290f3d59779c8be7
+SIZE (nginx-0.6.13.tar.gz) = 491109