From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C2AC9138334 for ; Sun, 30 Sep 2018 14:10:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FFDFE07ED; Sun, 30 Sep 2018 14:10:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E35C8E07ED for ; Sun, 30 Sep 2018 14:10:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 730E7335CE4 for ; Sun, 30 Sep 2018 14:10:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4372043F for ; Sun, 30 Sep 2018 14:10:13 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1538316597.d4a97373ef61f87d566ae329e3f7e439ecd6ad4a.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: d4a97373ef61f87d566ae329e3f7e439ecd6ad4a X-VCS-Branch: master Date: Sun, 30 Sep 2018 14:10:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4f3afaf9-5213-4925-ab50-c8f8ca0a909d X-Archives-Hash: a87fe3d0f1dd18c3c6fbebb17aba1e20 commit: d4a97373ef61f87d566ae329e3f7e439ecd6ad4a Author: Jeroen Roovers gentoo org> AuthorDate: Sun Sep 30 14:09:48 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sun Sep 30 14:09:57 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a97373 dev-lang/spidermonkey: Do not test for dnet_ntoa in libdnet It's checking for the wrong libdnet, creating a false dependency. Fixes: https://bugs.gentoo.org/634364 Package-Manager: Portage-2.3.50, Repoman-2.3.11 Signed-off-by: Jeroen Roovers gentoo.org> dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild b/dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild index c023e9f7c88..fb6e97c7685 100644 --- a/dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -77,6 +77,8 @@ src_configure() { CC="$(tc-getCC)" CXX="$(tc-getCXX)" \ AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" \ LD="$(tc-getLD)" \ + ac_cv_lib_dnet_dnet_ntoa=no \ + ac_cv_lib_dnet_stub_dnet_ntoa=no \ econf \ ${myopts} \ --enable-jemalloc \