Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=r8cy7Hw4; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=RSsIoP9S Received: by mail.netbsd.org (Postfix, from userid 605) id EF47984E99; Wed, 15 May 2024 10:33:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715769190; bh=hkx6vnyW6/Ioa+Ew2Y366t3/VhbuNBTP+bIjp43JUbw=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=r8cy7Hw4eNs68frllq7qv7kkKGWogbO1UEENP0z2kqR2mSEIQa8VWJKCCn5wpJBKu zJqTBUP43mMRBcgsShfCVVb6/a7/D9v+FqdhqzmUUsQb5GgX4T/nuq+OpaMaKjFStO hIsolofulQDeVrxr/4UmGt4pYKGAeJz8nDGzjvHs= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E1E1684D27 for ; Wed, 15 May 2024 10:33:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ne7zXxiOPLlC for ; Wed, 15 May 2024 10:33:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 757F284D24 for ; Wed, 15 May 2024 10:33:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715769188; bh=hkx6vnyW6/Ioa+Ew2Y366t3/VhbuNBTP+bIjp43JUbw=; h=Date:From:Subject:To:Reply-To; b=RSsIoP9S3dZMM16OypJxDFqQSi869XKlt/seXy3XtQW2Fq4dqvtMdV7Alxs8rTfQ2 Tog+USJZG2Bdz5vQqsKuNYLGY1rpK298YdoRaEyjc25lYu9d6dlLDvKQX/4INOM3dH 3HoFpiga+ksND6EQPl/5wByeBpEYweuyj+IV6SVE= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6E493FA2C; Wed, 15 May 2024 10:33:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715769188280650" MIME-Version: 1.0 Date: Wed, 15 May 2024 10:33:08 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mail/mu To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240515103308.6E493FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715769188280650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed May 15 10:33:08 UTC 2024 Modified Files: pkgsrc/mail/mu: Makefile Log Message: mu: needs C++17 (for charconv) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/mail/mu/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715769188280650 Content-Disposition: inline Content-Length: 613 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/mu/Makefile diff -u pkgsrc/mail/mu/Makefile:1.2 pkgsrc/mail/mu/Makefile:1.3 --- pkgsrc/mail/mu/Makefile:1.2 Mon May 6 12:05:52 2024 +++ pkgsrc/mail/mu/Makefile Wed May 15 10:33:08 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2024/05/06 12:05:52 ktnb Exp $ +# $NetBSD: Makefile,v 1.3 2024/05/15 10:33:08 wiz Exp $ DISTNAME= mu-1.12.5 CATEGORIES= mail @@ -19,6 +19,8 @@ PYTHON_FOR_BUILD_ONLY= tool PYTHON_VERSIONS_INCOMPATIBLE= 27 REPLACE_PYTHON+= build-aux/date.py +USE_CXX_FEATURES+= c++17 + .include "options.mk" .include "../../lang/python/application.mk" --_----------=_1715769188280650--