summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2008-01-22 07:38:32 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2008-01-22 07:38:32 +0000
commitde66908920462498fd18c6978bcde3001ae847ad (patch)
tree8206ce3e91c5d98b5a08d0d17d05daf53b3be9dd
parentUpdate to 1.4.14. (diff)
Fix wrong mailproxy-specific (imap/pop3/smtp) configure keys.
By default all mailproxy options are off. Do not bump PORTREVISION. Problem found by: Rakhesh Sasidharan aka rakhesh at rakhesh dot com
Notes
Notes: svn path=/head/; revision=206013
-rw-r--r--www/nginx/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/nginx/Makefile b/www/nginx/Makefile
index 5fe3ac3146c5..bc26f931dc34 100644
--- a/www/nginx/Makefile
+++ b/www/nginx/Makefile
@@ -126,13 +126,13 @@ 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
+CONFIGURE_ARGS+=--without-mail_imap_module
.endif
.if defined(WITHOUT_MAIL_POP3_MODULE)
-CONFIGURE_ARGS+=--without-mail_proxy_pop3_module
+CONFIGURE_ARGS+=--without-mail_pop3_module
.endif
.if defined(WITHOUT_MAIL_SMTP_MODULE)
-CONFIGURE_ARGS+=--without-mail_proxy_smtp_module
+CONFIGURE_ARGS+=--without-mail_smtp_module
.endif
.if defined(WITH_MAIL_SSL_MODULE)
NGINX_OPENSSL= yes