Received: by mail.netbsd.org (Postfix, from userid 605) id 513EF84E24; Mon, 28 Oct 2019 10:03:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CE57084E23 for ; Mon, 28 Oct 2019 10:03:18 +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 Gff41ofqhV1y for ; Mon, 28 Oct 2019 10:03:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 31EBE84E09 for ; Mon, 28 Oct 2019 10:03:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2C5F0FA8D; Mon, 28 Oct 2019 10:03:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572256998152510" MIME-Version: 1.0 Date: Mon, 28 Oct 2019 10:03:18 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= Subject: CVS commit: pkgsrc/devel/gmake To: pkgsrc-changes@NetBSD.org Reply-To: triaxx@netbsd.org X-Mailer: log_accum Message-Id: <20191028100318.2C5F0FA8D@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. --_----------=_1572256998152510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: triaxx Date: Mon Oct 28 10:03:18 UTC 2019 Modified Files: pkgsrc/devel/gmake: options.mk Log Message: gmake: comment the inclusion of gettext-lib/builtin.mk To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/gmake/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572256998152510 Content-Disposition: inline Content-Length: 812 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/gmake/options.mk diff -u pkgsrc/devel/gmake/options.mk:1.6 pkgsrc/devel/gmake/options.mk:1.7 --- pkgsrc/devel/gmake/options.mk:1.6 Fri Oct 25 12:36:12 2019 +++ pkgsrc/devel/gmake/options.mk Mon Oct 28 10:03:18 2019 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.6 2019/10/25 12:36:12 triaxx Exp $ +# $NetBSD: options.mk,v 1.7 2019/10/28 10:03:18 triaxx Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gmake PKG_SUPPORTED_OPTIONS= nls @@ -8,6 +8,8 @@ PLIST_VARS+= nls .include "../../mk/bsd.options.mk" +# Build NLS support only if a native implementation of gettext is available +# to avoid a circular dependency (gmake->gettext-tools->ncurses->gmake). .include "../../devel/gettext-lib/builtin.mk" .if !empty(PKG_OPTIONS:Mnls) && \ !empty(IS_BUILTIN.gettext:M[yY][eE][sS]) --_----------=_1572256998152510--