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 475EB7A210 for ; Wed, 15 Jun 2016 18:30:02 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E678F85EC3; Wed, 15 Jun 2016 18:30:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6C2A085EBE for ; Wed, 15 Jun 2016 18:30:01 +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 8OPqAxSlFxb5 for ; Wed, 15 Jun 2016 18:30:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CB9C584CFB for ; Wed, 15 Jun 2016 18:30:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04FC9FBB5; Wed, 15 Jun 2016 18:30:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146601540026380" MIME-Version: 1.0 Date: Wed, 15 Jun 2016 18:30:00 +0000 From: "Rumko" Subject: CVS commit: pkgsrc/devel/boost-libs To: pkgsrc-changes@NetBSD.org Reply-To: rumko@netbsd.org X-Mailer: log_accum Message-Id: <20160615183000.04FC9FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_146601540026380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rumko Date: Wed Jun 15 18:29:59 UTC 2016 Modified Files: pkgsrc/devel/boost-libs: Makefile Log Message: devel/boost-libs: fix build on fbsd Ensure proper PLIST contents after disabling long double math functions. Ok@ wiz To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/devel/boost-libs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146601540026380 Content-Disposition: inline Content-Length: 795 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.43 pkgsrc/devel/boost-libs/Makefile:1.44 --- pkgsrc/devel/boost-libs/Makefile:1.43 Fri May 13 20:47:32 2016 +++ pkgsrc/devel/boost-libs/Makefile Wed Jun 15 18:29:59 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2016/05/13 20:47:32 adam Exp $ +# $NetBSD: Makefile,v 1.44 2016/06/15 18:29:59 rumko Exp $ BOOST_PACKAGE= libs BOOST_COMMENT= (binary libraries) @@ -31,7 +31,7 @@ PLIST.log= yes # Long double math functions are not available on Darwin. See # boost/math/tools/config.hpp:53 -.if ${OPSYS} != "NetBSD" && \ +.if ${OPSYS} != "NetBSD" && ${OPSYS} != "FreeBSD" && \ (${OPSYS} != "Darwin" || !empty(MACHINE_PLATFORM:MDarwin-1[3-9].*)) PLIST.long_double_math= yes .endif --_----------=_146601540026380--