Received: by mail.netbsd.org (Postfix, from userid 605) id BEB6084EBE; Wed, 17 May 2023 13:29:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E5D6984EBD for ; Wed, 17 May 2023 13:29:30 +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 EuCbptHa1_GY for ; Wed, 17 May 2023 13:29:30 +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 3C17E84EBA for ; Wed, 17 May 2023 13:29:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 357E1FA87; Wed, 17 May 2023 13:29:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1684330170218180" MIME-Version: 1.0 Date: Wed, 17 May 2023 13:29:30 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mail/neomutt To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230517132930.357E1FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1684330170218180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed May 17 13:29:30 UTC 2023 Modified Files: pkgsrc/mail/neomutt: options.mk Log Message: neomutt: remove idn option, now unsupported and idn2 is used by default To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/mail/neomutt/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1684330170218180 Content-Disposition: inline Content-Length: 1323 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/neomutt/options.mk diff -u pkgsrc/mail/neomutt/options.mk:1.19 pkgsrc/mail/neomutt/options.mk:1.20 --- pkgsrc/mail/neomutt/options.mk:1.19 Wed Mar 22 20:34:39 2023 +++ pkgsrc/mail/neomutt/options.mk Wed May 17 13:29:30 2023 @@ -1,12 +1,12 @@ -# $NetBSD: options.mk,v 1.19 2023/03/22 20:34:39 nikita Exp $ +# $NetBSD: options.mk,v 1.20 2023/05/17 13:29:30 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.neomutt PKG_OPTIONS_REQUIRED_GROUPS= display PKG_OPTIONS_GROUP.display= curses ncurses ncursesw PKG_SUPPORTED_OPTIONS= tokyocabinet lmdb -PKG_SUPPORTED_OPTIONS+= debug gpgme gssapi idn ssl smime sasl +PKG_SUPPORTED_OPTIONS+= debug gpgme gssapi ssl smime sasl PKG_SUPPORTED_OPTIONS+= notmuch lua -PKG_SUGGESTED_OPTIONS= gpgme gssapi idn ncursesw sasl smime ssl +PKG_SUGGESTED_OPTIONS= gpgme gssapi ncursesw sasl smime ssl PKG_SUGGESTED_OPTIONS+= tokyocabinet notmuch .include "../../mk/bsd.options.mk" @@ -112,16 +112,6 @@ CONFIGURE_ENV+= BDB_LIB=${BDB_LIBS:S/^- .endif ### -### Internationalized Domain Names -### -.if !empty(PKG_OPTIONS:Midn) -. include "../../devel/libidn/buildlink3.mk" -CONFIGURE_ARGS+= --with-idn=${BUILDLINK_PREFIX.libidn} -.else -CONFIGURE_ARGS+= --disable-idn -.endif - -### ### Enable debugging support ### .if !empty(PKG_OPTIONS:Mdebug) --_----------=_1684330170218180--