Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=GUlRpEd6; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=KhL3xiKh Received: by mail.netbsd.org (Postfix, from userid 605) id 8578884F74; Wed, 15 May 2024 08:30:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715761802; bh=beuLOnp5nfVZxp4c/k1d829+SZPStHZ4UpGnZ9lbC4o=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=GUlRpEd6pAflQbH53MQAupLQGdnWEC6W8Z7pQEHCbFXjA0LRazm1/77XCxkOHDj5g hgAVOXmNmNWGk9i4qHv7fPIxZ4qastPrjAy1dN0Xs+UqBiERAJcpq88EmRbTnGCcpZ 0bTm/g3q92F3Ikxz8tl2mbwd8R7SUWdxrc2OGVBI= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 784AF84F52 for ; Wed, 15 May 2024 08:30:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id j7uhtJ4TLAvN for ; Wed, 15 May 2024 08:30:00 +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 9570484D27 for ; Wed, 15 May 2024 08:30:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715761800; bh=beuLOnp5nfVZxp4c/k1d829+SZPStHZ4UpGnZ9lbC4o=; h=Date:From:Subject:To:Reply-To; b=KhL3xiKh7FJZjhj0o3/jXLV+vLsrEaeUttPfHWHoVKRpe9G8FnudX4R4IMKbhwe84 K6zhDN123gyZCncyTpzYp9zR7ANqdi0NHmLRCGq6JnhWgEvsO/Rork9/u9jzuOIbd+ QiXFNia956jKImO7k3PticQejw00agFzi26fFT2c= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 872B2FA2C; Wed, 15 May 2024 08:30:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171576180078890" MIME-Version: 1.0 Date: Wed, 15 May 2024 08:30:00 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/security/gnutls To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20240515083000.872B2FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171576180078890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Wed May 15 08:30:00 UTC 2024 Modified Files: pkgsrc/security/gnutls: buildlink3.mk Log Message: gnutls: pkg-build-options.mk must come before conditional To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 pkgsrc/security/gnutls/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171576180078890 Content-Disposition: inline Content-Length: 1129 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/gnutls/buildlink3.mk diff -u pkgsrc/security/gnutls/buildlink3.mk:1.51 pkgsrc/security/gnutls/buildlink3.mk:1.52 --- pkgsrc/security/gnutls/buildlink3.mk:1.51 Wed May 15 08:13:25 2024 +++ pkgsrc/security/gnutls/buildlink3.mk Wed May 15 08:30:00 2024 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.51 2024/05/15 08:13:25 nia Exp $ +# $NetBSD: buildlink3.mk,v 1.52 2024/05/15 08:30:00 tnn Exp $ BUILDLINK_TREE+= gnutls @@ -14,15 +14,15 @@ BUILDLINK_PKGSRCDIR.gnutls?= ../../secur .include "../../security/libtasn1/buildlink3.mk" BUILDLINK_API_DEPENDS.nettle+= nettle>=3.4.1 .include "../../security/nettle/buildlink3.mk" -.if ${PKG_BUILD_OPTIONS.gnutls:Mpkcs11} -.include "../../security/p11-kit/buildlink3.mk" -.endif .include "../../textproc/libunistring/buildlink3.mk" pkgbase := gnutls .include "../../mk/pkg-build-options.mk" .if ${PKG_BUILD_OPTIONS.gnutls:Mdane} .include "../../net/unbound/buildlink3.mk" .endif +.if ${PKG_BUILD_OPTIONS.gnutls:Mpkcs11} +.include "../../security/p11-kit/buildlink3.mk" +.endif .endif # GNUTLS_BUILDLINK3_MK BUILDLINK_TREE+= -gnutls --_----------=_171576180078890--