Received: by mail.netbsd.org (Postfix, from userid 605) id 7EDB684D56; Sun, 10 Sep 2017 20:36:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 13B5C84D3E for ; Sun, 10 Sep 2017 20:36:57 +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 9l8eaqrbH7ju for ; Sun, 10 Sep 2017 20:36:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 769C384D29 for ; Sun, 10 Sep 2017 20:36:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 719B5FA98; Sun, 10 Sep 2017 20:36:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1505075816287910" MIME-Version: 1.0 Date: Sun, 10 Sep 2017 20:36:56 +0000 From: "Rumko" Subject: CVS commit: pkgsrc/math/R To: pkgsrc-changes@NetBSD.org Reply-To: rumko@netbsd.org X-Mailer: log_accum Message-Id: <20170910203656.719B5FA98@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. --_----------=_1505075816287910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rumko Date: Sun Sep 10 20:36:56 UTC 2017 Modified Files: pkgsrc/math/R: Makefile Log Message: math/R: fix build on fbsd cpow and clog are not implemented on FreeBSD and the configure checks only emit warnings instead of errors. Ok@ markd To generate a diff of this commit: cvs rdiff -u -r1.174 -r1.175 pkgsrc/math/R/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1505075816287910 Content-Disposition: inline Content-Length: 736 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/R/Makefile diff -u pkgsrc/math/R/Makefile:1.174 pkgsrc/math/R/Makefile:1.175 --- pkgsrc/math/R/Makefile:1.174 Thu Aug 24 20:03:28 2017 +++ pkgsrc/math/R/Makefile Sun Sep 10 20:36:56 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.174 2017/08/24 20:03:28 adam Exp $ +# $NetBSD: Makefile,v 1.175 2017/09/10 20:36:56 rumko Exp $ DISTNAME= R-3.3.3 PKGREVISION= 2 @@ -46,6 +46,10 @@ CONFIGURE_ARGS+= --with-system-xz CONFIGURE_ARGS+= --enable-long-double=no .endif +# cpow and clog are not implemented on FreeBSD +CONFIGURE_ENV.FreeBSD+= ac_cv_have_decl_clog=no +CONFIGURE_ENV.FreeBSD+= ac_cv_have_decl_cpow=no + .if ${OPSYS} != "Linux" USE_GNU_ICONV= yes # latin1 support, iconvlist .endif --_----------=_1505075816287910--