diff options
author | adamw <adamw@FreeBSD.org> | 2016-07-21 01:07:55 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2016-07-21 01:07:55 +0800 |
commit | 8caacd046f46542ac89ae6ca9b0c486187cc8c19 (patch) | |
tree | 25d63534ea02f0679bebfe909e8566031016e4b9 | |
parent | 2af4146f05368ddb50cb00758af0726ea27c7c18 (diff) | |
download | freebsd-ports-graphics-8caacd046f46542ac89ae6ca9b0c486187cc8c19.tar.gz freebsd-ports-graphics-8caacd046f46542ac89ae6ca9b0c486187cc8c19.tar.zst freebsd-ports-graphics-8caacd046f46542ac89ae6ca9b0c486187cc8c19.zip |
Remove the SSL option and make it mandatory.
I received a report that the build is broken on 9.x with SSL disabled.
I think the right solution here is just to remove the SSL option entirely.
I really can't think of a use-case where IMAP/POP/LMTP without TLS
capability is a good idea. Plus, NetBSD and OpenBSD both have SSL
mandatory.
PORTREVISION bump is necessary here, because it was possible to have
no SSL on 10.x with a successful build.
Discussed with: Larry Rosenman, maintainer of dovecot2-pigeonhole
-rw-r--r-- | mail/dovecot2/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/mail/dovecot2/Makefile b/mail/dovecot2/Makefile index e18c58efcd9..b71ecda3048 100644 --- a/mail/dovecot2/Makefile +++ b/mail/dovecot2/Makefile @@ -14,7 +14,7 @@ PORTNAME= dovecot PORTVERSION= 2.2.25 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ PKGNAMESUFFIX= 2 @@ -27,13 +27,14 @@ LICENSE_COMB= dual CONFLICTS= dovecot-1.[0-9]* -USES= cpe iconv libtool +USES= cpe iconv libtool ssl USE_RC_SUBR= dovecot GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ --with-statedir=/var/db/dovecot \ --without-shadow \ + --with-ssl=openssl \ --with-docs USE_LDCONFIG= ${PREFIX}/lib/dovecot @@ -42,8 +43,8 @@ INSTALL_TARGET= install-strip USERS= dovecot dovenull GROUPS= ${USERS} -OPTIONS_DEFINE= KQUEUE LIBWRAP LZ4 SSL VPOPMAIL DOCS EXAMPLES -OPTIONS_DEFAULT=KQUEUE SSL GSSAPI_NONE +OPTIONS_DEFINE= KQUEUE LIBWRAP LZ4 VPOPMAIL DOCS EXAMPLES +OPTIONS_DEFAULT=KQUEUE GSSAPI_NONE OPTIONS_SUB= yes OPTIONS_GROUP= DB FTS @@ -110,9 +111,6 @@ SOLR_LIB_DEPENDS= libexpat.so:textproc/expat2 SQLITE_USES= sqlite:3 SQLITE_CONFIGURE_WITH= sqlite -SSL_USES= ssl -SSL_CONFIGURE_WITH= ssl=openssl - TEXTCAT_CONFIGURE_WITH= textcat TEXTCAT_LIB_DEPENDS= libtextcat.so:textproc/libtextcat |