Received: by mail.netbsd.org (Postfix, from userid 605) id 6221084DB2; Sun, 23 Oct 2022 13:09:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9172084D82 for ; Sun, 23 Oct 2022 13:09:31 +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 Pnli7HqEZz-d for ; Sun, 23 Oct 2022 13:09:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E335684D09 for ; Sun, 23 Oct 2022 13:09:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DCAB4FA90; Sun, 23 Oct 2022 13:09:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1666530570292600" MIME-Version: 1.0 Date: Sun, 23 Oct 2022 13:09:30 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/lang/ocaml To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20221023130930.DCAB4FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1666530570292600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Sun Oct 23 13:09:30 UTC 2022 Modified Files: pkgsrc/lang/ocaml: Makefile Log Message: lang/ocaml: let this build for NetBSD powerpc before 9.99.99 too. ...by enabling --enable-imprecise-c99-float-ops in those cases, fma(3) was added to powerpc between 9.99.98 and 9.99.99. To generate a diff of this commit: cvs rdiff -u -r1.146 -r1.147 pkgsrc/lang/ocaml/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1666530570292600 Content-Disposition: inline Content-Length: 882 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ocaml/Makefile diff -u pkgsrc/lang/ocaml/Makefile:1.146 pkgsrc/lang/ocaml/Makefile:1.147 --- pkgsrc/lang/ocaml/Makefile:1.146 Sat Oct 8 11:11:16 2022 +++ pkgsrc/lang/ocaml/Makefile Sun Oct 23 13:09:30 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.146 2022/10/08 11:11:16 nia Exp $ +# $NetBSD: Makefile,v 1.147 2022/10/23 13:09:30 he Exp $ .include "Makefile.common" @@ -31,6 +31,10 @@ BUILD_TARGET= world !empty(MACHINE_PLATFORM:MNetBSD-*-earm*) CONFIGURE_ARGS+= --enable-imprecise-c99-float-ops .endif +.if !empty(MACHINE_PLATFORM:MNetBSD-*-powerpc) && (${OPSYS_VERSION} < 99999) +# fma(3) was added for powerpc between 9.99.98 and 9.99.99 +CONFIGURE_ARGS+= --enable-imprecise-c99-float-ops +.endif # This is needed because ${WRKSRC}/build/partial-install.sh uses # $PWD as part of its script. However, with /bin/sh on SunOS --_----------=_1666530570292600--