svn commit: r301543 - in head/www: nginx nginx-devel
Alex Kozlov
ak at FreeBSD.org
Thu Jul 26 06:28:02 UTC 2012
Author: ak
Date: Thu Jul 26 06:28:01 2012
New Revision: 301543
URL: http://svn.freebsd.org/changeset/ports/301543
Log:
- Fix MAIL_* options
Approved by: osa (maintainer)
Modified:
head/www/nginx-devel/Makefile (contents, props changed)
head/www/nginx/Makefile (contents, props changed)
Modified: head/www/nginx-devel/Makefile
==============================================================================
--- head/www/nginx-devel/Makefile Thu Jul 26 06:21:51 2012 (r301542)
+++ head/www/nginx-devel/Makefile Thu Jul 26 06:28:01 2012 (r301543)
@@ -781,13 +781,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}
Modified: head/www/nginx/Makefile
==============================================================================
--- head/www/nginx/Makefile Thu Jul 26 06:21:51 2012 (r301542)
+++ head/www/nginx/Makefile Thu Jul 26 06:28:01 2012 (r301543)
@@ -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}
More information about the svn-ports-head
mailing list