Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=mM0tuGwC; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=qsD3s7Nh Received: by mail.netbsd.org (Postfix, from userid 605) id 2170784F09; Thu, 18 Apr 2024 06:54:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713423262; bh=sUrqNlVwUMXhqJGFN8yaOYtvFDBfqYXJRV/rDz9Hz9M=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=mM0tuGwCCBPZzH8f/6Poww+DOwG/aKROKyD4GOWQlkUiXGurKQ4LIIcWiXEs8Hwyg FFXHpUAlETbVvd4lJHzaTQBs2BeDfC0Ih59Q5mO/zE7qRPOr/TvWLqgEe0q5K7vMJY dEkGw7AAmLI7d6fs6dvzmqQgfdWODDiesh9sCFJs= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 128A584F07 for ; Thu, 18 Apr 2024 06:54:21 +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 ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 0p--AhNzFmSK for ; Thu, 18 Apr 2024 06:54:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 65E7D84D27 for ; Thu, 18 Apr 2024 06:54:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713423260; bh=sUrqNlVwUMXhqJGFN8yaOYtvFDBfqYXJRV/rDz9Hz9M=; h=Date:From:Subject:To:Reply-To; b=qsD3s7Nh87492sojG23b3Ok80BUAaQdP+KQeLRIsnMkCrhWEwsubD77NUnXs35VPL z0lUlWFccX9G+XIUH16xWRSMlerwnR6L5U5BDDn3AUx65Xgpl5N2zbNnhVehpOvoT/ XofQYfALRcJOSeM2D2eg1jUIaWhSfCVQmfAx8REA= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 60346FA2C; Thu, 18 Apr 2024 06:54:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1713423260192100" MIME-Version: 1.0 Date: Thu, 18 Apr 2024 06:54:20 +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: <20240418065420.60346FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1713423260192100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Apr 18 06:54:20 UTC 2024 Modified Files: pkgsrc/mail/neomutt: Makefile Log Message: neomutt: needs gcc8+ for "error: initializer element is not constant" To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 pkgsrc/mail/neomutt/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1713423260192100 Content-Disposition: inline Content-Length: 750 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/neomutt/Makefile diff -u pkgsrc/mail/neomutt/Makefile:1.93 pkgsrc/mail/neomutt/Makefile:1.94 --- pkgsrc/mail/neomutt/Makefile:1.93 Tue Apr 16 22:08:23 2024 +++ pkgsrc/mail/neomutt/Makefile Thu Apr 18 06:54:20 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.93 2024/04/16 22:08:23 wiz Exp $ +# $NetBSD: Makefile,v 1.94 2024/04/18 06:54:20 wiz Exp $ DISTNAME= neomutt-20240416 CATEGORIES= mail @@ -30,6 +30,8 @@ CONF_FILES= ${EGDIR}/neomuttrc ${PKG_SY INSTALLATION_DIRS+= ${EGDIR} INSTALL_MAKE_FLAGS= ${MAKE_FLAGS} DOTLOCK_GROUP= sysconfdir=${EGDIR} +GCC_REQD+= 8 + .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "OpenBSD" --_----------=_1713423260192100--