Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 942211A9239 for ; Fri, 3 Dec 2021 07:52:35 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CE82984EAE; Fri, 3 Dec 2021 07:52:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1397A84D69 for ; Fri, 3 Dec 2021 07:52:34 +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 LUvTo3KDrEHz for ; Fri, 3 Dec 2021 07:52:33 +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 79D5884D15 for ; Fri, 3 Dec 2021 07:52:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7201EFAEC; Fri, 3 Dec 2021 07:52:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163851795389650" MIME-Version: 1.0 Date: Fri, 3 Dec 2021 07:52:33 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/doc/guide To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211203075233.7201EFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163851795389650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Dec 3 07:52:33 UTC 2021 Modified Files: pkgsrc/doc/guide: PLIST pkgsrc/doc/guide/files: fixes.xml Log Message: guide: update USE_LANGUAGES section, add missing file to PLIST To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/doc/guide/PLIST cvs rdiff -u -r1.166 -r1.167 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. --_----------=_163851795389650 Content-Disposition: inline Content-Length: 2552 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/guide/PLIST diff -u pkgsrc/doc/guide/PLIST:1.5 pkgsrc/doc/guide/PLIST:1.6 --- pkgsrc/doc/guide/PLIST:1.5 Sun Jun 21 04:32:36 2020 +++ pkgsrc/doc/guide/PLIST Fri Dec 3 07:52:32 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2020/06/21 04:32:36 rillig Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/12/03 07:52:32 wiz Exp $ ${PLIST.html}share/doc/pkgsrc/binary.html ${PLIST.html}share/doc/pkgsrc/build.html ${PLIST.html}share/doc/pkgsrc/buildlink.html @@ -17,6 +17,7 @@ ${PLIST.html}share/doc/pkgsrc/ftp-layout ${PLIST.html}share/doc/pkgsrc/getting.html ${PLIST.html}share/doc/pkgsrc/global.css ${PLIST.html}share/doc/pkgsrc/gnome.html +${PLIST.html}share/doc/pkgsrc/hardening.html ${PLIST.html}share/doc/pkgsrc/help-devel.html ${PLIST.html}share/doc/pkgsrc/help-topics.html ${PLIST.html}share/doc/pkgsrc/help-user.html @@ -28,8 +29,8 @@ ${PLIST.html}share/doc/pkgsrc/logs.html ${PLIST.html}share/doc/pkgsrc/makefile.html ${PLIST.html}share/doc/pkgsrc/options.html ${PLIST.html}share/doc/pkgsrc/pkginstall.html -${PLIST.html}share/doc/pkgsrc/pkgsrc.html ${PLIST.epub}share/doc/pkgsrc/pkgsrc.epub +${PLIST.html}share/doc/pkgsrc/pkgsrc.html ${PLIST.pdf}share/doc/pkgsrc/pkgsrc.pdf ${PLIST.pdf}share/doc/pkgsrc/pkgsrc.ps ${PLIST.ascii}share/doc/pkgsrc/pkgsrc.txt Index: pkgsrc/doc/guide/files/fixes.xml diff -u pkgsrc/doc/guide/files/fixes.xml:1.166 pkgsrc/doc/guide/files/fixes.xml:1.167 --- pkgsrc/doc/guide/files/fixes.xml:1.166 Tue Nov 9 17:41:27 2021 +++ pkgsrc/doc/guide/files/fixes.xml Fri Dec 3 07:52:33 2021 @@ -1,4 +1,4 @@ - + Making your package work @@ -1406,8 +1406,13 @@ pre-configure: To declare which language's compiler a package needs, set the USE_LANGUAGES variable. Allowed values - currently are c, c++, and - fortran (and any combination). The default is + currently are: + + c99, c++, c++03, gnu++03, c++0x, gnu++0x, c++11, gnu++11, + c++14, gnu++14, c++17, gnu++17, c++20, gnu++20, fortran, + fortran77, java, objc, obj-c++, and ada. + + (and any combination). The default is c. Packages using GNU configure scripts, even if written in C++, usually need a C compiler for the configure phase. --_----------=_163851795389650--