Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Jul 2012 06:28:02 +0000 (UTC)
From:      Alex Kozlov <ak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r301543 - in head/www: nginx nginx-devel
Message-ID:  <201207260628.q6Q6S2qp046724@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207260628.q6Q6S2qp046724>