diff options
| author | Sergey A. Osokin <osa@FreeBSD.org> | 2008-01-22 07:40:57 +0000 |
|---|---|---|
| committer | Sergey A. Osokin <osa@FreeBSD.org> | 2008-01-22 07:40:57 +0000 |
| commit | ddad062021c5186d4c522aafbaaa7619ac67c2c2 (patch) | |
| tree | 6185cf670fe2f66286a44038efbea2998ee65b16 | |
| parent | Fix wrong mailproxy-specific (imap/pop3/smtp) configure keys. (diff) | |
Fix wrong mailproxy-specific (imap/pop3/smtp) configure keys.
By default all mailproxy options are off.
Do not bump PORTREVISION.
Problem found by: Anton Yuzhaninov aka citrin at rambler-co dot ru
Notes
Notes:
svn path=/head/; revision=206014
| -rw-r--r-- | www/nginx-devel/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/nginx-devel/Makefile b/www/nginx-devel/Makefile index 9c24030ef6e1..5230dadac405 100644 --- a/www/nginx-devel/Makefile +++ b/www/nginx-devel/Makefile @@ -127,13 +127,13 @@ PLIST_SUB+= WWWDATA="@comment " .if defined(WITH_MAIL_MODULE) CONFIGURE_ARGS+=--with-mail .if defined(WITHOUT_MAIL_IMAP_MODULE) -CONFIGURE_ARGS+=--without-mail_proxy_imap_module +CONFIGURE_ARGS+=--without-mail_imap_module .endif .if defined(WITHOUT_MAIL_POP3_MODULE) -CONFIGURE_ARGS+=--without-mail_proxy_pop3_module +CONFIGURE_ARGS+=--without-mail_pop3_module .endif .if defined(WITHOUT_MAIL_SMTP_MODULE) -CONFIGURE_ARGS+=--without-mail_proxy_smtp_module +CONFIGURE_ARGS+=--without-mail_smtp_module .endif .if defined(WITH_MAIL_SSL_MODULE) NGINX_OPENSSL= yes |
