Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1EA1984EAE for ; Mon, 10 Jul 2023 07:42:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id O5bvOmxYauLa for ; Mon, 10 Jul 2023 07:42:45 +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 69ED184CCA for ; Mon, 10 Jul 2023 07:42:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5715BFBDB; Mon, 10 Jul 2023 07:42:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688974965247470" MIME-Version: 1.0 Date: Mon, 10 Jul 2023 07:42:45 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/pfstools To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230710074245.5715BFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688974965247470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jul 10 07:42:45 UTC 2023 Modified Files: pkgsrc/graphics/pfstools: Makefile Log Message: pfstools: Require GCC 5 for C++14. To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 pkgsrc/graphics/pfstools/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688974965247470 Content-Disposition: inline Content-Length: 710 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/pfstools/Makefile diff -u pkgsrc/graphics/pfstools/Makefile:1.95 pkgsrc/graphics/pfstools/Makefile:1.96 --- pkgsrc/graphics/pfstools/Makefile:1.95 Tue Jun 6 08:02:12 2023 +++ pkgsrc/graphics/pfstools/Makefile Mon Jul 10 07:42:45 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.95 2023/06/06 08:02:12 wiz Exp $ +# $NetBSD: Makefile,v 1.96 2023/07/10 07:42:45 nia Exp $ DISTNAME= pfstools-2.1.0 PKGREVISION= 37 @@ -24,6 +24,9 @@ CMAKE_ARGS+= -DWITH_MATLAB=OFF CMAKE_ARGS+= -DWITH_OpenCV=OFF CXXFLAGS+= -std=c++14 # OpenEXR +# C++14 +GCC_REQD+= 5 + SUBST_CLASSES+= paths SUBST_STAGE.paths= pre-configure SUBST_MESSAGE.paths= Fixing paths in CMake modules. --_----------=_1688974965247470--