summaryrefslogtreecommitdiff
path: root/www/nginx
diff options
context:
space:
mode:
authorAlex Kozlov <ak@FreeBSD.org>2012-07-26 06:28:01 +0000
committerAlex Kozlov <ak@FreeBSD.org>2012-07-26 06:28:01 +0000
commitb66d36ccd965b620c33859fe6aa04f973b99cd07 (patch)
treeabb61e203afbcbfbc9dd85b9d17a525a4b8c6eec /www/nginx
parentRemove devel/pkg-config it has been replaced by devel/pkgconf (diff)
- Fix MAIL_* options
Approved by: osa (maintainer)
Diffstat (limited to 'www/nginx')
-rw-r--r--www/nginx/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/nginx/Makefile b/www/nginx/Makefile
index d78c5772b00f..540dc43d1a15 100644
--- a/www/nginx/Makefile
+++ b/www/nginx/Makefile
@@ -772,13 +772,13 @@ PLIST_SUB+= WWWDATA="@comment "
.if ${PORT_OPTIONS:MMAIL}
CONFIGURE_ARGS+=--with-mail
-.if empty(PORT_OPTIONS:NMAIL_IMAP)
+.if empty(PORT_OPTIONS:MMAIL_IMAP)
CONFIGURE_ARGS+=--without-mail_imap_module
.endif
-.if empty(PORT_OPTIONS:NMAIL_POP3)
+.if empty(PORT_OPTIONS:MMAIL_POP3)
CONFIGURE_ARGS+=--without-mail_pop3_module
.endif
-.if empty(PORT_OPTIONS:NMAIL_SMTP)
+.if empty(PORT_OPTIONS:MMAIL_SMTP)
CONFIGURE_ARGS+=--without-mail_smtp_module
.endif
.if ${PORT_OPTIONS:MMAIL_SSL}