diff options
author | osa <osa@FreeBSD.org> | 2008-01-22 15:38:32 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2008-01-22 15:38:32 +0800 |
commit | e2afd5715aebdd26586b0c044bd5deeef707bef6 (patch) | |
tree | 2d3c38af20544b8f84518a722a795c40183cf2fb /www | |
parent | 6f0c601f6f9083190239e119542bcc1609d8afa7 (diff) | |
download | freebsd-ports-gnome-e2afd5715aebdd26586b0c044bd5deeef707bef6.tar.gz freebsd-ports-gnome-e2afd5715aebdd26586b0c044bd5deeef707bef6.tar.zst freebsd-ports-gnome-e2afd5715aebdd26586b0c044bd5deeef707bef6.zip |
Fix wrong mailproxy-specific (imap/pop3/smtp) configure keys.
By default all mailproxy options are off.
Do not bump PORTREVISION.
Problem found by: Rakhesh Sasidharan aka rakhesh at rakhesh dot com
Diffstat (limited to 'www')
-rw-r--r-- | www/nginx/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/nginx/Makefile b/www/nginx/Makefile index 5fe3ac3146c5..bc26f931dc34 100644 --- a/www/nginx/Makefile +++ b/www/nginx/Makefile @@ -126,13 +126,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 |