Received: by mail.netbsd.org (Postfix, from userid 605) id F22B484F32; Mon, 24 Sep 2018 00:11:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 58DF284F31 for ; Mon, 24 Sep 2018 00:04:54 +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 4qeyyggWv1OA for ; Mon, 24 Sep 2018 00:04:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 86B7484D6A for ; Mon, 24 Sep 2018 00:04:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 82F46FBEE; Mon, 24 Sep 2018 00:04:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1537747493116890" MIME-Version: 1.0 Date: Mon, 24 Sep 2018 00:04:53 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/devel/boost-libs To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20180924000453.82F46FBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1537747493116890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Mon Sep 24 00:04:53 UTC 2018 Modified Files: pkgsrc/devel/boost-libs: Makefile Log Message: boost-libs: Expect fiber to work on Darmin 15 fiber used to fail on Darwin 15, but as of 15.5 with Apple LLVM >=8.0.0 (clang 8), it works. Because we expect pkgsrc users to be up to date with respect to minor versions of their (perhaps not upgradable from) major version, change the regexp to expect fiber on this platform. ok minskin@ on tech-pkg To generate a diff of this commit: cvs rdiff -u -r1.71 -r1.72 pkgsrc/devel/boost-libs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1537747493116890 Content-Disposition: inline Content-Length: 736 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/boost-libs/Makefile diff -u pkgsrc/devel/boost-libs/Makefile:1.71 pkgsrc/devel/boost-libs/Makefile:1.72 --- pkgsrc/devel/boost-libs/Makefile:1.71 Thu Aug 16 15:58:32 2018 +++ pkgsrc/devel/boost-libs/Makefile Mon Sep 24 00:04:53 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.71 2018/08/16 15:58:32 adam Exp $ +# $NetBSD: Makefile,v 1.72 2018/09/24 00:04:53 gdt Exp $ BOOST_PACKAGE= libs BOOST_COMMENT= (binary libraries) @@ -23,7 +23,7 @@ BJAM_ARGS+= --without-fiber .else PLIST.context= yes .if !(${OPSYS} == "NetBSD" && !empty(PKGSRC_COMPILER:Mgcc)) && \ - empty(MACHINE_PLATFORM:MDarwin-1[0-5].*-*) + empty(MACHINE_PLATFORM:MDarwin-1[0-4].*-*) PLIST.fiber= yes .endif .endif --_----------=_1537747493116890--