Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EE1A784CF4 for ; Thu, 20 Jul 2023 21:12:16 +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 FQsA0DYWCnyN for ; Thu, 20 Jul 2023 21:12:16 +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 43B2484CCC for ; Thu, 20 Jul 2023 21:12:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 31A4EFBDB; Thu, 20 Jul 2023 21:12:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1689887536181670" MIME-Version: 1.0 Date: Thu, 20 Jul 2023 21:12:16 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/mk/compiler To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230720211216.31A4EFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1689887536181670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Jul 20 21:12:16 UTC 2023 Modified Files: pkgsrc/mk/compiler: gcc.mk Log Message: mk: Most packages don't know to use the "experimental" header, so just require gcc8 for std::filesystem. To generate a diff of this commit: cvs rdiff -u -r1.254 -r1.255 pkgsrc/mk/compiler/gcc.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1689887536181670 Content-Disposition: inline Content-Length: 809 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/compiler/gcc.mk diff -u pkgsrc/mk/compiler/gcc.mk:1.254 pkgsrc/mk/compiler/gcc.mk:1.255 --- pkgsrc/mk/compiler/gcc.mk:1.254 Tue Jul 18 12:49:46 2023 +++ pkgsrc/mk/compiler/gcc.mk Thu Jul 20 21:12:16 2023 @@ -1,4 +1,4 @@ -# $NetBSD: gcc.mk,v 1.254 2023/07/18 12:49:46 nia Exp $ +# $NetBSD: gcc.mk,v 1.255 2023/07/20 21:12:16 nia Exp $ # # This is the compiler definition for the GNU Compiler Collection. # @@ -216,14 +216,7 @@ GCC_REQD+= 4.9 .endif .if !empty(USE_CXX_FEATURES:Mfilesystem) -# std::filesystem was "experimental" in gcc7 and NetBSD 9 shipped -# GCC without the experimental C++ library headers (a break from -# upstream). -. if ${OPSYS} == "NetBSD" GCC_REQD+= 8 -. else -GCC_REQD+= 7 -. endif .endif .if !empty(USE_CXX_FEATURES:Mparallelism_ts) --_----------=_1689887536181670--