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 B67E07A273 for ; Sun, 13 Nov 2016 16:03:33 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 35837855A7; Sun, 13 Nov 2016 16:03:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B3629855A0 for ; Sun, 13 Nov 2016 16:03:32 +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 kLmqVudBTeaj for ; Sun, 13 Nov 2016 16:03:32 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 18D3D85571 for ; Sun, 13 Nov 2016 16:03:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0BA28FBA6; Sun, 13 Nov 2016 16:03:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1479053012181460" MIME-Version: 1.0 Date: Sun, 13 Nov 2016 16:03:32 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang/ruby To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20161113160332.0BA28FBA6@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. --_----------=_1479053012181460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Nov 13 16:03:31 UTC 2016 Modified Files: pkgsrc/lang/ruby: platform.mk Log Message: Explicitly disable dtrace on NetBSD/i386 (7.99.*). Should be fix PR pkg/51613. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/ruby/platform.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1479053012181460 Content-Disposition: inline Content-Length: 760 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ruby/platform.mk diff -u pkgsrc/lang/ruby/platform.mk:1.1 pkgsrc/lang/ruby/platform.mk:1.2 --- pkgsrc/lang/ruby/platform.mk:1.1 Sun Nov 13 15:14:19 2016 +++ pkgsrc/lang/ruby/platform.mk Sun Nov 13 16:03:31 2016 @@ -1,4 +1,4 @@ -# $NetBSD: platform.mk,v 1.1 2016/11/13 15:14:19 taca Exp $ +# $NetBSD: platform.mk,v 1.2 2016/11/13 16:03:31 taca Exp $ # # @@ -76,6 +76,16 @@ CONFIGURE_ARGS+= --disable-dtrace .endif # +# NetBSD +# +# dtrace support has problem on i386. (No official NetBSD release is +# built with dtrace enabled yet, so this problem is on 7.99.* only.) +# +.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "i386" +CONFIGURE_ARGS+= --disable-dtrace +.endif + +# # Solaris # # fix build with sunpro. --_----------=_1479053012181460--