Received: by mail.netbsd.org (Postfix, from userid 605) id EA51A84EAB; Wed, 11 Apr 2018 09:10:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E58E984DAB for ; Wed, 11 Apr 2018 09:10:29 +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 wbyYFBM4ZSgV for ; Wed, 11 Apr 2018 09:10:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0C0F184D32 for ; Wed, 11 Apr 2018 09:10:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 06049FBEC; Wed, 11 Apr 2018 09:10:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1523437829140650" MIME-Version: 1.0 Date: Wed, 11 Apr 2018 09:10:29 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/devel/libthrift To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20180411091029.06049FBEC@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. --_----------=_1523437829140650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Wed Apr 11 09:10:28 UTC 2018 Modified Files: pkgsrc/devel/libthrift: options.mk Log Message: libthrift: explicitly disable things not defined as dependencies. this package is auto-detecting the presence of system languages like rust and haskell. XXX currently it is likely doing the same for Lua, maybe more things to disable. Fixes PR pkg/53167: libthrift downloads from the net if ghc is installed To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/libthrift/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1523437829140650 Content-Disposition: inline Content-Length: 934 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libthrift/options.mk diff -u pkgsrc/devel/libthrift/options.mk:1.10 pkgsrc/devel/libthrift/options.mk:1.11 --- pkgsrc/devel/libthrift/options.mk:1.10 Sun Apr 1 13:49:20 2018 +++ pkgsrc/devel/libthrift/options.mk Wed Apr 11 09:10:28 2018 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.10 2018/04/01 13:49:20 wiz Exp $ +# $NetBSD: options.mk,v 1.11 2018/04/11 09:10:28 maya Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.libthrift PKG_SUPPORTED_OPTIONS= perl python # csharp java erlang php ruby @@ -103,3 +103,14 @@ PLIST.ruby= yes .else CONFIGURE_ARGS+= --without-ruby .endif + +# Languages without options that may be auto-detected +CONFIGURE_ARGS+= --without-nodejs +CONFIGURE_ARGS+= --without-dart +CONFIGURE_ARGS+= --without-haskell +CONFIGURE_ARGS+= --without-go +CONFIGURE_ARGS+= --without-rs +CONFIGURE_ARGS+= --without-haxe +CONFIGURE_ARGS+= --without-dotnetcore +CONFIGURE_ARGS+= --without-d + --_----------=_1523437829140650--