diff options
author | osa <osa@FreeBSD.org> | 2012-06-28 22:25:06 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2012-06-28 22:25:06 +0800 |
commit | c8bcd950ac6a0c8cdf1d98a7bc223fca4ce43725 (patch) | |
tree | ad699132105027881dd9b8c11cceb65ea0227787 | |
parent | 8094f4ed2c4540cbc058bbcdccf71f0f03f4f8bf (diff) | |
download | freebsd-ports-gnome-c8bcd950ac6a0c8cdf1d98a7bc223fca4ce43725.tar.gz freebsd-ports-gnome-c8bcd950ac6a0c8cdf1d98a7bc223fca4ce43725.tar.zst freebsd-ports-gnome-c8bcd950ac6a0c8cdf1d98a7bc223fca4ce43725.zip |
Fix build without mail-specific modules after switch to OptionsNG.
PR: 169498
-rw-r--r-- | www/nginx-devel/Makefile | 8 | ||||
-rw-r--r-- | www/nginx/Makefile | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/www/nginx-devel/Makefile b/www/nginx-devel/Makefile index ccd1fd8f0874..d43a1925a3b7 100644 --- a/www/nginx-devel/Makefile +++ b/www/nginx-devel/Makefile @@ -782,16 +782,16 @@ PLIST_SUB+= WWWDATA="@comment " .if ${PORT_OPTIONS:MMAIL} CONFIGURE_ARGS+=--with-mail -.if ${PORT_OPTIONS:NMAIL_IMAP} +.if empty(PORT_OPTIONS:NMAIL_IMAP) CONFIGURE_ARGS+=--without-mail_imap_module .endif -.if ${PORT_OPTIONS:NMAIL_POP3} +.if empty(PORT_OPTIONS:NMAIL_POP3) CONFIGURE_ARGS+=--without-mail_pop3_module .endif -.if ${PORT_OPTIONS:NMAIL_SMTP} +.if empty(PORT_OPTIONS:NMAIL_SMTP) CONFIGURE_ARGS+=--without-mail_smtp_module .endif -.if ${PORT_OPTIONS:MMAIL_SSL) +.if ${PORT_OPTIONS:MMAIL_SSL} NGINX_OPENSSL= yes CONFIGURE_ARGS+=--with-mail_ssl_module .endif diff --git a/www/nginx/Makefile b/www/nginx/Makefile index e186fff94187..1cdf44649fb5 100644 --- a/www/nginx/Makefile +++ b/www/nginx/Makefile @@ -772,16 +772,16 @@ PLIST_SUB+= WWWDATA="@comment " .if ${PORT_OPTIONS:MMAIL} CONFIGURE_ARGS+=--with-mail -.if ${PORT_OPTIONS:NMAIL_IMAP} +.if empty(PORT_OPTIONS:NMAIL_IMAP) CONFIGURE_ARGS+=--without-mail_imap_module .endif -.if ${PORT_OPTIONS:NMAIL_POP3} +.if empty(PORT_OPTIONS:NMAIL_POP3) CONFIGURE_ARGS+=--without-mail_pop3_module .endif -.if ${PORT_OPTIONS:NMAIL_SMTP} +.if empty(PORT_OPTIONS:NMAIL_SMTP) CONFIGURE_ARGS+=--without-mail_smtp_module .endif -.if ${PORT_OPTIONS:MMAIL_SSL) +.if ${PORT_OPTIONS:MMAIL_SSL} NGINX_OPENSSL= yes CONFIGURE_ARGS+=--with-mail_ssl_module .endif |