diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2024-06-15 14:38:55 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2024-06-15 14:44:32 +0000 |
commit | dbd3f8a1541ea056c29567e1d896de4725a2a99e (patch) | |
tree | 3858cd2aaa9a83fb38237bf748a5c309efa8e284 | |
parent | a81bdbc5d906ea61baa525ea1853a746643d8a53 (diff) |
mail/cyrus-imapd25: disable BDB option by default and back to not force db18
PR: 279145
Requested by: des
-rw-r--r-- | UPDATING | 12 | ||||
-rw-r--r-- | mail/cyrus-imapd25/Makefile | 6 |
2 files changed, 15 insertions, 3 deletions
@@ -5,6 +5,18 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20240615: + AFFECTS: mail/cyrus-imapd25 + AUTHOR: ume@FreeBSD.org + + The BDB option is disabled by default. + + If you are using the berkeley cyrusdb backend, we strongly recommend + that you switch to something other than the berkeley cyrusdb + backend. If you want to continue using the berkeley cyrusdb + backend, build the cyrus-imapd25 port yourself with the BDB option + enabled. + 20240613: AFFECTS: multimedia/audacios and multimedia/audacious-plugins AUTHOR: madpilot@FreeBSD.org diff --git a/mail/cyrus-imapd25/Makefile b/mail/cyrus-imapd25/Makefile index 97af828beee0..1811ed1c7500 100644 --- a/mail/cyrus-imapd25/Makefile +++ b/mail/cyrus-imapd25/Makefile @@ -1,6 +1,6 @@ PORTNAME= cyrus-imapd PORTVERSION= 2.5.17 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= mail MASTER_SITES= https://github.com/cyrusimap/cyrus-imapd/releases/download/${PORTNAME}-${PORTVERSION}/ PKGNAMESUFFIX= 25 @@ -44,11 +44,11 @@ CPE_PRODUCT= cyrus_imap_server OPTIONS_DEFINE= AUTOCREATE BDB CLAMAV HTTP IDLED LDAP MURDER MYSQL \ NETSCAPEHACK NNTP PGSQL REPLICATION SNMP SQLITE DOCS \ EXAMPLES -OPTIONS_DEFAULT= BDB IDLED +OPTIONS_DEFAULT= IDLED OPTIONS_SUB= yes AUTOCREATE_DESC= Enable autocreate support AUTOCREATE_CONFIGURE_ENABLE= autocreate -BDB_USES= bdb:18 +BDB_USES= bdb BDB_CONFIGURE_ON= --with-bdb-incdir=${BDB_INCLUDE_DIR} \ --with-bdb-libdir=${LOCALBASE}/lib CLAMAV_DESC= Use ClamAV |