summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorjlam <jlam>2004-08-05 02:22:19 +0000
committerjlam <jlam>2004-08-05 02:22:19 +0000
commite98d003381dce5f516875595beca5a7e3d275aab (patch)
treef8fd1fa9479e363a7a3466c1e7371191e68fd794 /mail
parentb7bfc8b035ae659f03680c5697553925425e8ae9 (diff)
downloadpkgsrc-e98d003381dce5f516875595beca5a7e3d275aab.tar.gz
Document each of the options.
Diffstat (limited to 'mail')
-rw-r--r--mail/dovecot/options.mk20
1 files changed, 19 insertions, 1 deletions
diff --git a/mail/dovecot/options.mk b/mail/dovecot/options.mk
index b522897daf7..6f22de2fbb0 100644
--- a/mail/dovecot/options.mk
+++ b/mail/dovecot/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2004/08/04 17:12:46 salo Exp $
+# $NetBSD: options.mk,v 1.3 2004/08/05 02:22:19 jlam Exp $
# Global and legacy options
.if defined(DOVECOT_USE_GNUTLS) || defined(DOVECOT_USE_MYSQL) || \
@@ -30,6 +30,9 @@ PKG_OPTIONS_VAR= PKG_OPTIONS.dovecot
PKG_SUPPORTED_OPTIONS= gnutls inet6 ldap mysql pgsql sasl
.include "../../mk/bsd.options.mk"
+###
+### Build with GNU TLS or OpenSSL as the underlying crypto library.
+###
.if !empty(PKG_OPTIONS:Mgnutls)
CONFIGURE_ARGS+= --enable-ssl=gnutls
. include "../../security/gnutls/buildlink3.mk"
@@ -38,26 +41,41 @@ CONFIGURE_ARGS+= --enable-ssl=openssl
. include "../../security/openssl/buildlink3.mk"
.endif
+###
+### MySQL support.
+###
.if !empty(PKG_OPTIONS:Mmysql)
CONFIGURE_ARGS+= --with-mysql
. include "../../databases/mysql4-client/buildlink3.mk"
.endif
+###
+### PostgreSQL support.
+###
.if !empty(PKG_OPTIONS:Mpgsql)
CONFIGURE_ARGS+= --with-pgsql
CPPFLAGS+= -I${BUILDLINK_DIR}/include/pgsql
. include "../../mk/pgsql.buildlink3.mk"
.endif
+###
+### IPv6 support.
+###
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
+###
+### LDAP directory support.
+###
.if !empty(PKG_OPTIONS:Mldap)
CONFIGURE_ARGS+= --with-ldap
. include "../../databases/openldap/buildlink3.mk"
.endif
+###
+### IMAP-AUTH via SASL.
+###
.if !empty(PKG_OPTIONS:Msasl)
CONFIGURE_ARGS+= --with-cyrus-sasl2
. include "../../security/cyrus-sasl2/buildlink3.mk"