Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 6653B7A16D for ; Mon, 10 Apr 2017 11:43:15 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 15CD7855E8; Mon, 10 Apr 2017 11:43:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9AF6C8556F for ; Mon, 10 Apr 2017 11:43:14 +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 bscc6-5Jle-u for ; Mon, 10 Apr 2017 11:43:14 +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 0801784CEA for ; Mon, 10 Apr 2017 11:43:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F3188FBE4; Mon, 10 Apr 2017 11:43:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1491824593180440" MIME-Version: 1.0 Date: Mon, 10 Apr 2017 11:43:13 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/devel/boost-libs To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170410114313.F3188FBE4@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. --_----------=_1491824593180440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon Apr 10 11:43:13 UTC 2017 Modified Files: pkgsrc/devel/boost-libs: Makefile Log Message: Long double math libraries now build on older Darwin too. To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 pkgsrc/devel/boost-libs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1491824593180440 Content-Disposition: inline Content-Length: 861 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.51 pkgsrc/devel/boost-libs/Makefile:1.52 --- pkgsrc/devel/boost-libs/Makefile:1.51 Mon Jan 2 07:33:11 2017 +++ pkgsrc/devel/boost-libs/Makefile Mon Apr 10 11:43:13 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2017/01/02 07:33:11 ryoon Exp $ +# $NetBSD: Makefile,v 1.52 2017/04/10 11:43:13 jperkin Exp $ BOOST_PACKAGE= libs BOOST_COMMENT= (binary libraries) @@ -46,10 +46,7 @@ BJAM_ARGS+= --without-fiber PLIST.fiber= yes .endif -# Long double math functions are not available on Darwin. See -# boost/math/tools/config.hpp:53 -.if ${OPSYS} != "NetBSD" && ${OPSYS} != "FreeBSD" && \ - (${OPSYS} != "Darwin" || !empty(MACHINE_PLATFORM:MDarwin-1[3-9].*)) +.if ${OPSYS} != "NetBSD" && ${OPSYS} != "FreeBSD" PLIST.long_double_math= yes .endif --_----------=_1491824593180440--