summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authortriaxx <triaxx@pkgsrc.org>2019-07-03 05:51:54 +0000
committertriaxx <triaxx@pkgsrc.org>2019-07-03 05:51:54 +0000
commita1720448bbb0ebd982461a98b02a460d5aedf73e (patch)
tree50ffe42d36f2b98b74bf276a0c1cd3afb0d18af7 /mail
parent4c9942b4f3ee963234f5ca923d973bf74a1f337f (diff)
downloadpkgsrc-a1720448bbb0ebd982461a98b02a460d5aedf73e.tar.gz
dovecot2: remove gnutls option that is currently broken
Fix PR pkg/54337
Diffstat (limited to 'mail')
-rw-r--r--mail/dovecot2/options.mk13
1 files changed, 3 insertions, 10 deletions
diff --git a/mail/dovecot2/options.mk b/mail/dovecot2/options.mk
index 2c8c7702440..c5fe82d0c7a 100644
--- a/mail/dovecot2/options.mk
+++ b/mail/dovecot2/options.mk
@@ -1,9 +1,7 @@
-# $NetBSD: options.mk,v 1.11 2018/11/30 18:43:09 adam Exp $
+# $NetBSD: options.mk,v 1.12 2019/07/03 05:51:54 triaxx Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.dovecot
-PKG_SUPPORTED_OPTIONS= kqueue pam tcpwrappers
-PKG_OPTIONS_OPTIONAL_GROUPS=ssl
-PKG_OPTIONS_GROUP.ssl= gnutls ssl
+PKG_SUPPORTED_OPTIONS= kqueue pam ssl tcpwrappers
PKG_SUGGESTED_OPTIONS= pam ssl tcpwrappers
.if defined(PKG_HAVE_KQUEUE)
@@ -14,7 +12,7 @@ PLIST_VARS+= ssl tcpwrappers
.include "../../mk/bsd.options.mk"
###
-### Build with OpenSSL or GNU TLS as the underlying crypto library
+### Build with OpenSSL as the underlying crypto library
###
.if !empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+= --with-ssl=openssl
@@ -23,11 +21,6 @@ CONFIGURE_ENV+= SSL_LIBS="-lssl -lcrypto"
BUILDLINK_API_DEPENDS.openssl+=openssl>=0.9.8a
. include "../../security/openssl/buildlink3.mk"
PLIST.ssl= yes
-.elif !empty(PKG_OPTIONS:Mgnutls)
-CONFIGURE_ARGS+= --with-ssl=gnutls
-. include "../../security/gnutls/buildlink3.mk"
-.else
-CONFIGURE_ARGS+= --without-ssl
.endif
###