1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00

- Fix MAIL_* options

Approved by:	osa (maintainer)
This commit is contained in:
Alex Kozlov 2012-07-26 06:28:01 +00:00
parent 39cf5a337e
commit b66d36ccd9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=301543
2 changed files with 6 additions and 6 deletions

View File

@ -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}

View File

@ -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}