Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1306E84EDA for ; Fri, 8 Dec 2023 19:27:09 +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 xliTlt72KlNW for ; Fri, 8 Dec 2023 19:27:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6022B84D1D for ; Fri, 8 Dec 2023 19:27:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 59666FA42; Fri, 8 Dec 2023 19:27:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1702063628251610" MIME-Version: 1.0 Date: Fri, 8 Dec 2023 19:27:08 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/doc/guide/files To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20231208192708.59666FA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1702063628251610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Fri Dec 8 19:27:08 UTC 2023 Modified Files: pkgsrc/doc/guide/files: fixes.xml Log Message: fixes.xml: add clarifications about a few compiler variables The relatively recently added USE_CC_FEATURES, USE_CXX_FEATURES, FORCE_C_STD, and FORCE_CXX_STD only apply to certain compilers. To generate a diff of this commit: cvs rdiff -u -r1.196 -r1.197 pkgsrc/doc/guide/files/fixes.xml Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1702063628251610 Content-Disposition: inline Content-Length: 1115 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/guide/files/fixes.xml diff -u pkgsrc/doc/guide/files/fixes.xml:1.196 pkgsrc/doc/guide/files/fixes.xml:1.197 --- pkgsrc/doc/guide/files/fixes.xml:1.196 Wed Nov 29 19:34:51 2023 +++ pkgsrc/doc/guide/files/fixes.xml Fri Dec 8 19:27:08 2023 @@ -1,4 +1,4 @@ - + Making your package work @@ -1454,6 +1454,8 @@ c++11, c++14, c++17, c++20, has_include, charconv, parallelism_ts, unique_ptr, put_time, is_trivially_copy_constructible + Note at present these variables only affect use of GCC, not other + compilers. Language variants like gnu99 and @@ -1476,6 +1478,7 @@ c90, c99, c11, gnu90, gnu99, gnu11 c++03, c++11, c++14, c++17, c++20, gnu++03, gnu++11, gnu++14, gnu++17, gnu++20 + Note at present these variables only affect use of GCC and Clang. --_----------=_1702063628251610--