Received: by mail.netbsd.org (Postfix, from userid 605) id 8F7D084D1F; Mon, 26 Jul 2021 11:58:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CAA4584D04 for ; Mon, 26 Jul 2021 11:58:25 +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 k9NJvTmF4k0M for ; Mon, 26 Jul 2021 11:58:25 +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 2533B84C86 for ; Mon, 26 Jul 2021 11:58:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1949FFA95; Mon, 26 Jul 2021 11:58:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1627300705298810" MIME-Version: 1.0 Date: Mon, 26 Jul 2021 11:58:25 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mk/platform To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20210726115825.1949FFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1627300705298810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon Jul 26 11:58:25 UTC 2021 Modified Files: pkgsrc/mk/platform: Darwin.mk Log Message: mk: Add OSX_SDK_MAP for 11.5. To generate a diff of this commit: cvs rdiff -u -r1.103 -r1.104 pkgsrc/mk/platform/Darwin.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1627300705298810 Content-Disposition: inline Content-Length: 1089 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/platform/Darwin.mk diff -u pkgsrc/mk/platform/Darwin.mk:1.103 pkgsrc/mk/platform/Darwin.mk:1.104 --- pkgsrc/mk/platform/Darwin.mk:1.103 Thu May 27 18:16:26 2021 +++ pkgsrc/mk/platform/Darwin.mk Mon Jul 26 11:58:24 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Darwin.mk,v 1.103 2021/05/27 18:16:26 jperkin Exp $ +# $NetBSD: Darwin.mk,v 1.104 2021/07/26 11:58:24 jperkin Exp $ # # Variable definitions for the Darwin operating system. @@ -25,8 +25,7 @@ # High Sierra 10.13.x 17.x.y 9.3 (llvm clang 9.0) # Mojave 10.14.x 18.x.y 10.2 (llvm clang 10.0) # Catalina 10.15.x 19.x.y -# Big Sur 11.0* 20.0 12.0 (llvm clang 12.0) -# *) 11.0 on ARM, 10.16 on Intel Macs, for now +# Big Sur 11.x 20.x.y 12.0 (llvm clang 12.0) # Tiger (and earlier) use Xfree 4.4.0 (and earlier) .if empty(MACHINE_PLATFORM:MDarwin-[0-8].*-*) @@ -111,6 +110,7 @@ _OPSYS_INCLUDE_DIRS?= /usr/include # OSX_SDK_MAP.11.2= 11.1 OSX_SDK_MAP.11.4= 11.3 +OSX_SDK_MAP.11.5= 11.3 # OSX_SDK_PATH!= /usr/bin/xcrun \ --sdk macosx${OSX_SDK_MAP.${OSX_VERSION}:U${OSX_VERSION}} \ --_----------=_1627300705298810--