Received: by mail.netbsd.org (Postfix, from userid 605) id 7D22384EC4; Mon, 30 Aug 2021 11:22:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B76E584CBC for ; Mon, 30 Aug 2021 11:22:54 +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 ZZmnuXsa20kr for ; Mon, 30 Aug 2021 11:22:54 +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 15C1484EBD for ; Mon, 30 Aug 2021 11:22:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 08290FA97; Mon, 30 Aug 2021 11:22:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1630322574190820" MIME-Version: 1.0 Date: Mon, 30 Aug 2021 11:22:54 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/math/isl To: pkgsrc-changes@NetBSD.org Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20210830112254.08290FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1630322574190820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Mon Aug 30 11:22:53 UTC 2021 Modified Files: pkgsrc/math/isl: buildlink3.mk Log Message: math/isl: Add missing GMP dependency to bl3 file At least one of the installed header files includes "gmp.h". To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/isl/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1630322574190820 Content-Disposition: inline Content-Length: 639 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/isl/buildlink3.mk diff -u pkgsrc/math/isl/buildlink3.mk:1.1 pkgsrc/math/isl/buildlink3.mk:1.2 --- pkgsrc/math/isl/buildlink3.mk:1.1 Sun Feb 17 22:10:47 2013 +++ pkgsrc/math/isl/buildlink3.mk Mon Aug 30 11:22:53 2021 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.1 2013/02/17 22:10:47 wiz Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2021/08/30 11:22:53 micha Exp $ BUILDLINK_TREE+= isl @@ -8,6 +8,8 @@ ISL_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.isl+= isl>=0.11.1 BUILDLINK_PKGSRCDIR.isl?= ../../math/isl +.include "../../devel/gmp/buildlink3.mk" + .endif # ISL_BUILDLINK3_MK BUILDLINK_TREE+= -isl --_----------=_1630322574190820--