Received: by mail.netbsd.org (Postfix, from userid 605) id 263E584E00; Sun, 25 Jun 2017 14:34:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AA23F84DFC for ; Sun, 25 Jun 2017 14:34:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bB1gRUuotw6J for ; Sun, 25 Jun 2017 14:34:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B5FD684D04 for ; Sun, 25 Jun 2017 14:34:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AA616FAE8; Sun, 25 Jun 2017 14:34:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1498401265248870" MIME-Version: 1.0 Date: Sun, 25 Jun 2017 14:34:25 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/mail/mutt To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20170625143425.AA616FAE8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1498401265248870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sun Jun 25 14:34:25 UTC 2017 Modified Files: pkgsrc/mail/mutt: options.mk Log Message: Restore mutt-compressed-mbox option. While it doesn't need a patch, it still needs a non-default configure flag. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/mail/mutt/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1498401265248870 Content-Disposition: inline Content-Length: 1403 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/mutt/options.mk diff -u pkgsrc/mail/mutt/options.mk:1.29 pkgsrc/mail/mutt/options.mk:1.30 --- pkgsrc/mail/mutt/options.mk:1.29 Thu Apr 20 08:59:24 2017 +++ pkgsrc/mail/mutt/options.mk Sun Jun 25 14:34:25 2017 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.29 2017/04/20 08:59:24 jperkin Exp $ +# $NetBSD: options.mk,v 1.30 2017/06/25 14:34:25 joerg Exp $ # Global and legacy options @@ -7,10 +7,10 @@ PKG_OPTIONS_REQUIRED_GROUPS= display PKG_OPTIONS_GROUP.display= curses wide-curses slang PKG_SUPPORTED_OPTIONS= debug gpgme idn ssl smime sasl # TODO: add kyoto cabinet and lmdb backend options for header cache -PKG_SUPPORTED_OPTIONS+= mutt-hcache tokyocabinet mutt-smtp +PKG_SUPPORTED_OPTIONS+= mutt-hcache mutt-compressed-mbox tokyocabinet mutt-smtp PKG_SUPPORTED_OPTIONS+= gssapi PKG_SUGGESTED_OPTIONS= curses gpgme mutt-hcache mutt-smtp smime ssl -PKG_SUGGESTED_OPTIONS+= gssapi +PKG_SUGGESTED_OPTIONS+= gssapi mutt-compressed-mbox PKG_OPTIONS_LEGACY_OPTS+= ncurses:curses ncursesw:wide-curses .include "../../mk/bsd.options.mk" @@ -105,6 +105,15 @@ CONFIGURE_ARGS+= --disable-hcache .endif ### +### Compressed mail boxes +### +.if !empty(PKG_OPTIONS:Mmutt-compressed-mbox) +CONFIGURE_ARGS+= --enable-compressed +.else +CONFIGURE_ARGS+= --disable-compressed +.endif + +### ### Internal SMTP relay support ### .if !empty(PKG_OPTIONS:Mmutt-smtp) --_----------=_1498401265248870--